2025-07-24T03:50:53.8654720Z Current runner version: '2.326.0' 2025-07-24T03:50:53.8658040Z Runner name: 'i-0b95bf35f8faa9da2' 2025-07-24T03:50:53.8658450Z Runner group name: 'default' 2025-07-24T03:50:53.8658980Z Machine name: 'ip-10-0-1-178' 2025-07-24T03:50:53.8660570Z ##[group]GITHUB_TOKEN Permissions 2025-07-24T03:50:53.8661580Z Contents: read 2025-07-24T03:50:53.8661870Z Metadata: read 2025-07-24T03:50:53.8662160Z ##[endgroup] 2025-07-24T03:50:53.8663230Z Secret source: Actions 2025-07-24T03:50:53.8663580Z Prepare workflow directory 2025-07-24T03:50:55.3800000Z Prepare all required actions 2025-07-24T03:50:55.3826710Z Getting action download info 2025-07-24T03:50:55.6439750Z Download action repository 'pytorch/test-infra@main' (SHA:e32c622fbd62d34f173b9f131f1eca78782b2be2) 2025-07-24T03:50:56.2280980Z Download action repository 'pytorch/pytorch@main' (SHA:07df6ba7f5597488a93b3855d52d2ead55675125) 2025-07-24T03:51:00.6599750Z Download action repository 'nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-07-24T03:51:00.8514340Z Download action repository 'actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02' (SHA:ea165f8d65b6e75b540449e92b4886f43607fa02) 2025-07-24T03:51:01.1320290Z Getting action download info 2025-07-24T03:51:01.2334700Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683) 2025-07-24T03:51:01.4574340Z Uses: pytorch/pytorch/.github/workflows/_mac-build.yml@refs/tags/ciflow/trunk/149961 (27c8ef1839e0747b36769efb192befc9308ff93c) 2025-07-24T03:51:01.4576610Z ##[group] Inputs 2025-07-24T03:51:01.4576970Z build-environment: macos-py3-arm64 2025-07-24T03:51:01.4577210Z runner-type: macos-m1-stable 2025-07-24T03:51:01.4577600Z build-generates-artifacts: true 2025-07-24T03:51:01.4577810Z xcode-version: 2025-07-24T03:51:01.4577990Z sync-tag: macos-py3-arm64-build 2025-07-24T03:51:01.4578200Z python-version: 3.12.7 2025-07-24T03:51:01.4579190Z test-matrix: { include: [ { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-13" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, ]} 2025-07-24T03:51:01.4580130Z sccache-use-gha: false 2025-07-24T03:51:01.4580310Z ##[endgroup] 2025-07-24T03:51:01.4580480Z Complete job name: macos-py3-arm64 / build 2025-07-24T03:51:01.4847300Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-07-24T03:51:01.4847690Z with: 2025-07-24T03:51:01.4847850Z minimum-available-space-in-gb: 6 2025-07-24T03:51:01.4848120Z env: 2025-07-24T03:51:01.4848270Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:01.4848460Z SCCACHE_USE_GHA: false 2025-07-24T03:51:01.4848610Z ##[endgroup] 2025-07-24T03:51:01.4913340Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-07-24T03:51:01.4913760Z echo "Print the available disk space for manual inspection" 2025-07-24T03:51:01.4914040Z df -h 2025-07-24T03:51:01.4914180Z  2025-07-24T03:51:01.4914320Z function check_disk_space() { 2025-07-24T03:51:01.4914510Z  set +e 2025-07-24T03:51:01.4914640Z  2025-07-24T03:51:01.4914810Z  # Set the minimum requirement space to 6GB 2025-07-24T03:51:01.4915150Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-07-24T03:51:01.4915420Z  2025-07-24T03:51:01.4915590Z  # Use KB to avoid floating point warning like 3.1GB 2025-07-24T03:51:01.4915860Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-07-24T03:51:01.4916080Z  do 2025-07-24T03:51:01.4916240Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-07-24T03:51:01.4916500Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-07-24T03:51:01.4917020Z  2025-07-24T03:51:01.4917160Z  if [ "${MOUNT}" = "/" ]; then 2025-07-24T03:51:01.4917410Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-07-24T03:51:01.4917920Z  echo "Failure: There is only ${AVAIL}KB free space left in ${MOUNT}, which is less than the minimum requirement of ${MINIMUM_AVAILABLE_SPACE_IN_KB}KB for ${RUNNER_OS}" 2025-07-24T03:51:01.4918350Z  else 2025-07-24T03:51:01.4918620Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-07-24T03:51:01.4918910Z  fi 2025-07-24T03:51:01.4919040Z  fi 2025-07-24T03:51:01.4919170Z  done 2025-07-24T03:51:01.4919300Z  2025-07-24T03:51:01.4919420Z  set -e 2025-07-24T03:51:01.4919560Z } 2025-07-24T03:51:01.4919680Z  2025-07-24T03:51:01.4919820Z RESULT=$(check_disk_space) 2025-07-24T03:51:01.4920000Z echo "${RESULT}" 2025-07-24T03:51:01.4920150Z  2025-07-24T03:51:01.4920340Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-07-24T03:51:01.4920830Z  # We can clean up /System/Library/Caches/com.apple.coresymbolicationd on MacOS to free up the space and this should free up enough space 2025-07-24T03:51:01.4921300Z  # https://github.com/pytorch/pytorch/issues/85440 2025-07-24T03:51:01.4921630Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-07-24T03:51:01.4922110Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-07-24T03:51:01.4922550Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-07-24T03:51:01.4922780Z  2025-07-24T03:51:01.4922940Z  # Clean up crash reports on the runner 2025-07-24T03:51:01.4923230Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-07-24T03:51:01.4923490Z  2025-07-24T03:51:01.4923660Z  # Also try to clean up torch.hub caching directory 2025-07-24T03:51:01.4923920Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-07-24T03:51:01.4924110Z  2025-07-24T03:51:01.4924240Z  # Purge conda 2025-07-24T03:51:01.4924400Z  conda clean -p -t -y || true 2025-07-24T03:51:01.4924600Z  # and pip cache 2025-07-24T03:51:01.4924940Z  pip cache purge || true 2025-07-24T03:51:01.4925120Z  2025-07-24T03:51:01.4925330Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-07-24T03:51:01.4925580Z  # Re-run the check 2025-07-24T03:51:01.4925760Z  RESULT=$(check_disk_space) 2025-07-24T03:51:01.4925940Z  echo "${RESULT}" 2025-07-24T03:51:01.4926100Z fi 2025-07-24T03:51:01.4926220Z  2025-07-24T03:51:01.4926370Z if [[ "${RESULT}" == *Failure* ]]; then 2025-07-24T03:51:01.4926560Z  df -h 2025-07-24T03:51:01.4926690Z  2025-07-24T03:51:01.4927100Z  echo "Please help create an issue to PyTorch Release Engineering via https://github.com/pytorch/test-infra/issues and provide the link to the workflow run." 2025-07-24T03:51:01.4927550Z  exit 1 2025-07-24T03:51:01.4927680Z fi 2025-07-24T03:51:01.4944660Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:01.4944870Z env: 2025-07-24T03:51:01.4945020Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:01.4945210Z SCCACHE_USE_GHA: false 2025-07-24T03:51:01.4945380Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-07-24T03:51:01.4945550Z ##[endgroup] 2025-07-24T03:51:01.5230870Z Print the available disk space for manual inspection 2025-07-24T03:51:01.5234980Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-07-24T03:51:01.5235390Z /dev/disk5s2s1 256Gi 9.5Gi 174Gi 6% 404k 1.8G 0% / 2025-07-24T03:51:01.5236110Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-07-24T03:51:01.5236540Z /dev/disk5s5 256Gi 1.0Gi 174Gi 1% 1 1.8G 0% /System/Volumes/VM 2025-07-24T03:51:01.5236930Z /dev/disk5s3 256Gi 5.7Gi 174Gi 4% 1.0k 1.8G 0% /System/Volumes/Preboot 2025-07-24T03:51:01.5237350Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-07-24T03:51:01.5237800Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-07-24T03:51:01.5238210Z /dev/disk1s3 500Mi 872Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-07-24T03:51:01.5238620Z /dev/disk5s1 256Gi 64Gi 174Gi 27% 2.7M 1.8G 0% /System/Volumes/Data 2025-07-24T03:51:01.5239010Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-07-24T03:51:01.5239510Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-dYoGYX 2025-07-24T03:51:01.5622160Z Success: There is 182790140KB free space left in / for macOS, continue 2025-07-24T03:51:01.5721370Z ##[group]Run pytorch/pytorch/.github/actions/checkout-pytorch@main 2025-07-24T03:51:01.5721680Z with: 2025-07-24T03:51:01.5721820Z submodules: recursive 2025-07-24T03:51:01.5721990Z fetch-depth: 0 2025-07-24T03:51:01.5722170Z env: 2025-07-24T03:51:01.5722330Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:01.5722530Z SCCACHE_USE_GHA: false 2025-07-24T03:51:01.5722690Z ##[endgroup] 2025-07-24T03:51:01.5735950Z ##[group]Run echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-24T03:51:01.5736540Z echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT" 2025-07-24T03:51:01.5751460Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:01.5751710Z env: 2025-07-24T03:51:01.5751860Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:01.5752080Z SCCACHE_USE_GHA: false 2025-07-24T03:51:01.5752260Z ##[endgroup] 2025-07-24T03:51:01.6056620Z ##[group]Run # Use all available CPUs for fetching 2025-07-24T03:51:01.6056930Z # Use all available CPUs for fetching 2025-07-24T03:51:01.6057140Z cd "${GITHUB_WORKSPACE}" 2025-07-24T03:51:01.6057350Z git config --global fetch.parallel 0 2025-07-24T03:51:01.6057630Z git config --global submodule.fetchJobs 0 2025-07-24T03:51:01.6057840Z  2025-07-24T03:51:01.6058070Z # Clean workspace. The default checkout action should also do this, but 2025-07-24T03:51:01.6058360Z # do it here as well just in case 2025-07-24T03:51:01.6058590Z if [[ -d .git ]]; then 2025-07-24T03:51:01.6058780Z  if [ -z "${NO_SUDO}" ]; then 2025-07-24T03:51:01.6059000Z  sudo git clean -ffdx 2025-07-24T03:51:01.6059200Z  else 2025-07-24T03:51:01.6059340Z  git clean -ffdx 2025-07-24T03:51:01.6059500Z  fi 2025-07-24T03:51:01.6059720Z fi 2025-07-24T03:51:01.6074480Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:01.6074710Z env: 2025-07-24T03:51:01.6074850Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:01.6075040Z SCCACHE_USE_GHA: false 2025-07-24T03:51:01.6075190Z NO_SUDO: 2025-07-24T03:51:01.6075330Z ##[endgroup] 2025-07-24T03:51:02.9421280Z Removing .additional_ci_files/ 2025-07-24T03:51:02.9421930Z Removing .pytest_cache/ 2025-07-24T03:51:02.9422150Z Removing build/ 2025-07-24T03:51:02.9422330Z Removing dist/ 2025-07-24T03:51:02.9422580Z Removing test/.pytorch-disabled-tests.json 2025-07-24T03:51:02.9422800Z Removing test/__pycache__/ 2025-07-24T03:51:02.9423010Z Removing test/ao/sparsity/__pycache__/ 2025-07-24T03:51:02.9423290Z Removing test/cpp_extensions/libtorch_agnostic_extension/build/ 2025-07-24T03:51:02.9424020Z Removing test/cpp_extensions/libtorch_agnostic_extension/install/ 2025-07-24T03:51:02.9424430Z Removing test/cpp_extensions/libtorch_agnostic_extension/libtorch_agnostic.egg-info/ 2025-07-24T03:51:02.9424810Z Removing test/dynamo/__pycache__/ 2025-07-24T03:51:02.9425010Z Removing test/export/__pycache__/ 2025-07-24T03:51:02.9425210Z Removing test/functorch/__pycache__/ 2025-07-24T03:51:02.9425440Z Removing test/inductor/__pycache__/ 2025-07-24T03:51:02.9425680Z Removing test/optim/__pycache__/ 2025-07-24T03:51:02.9425950Z Removing test/package/__pycache__/ 2025-07-24T03:51:02.9426180Z Removing test/package/package_a/__pycache__/ 2025-07-24T03:51:02.9426440Z Removing test/package/package_b/__pycache__/ 2025-07-24T03:51:02.9426710Z Removing test/package/package_b/subpackage_0/__pycache__/ 2025-07-24T03:51:02.9427090Z Removing test/package/package_b/subpackage_0/subsubpackage_0/__pycache__/ 2025-07-24T03:51:02.9427400Z Removing test/package/package_d/__pycache__/ 2025-07-24T03:51:02.9427670Z Removing test/package/package_d/subpackage_0/__pycache__/ 2025-07-24T03:51:02.9428040Z Removing test/package/package_d/subpackage_0/subsubpackage_0/__pycache__/ 2025-07-24T03:51:02.9428650Z Removing test/package/test_trace_dep/__pycache__/ 2025-07-24T03:51:02.9428900Z Removing test/test-reports/ 2025-07-24T03:51:02.9429090Z Removing test/torch_compile_debug/ 2025-07-24T03:51:02.9429320Z Removing test/torch_np/__pycache__/ 2025-07-24T03:51:02.9429540Z Removing tools/__pycache__/ 2025-07-24T03:51:02.9429730Z Removing tools/stats/__pycache__/ 2025-07-24T03:51:02.9430040Z Removing tools/stats/upload_utilization_stats/__pycache__/ 2025-07-24T03:51:02.9430340Z Removing tools/testing/__pycache__/ 2025-07-24T03:51:02.9430590Z Removing tools/testing/target_determination/__pycache__/ 2025-07-24T03:51:02.9431030Z Removing tools/testing/target_determination/heuristics/__pycache__/ 2025-07-24T03:51:02.9487940Z ##[group]Run actions/checkout@v4 2025-07-24T03:51:02.9488140Z with: 2025-07-24T03:51:02.9488290Z ref: 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:51:02.9488500Z fetch-depth: 0 2025-07-24T03:51:02.9488630Z submodules: recursive 2025-07-24T03:51:02.9488790Z show-progress: false 2025-07-24T03:51:02.9488950Z repository: pytorch/pytorch 2025-07-24T03:51:02.9489180Z token: *** 2025-07-24T03:51:02.9489320Z ssh-strict: true 2025-07-24T03:51:02.9489460Z ssh-user: git 2025-07-24T03:51:02.9489600Z persist-credentials: true 2025-07-24T03:51:02.9489760Z clean: true 2025-07-24T03:51:02.9489910Z sparse-checkout-cone-mode: true 2025-07-24T03:51:02.9490080Z fetch-tags: false 2025-07-24T03:51:02.9490220Z lfs: false 2025-07-24T03:51:02.9490370Z set-safe-directory: true 2025-07-24T03:51:02.9490520Z env: 2025-07-24T03:51:02.9490650Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:02.9490830Z SCCACHE_USE_GHA: false 2025-07-24T03:51:02.9490990Z ##[endgroup] 2025-07-24T03:51:03.0400630Z Syncing repository: pytorch/pytorch 2025-07-24T03:51:03.0401670Z ##[group]Getting Git version info 2025-07-24T03:51:03.0402020Z Working directory is '/Users/ec2-user/runner/_work/pytorch/pytorch' 2025-07-24T03:51:03.0402410Z [command]/usr/bin/git version 2025-07-24T03:51:03.0438170Z git version 2.39.3 (Apple Git-146) 2025-07-24T03:51:03.0493170Z ##[endgroup] 2025-07-24T03:51:03.0497120Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/0aab1b26-6edd-49d3-a181-c99a6be53b2e/.gitconfig' 2025-07-24T03:51:03.0497820Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/0aab1b26-6edd-49d3-a181-c99a6be53b2e' before making global git config changes 2025-07-24T03:51:03.0498400Z Adding repository directory to the temporary git global config as a safe directory 2025-07-24T03:51:03.0498910Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-07-24T03:51:03.0549680Z [command]/usr/bin/git config --local --get remote.origin.url 2025-07-24T03:51:03.0602260Z https://github.com/pytorch/pytorch 2025-07-24T03:51:03.0611120Z ##[group]Removing previously created refs, to avoid conflicts 2025-07-24T03:51:03.0613220Z [command]/usr/bin/git rev-parse --symbolic-full-name --verify --quiet HEAD 2025-07-24T03:51:03.0668380Z HEAD 2025-07-24T03:51:03.0758280Z ##[endgroup] 2025-07-24T03:51:03.0760090Z [command]/usr/bin/git submodule status 2025-07-24T03:51:03.1442620Z 7e1e1fe3858c63c251c637ae41a20de425dde96f android/libs/fbjni (v0.1.0-12-g7e1e1fe) 2025-07-24T03:51:03.1689720Z 4dfe081cf6bcd15db339cf2680b9281b8451eeb3 third_party/FP16 (4dfe081) 2025-07-24T03:51:03.1892370Z b408327ac2a15ec3e43352421954f5b1967701d1 third_party/FXdiv (b408327) 2025-07-24T03:51:03.2155690Z c07e3a0400713d546e0dea2d5466dd22ea389c73 third_party/NNPACK (c07e3a0) 2025-07-24T03:51:03.2495460Z 2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07 third_party/NVTX (v3.1.0-263-g2942f16) 2025-07-24T03:51:03.2873530Z 1d8f600fd424278486eade7ed3e877c99f0846b1 third_party/VulkanMemoryAllocator (v2.1.0-982-g1d8f600) 2025-07-24T03:51:03.4965040Z 51a0103656eff6fc9bfd39a4597923c4b542c883 third_party/XNNPACK (remotes/origin/ds/ndk-1243-g51a0103656) 2025-07-24T03:51:03.5293210Z 01aae101b9e5e94d6c16a9514c9fb8df99c93150 third_party/aiter (v0.1.1-92-g01aae101) 2025-07-24T03:51:03.5445690Z 299e5928955cc62af9968370293b916f5130916f third_party/benchmark (v1.9.3) 2025-07-24T03:51:03.6072560Z df6023e305f389bbf7249b0c4414e649f3ad6598 third_party/composable_kernel (rocm-6.4.2-337-gdf6023e30) 2025-07-24T03:51:03.6480610Z 3af7f2c16147f3fbc6e4d717032daf505dc1652c third_party/cpp-httplib (v0.20.1) 2025-07-24T03:51:03.6926310Z 5e3d2445e6a84d9599bee2bf78edbb4d80865e1d third_party/cpuinfo (5e3d244) 2025-07-24T03:51:03.7218760Z f937055efc6d414d11f4c6577e3977fe74f35fb6 third_party/cudnn_frontend (v0.5-52-gf937055) 2025-07-24T03:51:03.7640050Z b995f933179c22d3fe0d871c3a53d11e4681950f third_party/cutlass (v4.0.0) 2025-07-24T03:51:03.8270830Z 157e88b750c452bef2ab4653fe9d1eeb151ce4c3 third_party/fbgemm (v1.2.0-186-g157e88b7) 2025-07-24T03:51:03.8495660Z 979702c87a8713a8e0a5e9fee122b90d2ef13be5 third_party/flash-attention (v2.7.4) 2025-07-24T03:51:03.8588970Z a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757 third_party/flatbuffers (v24.12.23) 2025-07-24T03:51:03.9682190Z 40626af88bd7df9a5fb80be7b25ac85b122d6c21 third_party/fmt (11.2.0) 2025-07-24T03:51:04.0016010Z 3fb5c176c17c765a3492cd2f0321b0dab712f350 third_party/gemmlowp/gemmlowp (remotes/origin/revert-87-master-135-g3fb5c17) 2025-07-24T03:51:04.0369140Z c7b7b022c124d9643957d9bd55f57ac59fce8fa2 third_party/gloo (remotes/origin/gh/c-p-i-o/1/base-33-gc7b7b02) 2025-07-24T03:51:04.1005640Z 52eb8108c5bdec04579160ae17225d66034bd723 third_party/googletest (release-1.8.0-3544-g52eb8108) 2025-07-24T03:51:04.1312100Z 719d8e6cd7f7a0e01b155657526d693acf97c2b3 third_party/ideep (pytorch-rls-v3.7.1) 2025-07-24T03:51:04.1534140Z dec1d23ca65ab069d225dfe40dea14f455170959 third_party/ittapi (v3.25.5) 2025-07-24T03:51:04.1977960Z 5e7501833f1021ce6f618572d3baf657b6319658 third_party/kineto (remotes/origin/sraikund/test-98-g5e75018) 2025-07-24T03:51:04.2116760Z cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7 third_party/kleidiai (v1.8.0) 2025-07-24T03:51:04.2191370Z fbd8b99c2b828428947d70fdc046bb55609be93e third_party/mimalloc (v2.2.4) 2025-07-24T03:51:04.2281240Z 55f93686c01528224f448c19128836e7df245f72 third_party/nlohmann (v3.12.0) 2025-07-24T03:51:04.3262870Z e709452ef2bbc1d113faf678c24e6d3467696e83 third_party/onnx (v1.18.0) 2025-07-24T03:51:04.3349260Z a799f4aed9c94b765dcdaabaeab7d5e7e2310878 third_party/opentelemetry-cpp (v1.14.2) 2025-07-24T03:51:04.3430360Z 0fa0ef591e38c2758e3184c6c23e497b9f732ffa third_party/pocketfft (release_for_eigen-40-g0fa0ef5) 2025-07-24T03:51:04.5747310Z d1eca4e4b421cd2997495c4b4e65cea6be4e9b8a third_party/protobuf (v3.7.0-rc.2-1279-gd1eca4e4b) 2025-07-24T03:51:04.5933800Z 072586a71b55b7f8c584153d223e95687148a900 third_party/psimd (heads/master) 2025-07-24T03:51:04.6105010Z 4fe0e1e183925bf8cfa6aae24237e724a96479b8 third_party/pthreadpool (0.1-144-g4fe0e1e) 2025-07-24T03:51:04.6602670Z a2e59f0e7065404b44dfe92a28aca47ba1378dc4 third_party/pybind11 (v2.11.0-182-ga2e59f0e) 2025-07-24T03:51:04.6825150Z f45429b087dd7d5bc78bb40dc7cf06425c252d67 third_party/python-peachpy (remotes/origin/pre-generated) 2025-07-24T03:51:04.7234500Z 5a1d179df9cf652951b59010a2d2075372d67f68 third_party/sleef (3.8) 2025-07-24T03:51:04.7528200Z 52791a2fd214b2a9dc5759d36725909c1daa7f2e third_party/tensorpipe (remotes/origin/master) 2025-07-24T03:51:04.7536520Z ##[group]Cleaning the repository 2025-07-24T03:51:04.7538870Z [command]/usr/bin/git clean -ffdx 2025-07-24T03:51:04.7914710Z [command]/usr/bin/git reset --hard HEAD 2025-07-24T03:51:05.7308540Z HEAD is now at 41cd0d034bc update triton commit hash 2025-07-24T03:51:05.7316720Z ##[endgroup] 2025-07-24T03:51:05.7317990Z ##[group]Disabling automatic garbage collection 2025-07-24T03:51:05.7322790Z [command]/usr/bin/git config --local gc.auto 0 2025-07-24T03:51:05.7390920Z ##[endgroup] 2025-07-24T03:51:05.7391230Z ##[group]Setting up auth 2025-07-24T03:51:05.7394620Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-07-24T03:51:05.7459640Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-07-24T03:51:05.7953850Z Entering 'android/libs/fbjni' 2025-07-24T03:51:05.8055880Z Entering 'third_party/FP16' 2025-07-24T03:51:05.8155510Z Entering 'third_party/FXdiv' 2025-07-24T03:51:05.8252720Z Entering 'third_party/NNPACK' 2025-07-24T03:51:05.8352100Z Entering 'third_party/NVTX' 2025-07-24T03:51:05.8452920Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:05.8554140Z Entering 'third_party/XNNPACK' 2025-07-24T03:51:05.8658090Z Entering 'third_party/aiter' 2025-07-24T03:51:05.8757990Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:05.8863920Z Entering 'third_party/benchmark' 2025-07-24T03:51:05.8966040Z Entering 'third_party/composable_kernel' 2025-07-24T03:51:05.9067650Z Entering 'third_party/cpp-httplib' 2025-07-24T03:51:05.9168450Z Entering 'third_party/cpuinfo' 2025-07-24T03:51:05.9268900Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:51:05.9367230Z Entering 'third_party/cutlass' 2025-07-24T03:51:05.9469620Z Entering 'third_party/fbgemm' 2025-07-24T03:51:05.9568680Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:05.9667240Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:05.9768610Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:05.9867490Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:05.9969800Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:06.0069640Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:06.0169790Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:51:06.0271460Z Entering 'third_party/flash-attention' 2025-07-24T03:51:06.0371620Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:06.0472010Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:06.0577550Z Entering 'third_party/flatbuffers' 2025-07-24T03:51:06.0679560Z Entering 'third_party/fmt' 2025-07-24T03:51:06.0781100Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:06.0881320Z Entering 'third_party/gloo' 2025-07-24T03:51:06.0981030Z Entering 'third_party/googletest' 2025-07-24T03:51:06.1081190Z Entering 'third_party/ideep' 2025-07-24T03:51:06.1178490Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:06.1281760Z Entering 'third_party/ittapi' 2025-07-24T03:51:06.1388730Z Entering 'third_party/kineto' 2025-07-24T03:51:06.1489710Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:06.1587480Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:06.1689250Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:06.1790030Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:06.1889750Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:06.1988790Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:06.2091310Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:06.2191970Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:06.2291590Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:06.2392000Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:06.2492810Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:06.2593040Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:06.2695610Z Entering 'third_party/kleidiai' 2025-07-24T03:51:06.2796780Z Entering 'third_party/mimalloc' 2025-07-24T03:51:06.2896190Z Entering 'third_party/nlohmann' 2025-07-24T03:51:06.2996380Z Entering 'third_party/onnx' 2025-07-24T03:51:06.3102890Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:06.3206720Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:51:06.3306050Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:06.3406040Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:06.3505250Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:06.3605050Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:06.3704490Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:06.3804120Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:06.3907280Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:06.4005820Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:06.4106180Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:06.4208810Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:06.4317080Z Entering 'third_party/pocketfft' 2025-07-24T03:51:06.4418470Z Entering 'third_party/protobuf' 2025-07-24T03:51:06.4517500Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:06.4615900Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:06.4717180Z Entering 'third_party/psimd' 2025-07-24T03:51:06.4815960Z Entering 'third_party/pthreadpool' 2025-07-24T03:51:06.4915760Z Entering 'third_party/pybind11' 2025-07-24T03:51:06.5017130Z Entering 'third_party/python-peachpy' 2025-07-24T03:51:06.5116600Z Entering 'third_party/sleef' 2025-07-24T03:51:06.5216640Z Entering 'third_party/tensorpipe' 2025-07-24T03:51:06.5314670Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:06.5414850Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:06.5515790Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:06.5615670Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:06.5715870Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:06.5829730Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-24T03:51:06.5894220Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-07-24T03:51:06.6390640Z Entering 'android/libs/fbjni' 2025-07-24T03:51:06.6495940Z Entering 'third_party/FP16' 2025-07-24T03:51:06.6595720Z Entering 'third_party/FXdiv' 2025-07-24T03:51:06.6695090Z Entering 'third_party/NNPACK' 2025-07-24T03:51:06.6795200Z Entering 'third_party/NVTX' 2025-07-24T03:51:06.6895880Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:06.6996520Z Entering 'third_party/XNNPACK' 2025-07-24T03:51:06.7102140Z Entering 'third_party/aiter' 2025-07-24T03:51:06.7202200Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:06.7305830Z Entering 'third_party/benchmark' 2025-07-24T03:51:06.7407660Z Entering 'third_party/composable_kernel' 2025-07-24T03:51:06.7510490Z Entering 'third_party/cpp-httplib' 2025-07-24T03:51:06.7611050Z Entering 'third_party/cpuinfo' 2025-07-24T03:51:06.7710500Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:51:06.7809780Z Entering 'third_party/cutlass' 2025-07-24T03:51:06.7918440Z Entering 'third_party/fbgemm' 2025-07-24T03:51:06.8018990Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:06.8118860Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:06.8219530Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:06.8319870Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:06.8422220Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:06.8521910Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:06.8622710Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:51:06.8724890Z Entering 'third_party/flash-attention' 2025-07-24T03:51:06.8824440Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:06.8927310Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:06.9033010Z Entering 'third_party/flatbuffers' 2025-07-24T03:51:06.9135820Z Entering 'third_party/fmt' 2025-07-24T03:51:06.9235510Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:06.9334910Z Entering 'third_party/gloo' 2025-07-24T03:51:06.9434730Z Entering 'third_party/googletest' 2025-07-24T03:51:06.9534750Z Entering 'third_party/ideep' 2025-07-24T03:51:06.9632500Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:06.9735490Z Entering 'third_party/ittapi' 2025-07-24T03:51:06.9835080Z Entering 'third_party/kineto' 2025-07-24T03:51:06.9932820Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:07.0030960Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:07.0131390Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:07.0231410Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:07.0331360Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:07.0429700Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:07.0529730Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:07.0627690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:07.0723930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:07.0820000Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:07.0916300Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:07.1010140Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:07.1105310Z Entering 'third_party/kleidiai' 2025-07-24T03:51:07.1202730Z Entering 'third_party/mimalloc' 2025-07-24T03:51:07.1300580Z Entering 'third_party/nlohmann' 2025-07-24T03:51:07.1400740Z Entering 'third_party/onnx' 2025-07-24T03:51:07.1508650Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:07.1618950Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:51:07.1728070Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:07.1842320Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:07.1947850Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:07.2051860Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:07.2153000Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:07.2251320Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:07.2347600Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:07.2443650Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:07.2545590Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:07.2648830Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:07.2759040Z Entering 'third_party/pocketfft' 2025-07-24T03:51:07.2858790Z Entering 'third_party/protobuf' 2025-07-24T03:51:07.2957420Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:07.3054940Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:07.3153580Z Entering 'third_party/psimd' 2025-07-24T03:51:07.3255560Z Entering 'third_party/pthreadpool' 2025-07-24T03:51:07.3357220Z Entering 'third_party/pybind11' 2025-07-24T03:51:07.3457870Z Entering 'third_party/python-peachpy' 2025-07-24T03:51:07.3556870Z Entering 'third_party/sleef' 2025-07-24T03:51:07.3658410Z Entering 'third_party/tensorpipe' 2025-07-24T03:51:07.3757720Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:07.3858130Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:07.3962300Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:07.4077390Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:07.4185000Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:07.4304370Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-07-24T03:51:07.4390570Z ##[endgroup] 2025-07-24T03:51:07.4391010Z ##[group]Fetching the repository 2025-07-24T03:51:07.4395470Z [command]/usr/bin/git -c protocol.version=2 fetch --prune --no-recurse-submodules origin +refs/heads/*:refs/remotes/origin/* +refs/tags/*:refs/tags/* 2025-07-24T03:51:13.2514770Z From https://github.com/pytorch/pytorch 2025-07-24T03:51:13.2515180Z - [deleted] (none) -> ciflow/inductor/158859 2025-07-24T03:51:13.3809080Z - [deleted] (none) -> ciflow/trunk/156559 2025-07-24T03:51:13.3809440Z - [deleted] (none) -> ciflow/trunk/158964 2025-07-24T03:51:14.7776030Z a63f2722f9b..9c33dc30f9c addbuildvllm -> origin/addbuildvllm 2025-07-24T03:51:14.7799800Z * [new branch] gh/Sidharth123-cpu/44/base -> origin/gh/Sidharth123-cpu/44/base 2025-07-24T03:51:14.7801560Z * [new branch] gh/Sidharth123-cpu/44/head -> origin/gh/Sidharth123-cpu/44/head 2025-07-24T03:51:14.7804040Z * [new branch] gh/Sidharth123-cpu/44/orig -> origin/gh/Sidharth123-cpu/44/orig 2025-07-24T03:51:14.7806730Z * [new branch] gh/Sidharth123-cpu/45/base -> origin/gh/Sidharth123-cpu/45/base 2025-07-24T03:51:14.7808490Z * [new branch] gh/Sidharth123-cpu/45/head -> origin/gh/Sidharth123-cpu/45/head 2025-07-24T03:51:14.7810540Z * [new branch] gh/Sidharth123-cpu/45/orig -> origin/gh/Sidharth123-cpu/45/orig 2025-07-24T03:51:14.7842730Z f4af658fa20..dad92517389 gh/benjaminglass1/79/base -> origin/gh/benjaminglass1/79/base 2025-07-24T03:51:14.7851220Z 52da9230dfb..27c8ef1839e gh/benjaminglass1/79/head -> origin/gh/benjaminglass1/79/head 2025-07-24T03:51:14.7859100Z + 46c75b7f6b7...c1380dc4c14 gh/benjaminglass1/79/orig -> origin/gh/benjaminglass1/79/orig (forced update) 2025-07-24T03:51:14.7919470Z + b1bf4598b20...8c532d7320f gh/fffrog/120/orig -> origin/gh/fffrog/120/orig (forced update) 2025-07-24T03:51:14.7934330Z 0b6c4d78244..662f4b47362 gh/fffrog/121/head -> origin/gh/fffrog/121/head 2025-07-24T03:51:14.7942620Z + c3cd9cf9273...25f61c107b3 gh/fffrog/121/orig -> origin/gh/fffrog/121/orig (forced update) 2025-07-24T03:51:14.7950710Z 2cf131a53f9..e9b67f5334a gh/fffrog/122/base -> origin/gh/fffrog/122/base 2025-07-24T03:51:14.7959050Z 1de5a4948da..c86ecb1fa2f gh/fffrog/122/head -> origin/gh/fffrog/122/head 2025-07-24T03:51:14.7967280Z + fb9bc1325a6...6a3bc42980f gh/fffrog/122/orig -> origin/gh/fffrog/122/orig (forced update) 2025-07-24T03:51:14.7995040Z b8ddaaef998..d5ef89c7eb2 gh/fffrog/125/head -> origin/gh/fffrog/125/head 2025-07-24T03:51:14.7995750Z + 3ea69d0f38f...779b0782f83 gh/fffrog/125/orig -> origin/gh/fffrog/125/orig (forced update) 2025-07-24T03:51:14.8004730Z f662a59a445..9e70a40efb2 gh/fffrog/126/base -> origin/gh/fffrog/126/base 2025-07-24T03:51:14.8012530Z eafd3f1210c..75013109407 gh/fffrog/126/head -> origin/gh/fffrog/126/head 2025-07-24T03:51:14.8020770Z + 938828806c6...06d26cab5be gh/fffrog/126/orig -> origin/gh/fffrog/126/orig (forced update) 2025-07-24T03:51:14.8052990Z e724694cd0e..00658dfeb69 gh/jamesjwu/177/base -> origin/gh/jamesjwu/177/base 2025-07-24T03:51:14.8061130Z d5cf21d4fc4..1792d812af3 gh/jamesjwu/177/head -> origin/gh/jamesjwu/177/head 2025-07-24T03:51:14.8068470Z + d8ba665a47f...fc4dd1053d6 gh/jamesjwu/177/orig -> origin/gh/jamesjwu/177/orig (forced update) 2025-07-24T03:51:14.8100970Z c447bac5ce3..565608a7081 gh/kwen2501/197/base -> origin/gh/kwen2501/197/base 2025-07-24T03:51:14.8109370Z 87a5be4ecaf..376c425c279 gh/kwen2501/197/head -> origin/gh/kwen2501/197/head 2025-07-24T03:51:14.8117830Z + bce8057c719...fa047de8a2d gh/kwen2501/197/orig -> origin/gh/kwen2501/197/orig (forced update) 2025-07-24T03:51:14.8143510Z a7f1bd9d2d6..2ebca39fb71 gh/ydwu4/253/base -> origin/gh/ydwu4/253/base 2025-07-24T03:51:14.8152340Z b03cc11da49..21e6c2dfd3a gh/ydwu4/253/head -> origin/gh/ydwu4/253/head 2025-07-24T03:51:14.8166540Z + b4d70165556...4804f1cf6bb gh/ydwu4/253/orig -> origin/gh/ydwu4/253/orig (forced update) 2025-07-24T03:51:14.8176240Z bf500d541ac..a39205550c3 gh/ydwu4/289/base -> origin/gh/ydwu4/289/base 2025-07-24T03:51:14.8184410Z 7909e0b629a..123bbb64ae2 gh/ydwu4/289/head -> origin/gh/ydwu4/289/head 2025-07-24T03:51:14.8192260Z + 5d36abaefa1...bf9027566e9 gh/ydwu4/289/orig -> origin/gh/ydwu4/289/orig (forced update) 2025-07-24T03:51:14.8200460Z f1e747d4c93..da7f76adc5d gh/ydwu4/290/base -> origin/gh/ydwu4/290/base 2025-07-24T03:51:14.8209180Z c1c92882611..f882aaa76b6 gh/ydwu4/290/head -> origin/gh/ydwu4/290/head 2025-07-24T03:51:14.8217440Z + c0184825d59...2f2e93df74a gh/ydwu4/290/orig -> origin/gh/ydwu4/290/orig (forced update) 2025-07-24T03:51:14.8225470Z 0b73d3453a3..998ec733b6e gh/ydwu4/291/base -> origin/gh/ydwu4/291/base 2025-07-24T03:51:14.8234050Z c6263dc0552..2a4c59db3d0 gh/ydwu4/291/head -> origin/gh/ydwu4/291/head 2025-07-24T03:51:14.8241550Z + 1f11b5f1050...f2c3bbfa5c7 gh/ydwu4/291/orig -> origin/gh/ydwu4/291/orig (forced update) 2025-07-24T03:51:14.8249800Z 8d6240e7388..0f3f25f3d4d gh/ydwu4/292/base -> origin/gh/ydwu4/292/base 2025-07-24T03:51:14.8257920Z aa3267f18ca..fc737b49cb7 gh/ydwu4/292/head -> origin/gh/ydwu4/292/head 2025-07-24T03:51:14.8265780Z + c588754a36b...d503a839b13 gh/ydwu4/292/orig -> origin/gh/ydwu4/292/orig (forced update) 2025-07-24T03:51:14.8273770Z b03cc11da49..6b3c253c8b9 gh/ydwu4/293/base -> origin/gh/ydwu4/293/base 2025-07-24T03:51:14.8282660Z 1c4575a224f..bc7315e30ff gh/ydwu4/293/head -> origin/gh/ydwu4/293/head 2025-07-24T03:51:14.8290780Z + e1a9ee9a21e...46218690756 gh/ydwu4/293/orig -> origin/gh/ydwu4/293/orig (forced update) 2025-07-24T03:51:14.8293400Z * [new branch] gh/ydwu4/295/base -> origin/gh/ydwu4/295/base 2025-07-24T03:51:14.8295260Z * [new branch] gh/ydwu4/295/head -> origin/gh/ydwu4/295/head 2025-07-24T03:51:14.8296790Z * [new branch] gh/ydwu4/295/orig -> origin/gh/ydwu4/295/orig 2025-07-24T03:51:14.8299690Z * [new branch] gh/ydwu4/296/base -> origin/gh/ydwu4/296/base 2025-07-24T03:51:14.8301370Z * [new branch] gh/ydwu4/296/head -> origin/gh/ydwu4/296/head 2025-07-24T03:51:14.8302970Z * [new branch] gh/ydwu4/296/orig -> origin/gh/ydwu4/296/orig 2025-07-24T03:51:14.8320920Z 0c0fcb53ff5..07df6ba7f55 main -> origin/main 2025-07-24T03:51:14.8327950Z t [tag update] ciflow/inductor/149961 -> ciflow/inductor/149961 2025-07-24T03:51:14.8329490Z t [tag update] ciflow/inductor/154193 -> ciflow/inductor/154193 2025-07-24T03:51:14.8332210Z t [tag update] ciflow/inductor/158797 -> ciflow/inductor/158797 2025-07-24T03:51:14.8333690Z t [tag update] ciflow/inductor/158839 -> ciflow/inductor/158839 2025-07-24T03:51:14.8335880Z t [tag update] ciflow/inductor/158847 -> ciflow/inductor/158847 2025-07-24T03:51:14.8403150Z t [tag update] ciflow/inductor/158929 -> ciflow/inductor/158929 2025-07-24T03:51:14.8404320Z * [new tag] ciflow/inductor/159009 -> ciflow/inductor/159009 2025-07-24T03:51:14.8405680Z * [new tag] ciflow/inductor/159010 -> ciflow/inductor/159010 2025-07-24T03:51:14.8406940Z * [new tag] ciflow/inductor/159011 -> ciflow/inductor/159011 2025-07-24T03:51:14.8409290Z t [tag update] ciflow/rocm-mi300/158847 -> ciflow/rocm-mi300/158847 2025-07-24T03:51:14.8411940Z t [tag update] ciflow/trunk/149961 -> ciflow/trunk/149961 2025-07-24T03:51:14.8413180Z t [tag update] ciflow/trunk/154193 -> ciflow/trunk/154193 2025-07-24T03:51:14.8414670Z * [new tag] ciflow/trunk/157892 -> ciflow/trunk/157892 2025-07-24T03:51:14.8416600Z t [tag update] ciflow/trunk/158441 -> ciflow/trunk/158441 2025-07-24T03:51:14.8420310Z t [tag update] ciflow/trunk/158670 -> ciflow/trunk/158670 2025-07-24T03:51:14.8421830Z t [tag update] ciflow/trunk/158847 -> ciflow/trunk/158847 2025-07-24T03:51:14.8424060Z t [tag update] ciflow/trunk/158929 -> ciflow/trunk/158929 2025-07-24T03:51:14.8425750Z t [tag update] ciflow/trunk/158938 -> ciflow/trunk/158938 2025-07-24T03:51:14.8427000Z * [new tag] ciflow/trunk/159002 -> ciflow/trunk/159002 2025-07-24T03:51:14.8429730Z t [tag update] ciflow/xpu/158337 -> ciflow/xpu/158337 2025-07-24T03:51:14.8437820Z t [tag update] ciflow/xpu/158533 -> ciflow/xpu/158533 2025-07-24T03:51:14.8440230Z * [new tag] trunk/07df6ba7f5597488a93b3855d52d2ead55675125 -> trunk/07df6ba7f5597488a93b3855d52d2ead55675125 2025-07-24T03:51:14.8451290Z * [new tag] trunk/d352c28dd176572120dc99f556b29c77b98e7a2b -> trunk/d352c28dd176572120dc99f556b29c77b98e7a2b 2025-07-24T03:51:14.9865500Z [command]/usr/bin/git rev-parse --verify --quiet 27c8ef1839e0747b36769efb192befc9308ff93c^{object} 2025-07-24T03:51:14.9927300Z 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:51:14.9931600Z ##[endgroup] 2025-07-24T03:51:14.9931900Z ##[group]Determining the checkout info 2025-07-24T03:51:14.9932180Z ##[endgroup] 2025-07-24T03:51:14.9933710Z [command]/usr/bin/git sparse-checkout disable 2025-07-24T03:51:15.0119200Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig 2025-07-24T03:51:15.0182640Z ##[group]Checking out the ref 2025-07-24T03:51:15.0185040Z [command]/usr/bin/git checkout --progress --force 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:51:15.3442500Z Previous HEAD position was 41cd0d034bc update triton commit hash 2025-07-24T03:51:15.3470710Z HEAD is now at 27c8ef1839e Update 2025-07-24T03:51:15.3481550Z ##[endgroup] 2025-07-24T03:51:15.3481800Z ##[group]Setting up auth for fetching submodules 2025-07-24T03:51:15.3485770Z [command]/usr/bin/git config --global http.https://github.com/.extraheader AUTHORIZATION: basic *** 2025-07-24T03:51:15.3560840Z [command]/usr/bin/git config --global --unset-all url.https://github.com/.insteadOf 2025-07-24T03:51:15.3619280Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf git@github.com: 2025-07-24T03:51:15.3678620Z [command]/usr/bin/git config --global --add url.https://github.com/.insteadOf org-21003710@github.com: 2025-07-24T03:51:15.3740710Z ##[endgroup] 2025-07-24T03:51:15.3740950Z ##[group]Fetching submodules 2025-07-24T03:51:15.3743450Z [command]/usr/bin/git submodule sync --recursive 2025-07-24T03:51:15.4300780Z Synchronizing submodule url for 'android/libs/fbjni' 2025-07-24T03:51:15.4345570Z Synchronizing submodule url for 'third_party/FP16' 2025-07-24T03:51:15.4383270Z Synchronizing submodule url for 'third_party/FXdiv' 2025-07-24T03:51:15.4431660Z Synchronizing submodule url for 'third_party/NNPACK' 2025-07-24T03:51:15.4473500Z Synchronizing submodule url for 'third_party/NVTX' 2025-07-24T03:51:15.4518270Z Synchronizing submodule url for 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:15.4555180Z Synchronizing submodule url for 'third_party/XNNPACK' 2025-07-24T03:51:15.4599780Z Synchronizing submodule url for 'third_party/aiter' 2025-07-24T03:51:15.4637530Z Synchronizing submodule url for 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:15.4679420Z Synchronizing submodule url for 'third_party/benchmark' 2025-07-24T03:51:15.4718200Z Synchronizing submodule url for 'third_party/composable_kernel' 2025-07-24T03:51:15.4759990Z Synchronizing submodule url for 'third_party/cpp-httplib' 2025-07-24T03:51:15.4798660Z Synchronizing submodule url for 'third_party/cpuinfo' 2025-07-24T03:51:15.4836660Z Synchronizing submodule url for 'third_party/cudnn_frontend' 2025-07-24T03:51:15.4874490Z Synchronizing submodule url for 'third_party/cutlass' 2025-07-24T03:51:15.4915310Z Synchronizing submodule url for 'third_party/fbgemm' 2025-07-24T03:51:15.4951800Z Synchronizing submodule url for 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:15.4988880Z Synchronizing submodule url for 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:15.5034240Z Synchronizing submodule url for 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:15.5071210Z Synchronizing submodule url for 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:15.5111430Z Synchronizing submodule url for 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:15.5148870Z Synchronizing submodule url for 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:15.5185290Z Synchronizing submodule url for 'third_party/fbgemm/external/json' 2025-07-24T03:51:15.5224600Z Synchronizing submodule url for 'third_party/flash-attention' 2025-07-24T03:51:15.5260980Z Synchronizing submodule url for 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:15.5299320Z Synchronizing submodule url for 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:15.5341650Z Synchronizing submodule url for 'third_party/flatbuffers' 2025-07-24T03:51:15.5380880Z Synchronizing submodule url for 'third_party/fmt' 2025-07-24T03:51:15.5418260Z Synchronizing submodule url for 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:15.5455500Z Synchronizing submodule url for 'third_party/gloo' 2025-07-24T03:51:15.5492410Z Synchronizing submodule url for 'third_party/googletest' 2025-07-24T03:51:15.5529720Z Synchronizing submodule url for 'third_party/ideep' 2025-07-24T03:51:15.5563810Z Synchronizing submodule url for 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:15.5604750Z Synchronizing submodule url for 'third_party/ittapi' 2025-07-24T03:51:15.5643760Z Synchronizing submodule url for 'third_party/kineto' 2025-07-24T03:51:15.5678740Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:15.5713540Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:15.5751320Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:15.5789060Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:15.5833210Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:15.5875460Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:15.5914450Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:15.5952070Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:15.5989620Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:15.6027560Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:15.6066520Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:15.6103940Z Synchronizing submodule url for 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:15.6143220Z Synchronizing submodule url for 'third_party/kleidiai' 2025-07-24T03:51:15.6181260Z Synchronizing submodule url for 'third_party/mimalloc' 2025-07-24T03:51:15.6218390Z Synchronizing submodule url for 'third_party/nlohmann' 2025-07-24T03:51:15.6255770Z Synchronizing submodule url for 'third_party/onnx' 2025-07-24T03:51:15.6297110Z Synchronizing submodule url for 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:15.6335940Z Synchronizing submodule url for 'third_party/opentelemetry-cpp' 2025-07-24T03:51:15.6371400Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:15.6406570Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:15.6442140Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:15.6477450Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:15.6514810Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:15.6552000Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:15.6589150Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:15.6624140Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:15.6661170Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:15.6699670Z Synchronizing submodule url for 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:15.6746870Z Synchronizing submodule url for 'third_party/pocketfft' 2025-07-24T03:51:15.6784990Z Synchronizing submodule url for 'third_party/protobuf' 2025-07-24T03:51:15.6819880Z Synchronizing submodule url for 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:15.6855810Z Synchronizing submodule url for 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:15.6895150Z Synchronizing submodule url for 'third_party/psimd' 2025-07-24T03:51:15.6932950Z Synchronizing submodule url for 'third_party/pthreadpool' 2025-07-24T03:51:15.6970100Z Synchronizing submodule url for 'third_party/pybind11' 2025-07-24T03:51:15.7007100Z Synchronizing submodule url for 'third_party/python-peachpy' 2025-07-24T03:51:15.7044340Z Synchronizing submodule url for 'third_party/sleef' 2025-07-24T03:51:15.7081620Z Synchronizing submodule url for 'third_party/tensorpipe' 2025-07-24T03:51:15.7117370Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:15.7153840Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:15.7190240Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:15.7227020Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:15.7268430Z Synchronizing submodule url for 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:15.7312590Z [command]/usr/bin/git -c protocol.version=2 submodule update --init --force --recursive 2025-07-24T03:51:15.8011580Z Submodule path 'android/libs/fbjni': checked out '7e1e1fe3858c63c251c637ae41a20de425dde96f' 2025-07-24T03:51:15.8170610Z Submodule path 'third_party/FP16': checked out '4dfe081cf6bcd15db339cf2680b9281b8451eeb3' 2025-07-24T03:51:15.8339050Z Submodule path 'third_party/FXdiv': checked out 'b408327ac2a15ec3e43352421954f5b1967701d1' 2025-07-24T03:51:15.8509090Z Submodule path 'third_party/NNPACK': checked out 'c07e3a0400713d546e0dea2d5466dd22ea389c73' 2025-07-24T03:51:15.8681590Z Submodule path 'third_party/NVTX': checked out '2942f167cc30c5e3a44a2aecd5b0d9c07ff61a07' 2025-07-24T03:51:15.8887940Z Submodule path 'third_party/VulkanMemoryAllocator': checked out '1d8f600fd424278486eade7ed3e877c99f0846b1' 2025-07-24T03:51:15.9235620Z Submodule path 'third_party/XNNPACK': checked out '51a0103656eff6fc9bfd39a4597923c4b542c883' 2025-07-24T03:51:15.9644640Z Submodule path 'third_party/aiter': checked out '01aae101b9e5e94d6c16a9514c9fb8df99c93150' 2025-07-24T03:51:16.0893980Z Submodule path 'third_party/aiter/3rdparty/composable_kernel': checked out 'cffe8fa2a442ac8e80dd236a1a5d24fe3d7e0cbf' 2025-07-24T03:51:16.1224260Z Submodule path 'third_party/benchmark': checked out '299e5928955cc62af9968370293b916f5130916f' 2025-07-24T03:51:16.5077690Z Submodule path 'third_party/composable_kernel': checked out '434d19f696da62c12b5372b32cbc9ba968588d7e' 2025-07-24T03:51:16.5261650Z Submodule path 'third_party/cpp-httplib': checked out '3af7f2c16147f3fbc6e4d717032daf505dc1652c' 2025-07-24T03:51:16.5435890Z Submodule path 'third_party/cpuinfo': checked out '5e3d2445e6a84d9599bee2bf78edbb4d80865e1d' 2025-07-24T03:51:16.5608370Z Submodule path 'third_party/cudnn_frontend': checked out 'f937055efc6d414d11f4c6577e3977fe74f35fb6' 2025-07-24T03:51:16.5866110Z Submodule path 'third_party/cutlass': checked out 'b995f933179c22d3fe0d871c3a53d11e4681950f' 2025-07-24T03:51:16.6271950Z Submodule path 'third_party/fbgemm': checked out '157e88b750c452bef2ab4653fe9d1eeb151ce4c3' 2025-07-24T03:51:16.6636230Z Submodule path 'third_party/fbgemm/external/asmjit': checked out 'e5d7c0bd5d9aec44d68830187138149e6a8c4e32' 2025-07-24T03:51:16.7182610Z Submodule path 'third_party/fbgemm/external/composable_kernel': checked out '4a61bdd4bd4ed730e078aebc7c0fcf046ff29406' 2025-07-24T03:51:16.7529330Z Submodule path 'third_party/fbgemm/external/cpuinfo': checked out '6543fec09b2f04ac4a666882998b534afc9c1349' 2025-07-24T03:51:16.8106600Z Submodule path 'third_party/fbgemm/external/cutlass': checked out '3ed8d2ec4ba35ef5d9d8353826209b6f868f63d3' 2025-07-24T03:51:16.8662610Z Submodule path 'third_party/fbgemm/external/googletest': checked out 'f8d7d77c06936315286eb55f8de22cd23c188571' 2025-07-24T03:51:16.8923240Z Submodule path 'third_party/fbgemm/external/hipify_torch': checked out 'a4337c69fe0e2552a7b7b0669178926beeed828c' 2025-07-24T03:51:16.9786200Z Submodule path 'third_party/fbgemm/external/json': checked out '9cca280a4d0ccf0c08f47a99aa71d1b0e52f8d03' 2025-07-24T03:51:16.9986860Z Submodule path 'third_party/flash-attention': checked out '979702c87a8713a8e0a5e9fee122b90d2ef13be5' 2025-07-24T03:51:17.1207970Z Submodule path 'third_party/flash-attention/csrc/composable_kernel': checked out '888317e698e9803c62bd38568abc9e05d7709f33' 2025-07-24T03:51:17.1867780Z Submodule path 'third_party/flash-attention/csrc/cutlass': checked out 'c506e16788cb08416a4a57e11a9067beeee29420' 2025-07-24T03:51:17.2418360Z Submodule path 'third_party/flatbuffers': checked out 'a2cd1ea3b6d3fee220106b5fed3f7ce8da9eb757' 2025-07-24T03:51:17.2610360Z Submodule path 'third_party/fmt': checked out '40626af88bd7df9a5fb80be7b25ac85b122d6c21' 2025-07-24T03:51:17.2791280Z Submodule path 'third_party/gemmlowp/gemmlowp': checked out '3fb5c176c17c765a3492cd2f0321b0dab712f350' 2025-07-24T03:51:17.2977140Z Submodule path 'third_party/gloo': checked out 'c7b7b022c124d9643957d9bd55f57ac59fce8fa2' 2025-07-24T03:51:17.3178200Z Submodule path 'third_party/googletest': checked out '52eb8108c5bdec04579160ae17225d66034bd723' 2025-07-24T03:51:17.3356640Z Submodule path 'third_party/ideep': checked out '719d8e6cd7f7a0e01b155657526d693acf97c2b3' 2025-07-24T03:51:17.6094780Z Submodule path 'third_party/ideep/mkl-dnn': checked out '8d263e693366ef8db40acc569cc7d8edf644556d' 2025-07-24T03:51:17.6276710Z Submodule path 'third_party/ittapi': checked out 'dec1d23ca65ab069d225dfe40dea14f455170959' 2025-07-24T03:51:17.6454770Z Submodule path 'third_party/kineto': checked out '5e7501833f1021ce6f618572d3baf657b6319658' 2025-07-24T03:51:17.6795980Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog': checked out '7d04a0053a845370ae06ce317a22a48e9edcc74e' 2025-07-24T03:51:17.7143030Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM': checked out 'ffde4e54bc7249a6039a5e6b45b395141e1217f9' 2025-07-24T03:51:17.7563720Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr': checked out '871ed52d350214a034f6ef8a3b8f51c5ce1bd400' 2025-07-24T03:51:17.8181300Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt': checked out 'cd4af11efc9c622896a3e4cb599fa28668ca3d05' 2025-07-24T03:51:17.8439390Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags': checked out 'e171aa2d15ed9eb17054558e0b3a6a413bb01067' 2025-07-24T03:51:17.8696940Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc': checked out '8411df715cf522606e3b1aca386ddfc0b63d34b4' 2025-07-24T03:51:17.9038090Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog': checked out 'b33e3bad4c46c8a6345525fd822af355e5ef9446' 2025-07-24T03:51:17.9504910Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest': checked out '58d77fa8070e8cec2dc1ed015d66b454c8d78850' 2025-07-24T03:51:18.0293540Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/json': checked out '4f8fba14066156b73f1189a2b8bd568bde5284c5' 2025-07-24T03:51:18.0526430Z Submodule path 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs': checked out 'f68a2fa8ea36c783bdd760371411fcb495aa3150' 2025-07-24T03:51:18.1182580Z Submodule path 'third_party/kineto/libkineto/third_party/fmt': checked out '0041a40c1350ba702d475b9c4ad62da77caea164' 2025-07-24T03:51:18.1685440Z Submodule path 'third_party/kineto/libkineto/third_party/googletest': checked out '7aca84427f224eeed3144123d5230d5871e93347' 2025-07-24T03:51:18.1866970Z Submodule path 'third_party/kleidiai': checked out 'cca02c2f69dd18e1f12647c1c0bdc8cf90e680c7' 2025-07-24T03:51:18.2329020Z Submodule path 'third_party/mimalloc': checked out 'fbd8b99c2b828428947d70fdc046bb55609be93e' 2025-07-24T03:51:18.3021090Z Submodule path 'third_party/nlohmann': checked out '55f93686c01528224f448c19128836e7df245f72' 2025-07-24T03:51:18.3365600Z Submodule path 'third_party/onnx': checked out 'e709452ef2bbc1d113faf678c24e6d3467696e83' 2025-07-24T03:51:18.4147590Z Submodule path 'third_party/onnx/third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-24T03:51:18.4766340Z Submodule path 'third_party/opentelemetry-cpp': checked out 'a799f4aed9c94b765dcdaabaeab7d5e7e2310878' 2025-07-24T03:51:18.5242100Z Submodule path 'third_party/opentelemetry-cpp/third_party/benchmark': checked out 'd572f4777349d43653b21d6c2fc63020ab326db2' 2025-07-24T03:51:18.5741940Z Submodule path 'third_party/opentelemetry-cpp/third_party/googletest': checked out 'b796f7d44681514f58a683a3a71ff17c94edb0c1' 2025-07-24T03:51:18.6074820Z Submodule path 'third_party/opentelemetry-cpp/third_party/ms-gsl': checked out '6f4529395c5b7c2d661812257cd6780c67e54afa' 2025-07-24T03:51:18.6869170Z Submodule path 'third_party/opentelemetry-cpp/third_party/nlohmann-json': checked out 'bc889afb4c5bf1c0d8ee29ef35eaaf4c8bef8a5d' 2025-07-24T03:51:18.7164890Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto': checked out '4ca4f0335c63cda7ab31ea7ed70d6553aee14dce' 2025-07-24T03:51:18.7343470Z Submodule path 'third_party/opentelemetry-cpp/third_party/opentracing-cpp': checked out '06b57f48ded1fa3bdd3d4346f6ef29e40e08eaf5' 2025-07-24T03:51:18.7764140Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp': checked out 'c9ffcdda9086ffd9e1283ea7a0276d831f3c8a8d' 2025-07-24T03:51:18.8326150Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb': checked out 'eefb26f82b233268fc98577d265352720d477ba4' 2025-07-24T03:51:18.8802490Z Submodule path 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest': checked out 'e2239ee6043f73722e7aa812a459f54a28552929' 2025-07-24T03:51:19.0808840Z Submodule path 'third_party/opentelemetry-cpp/tools/vcpkg': checked out '8eb57355a4ffb410a2e94c07b4dca2dffbee8e50' 2025-07-24T03:51:19.0989860Z Submodule path 'third_party/pocketfft': checked out '0fa0ef591e38c2758e3184c6c23e497b9f732ffa' 2025-07-24T03:51:19.1449450Z Submodule path 'third_party/protobuf': checked out 'd1eca4e4b421cd2997495c4b4e65cea6be4e9b8a' 2025-07-24T03:51:19.1958380Z Submodule path 'third_party/protobuf/third_party/benchmark': checked out '5b7683f49e1e9223cf9927b24f6fd3d6bd82e3f8' 2025-07-24T03:51:19.2541920Z Submodule path 'third_party/protobuf/third_party/googletest': checked out '5ec7f0c4a113e2f18ac2c6cc7df51ad6afc24081' 2025-07-24T03:51:19.2708460Z Submodule path 'third_party/psimd': checked out '072586a71b55b7f8c584153d223e95687148a900' 2025-07-24T03:51:19.2881300Z Submodule path 'third_party/pthreadpool': checked out '4fe0e1e183925bf8cfa6aae24237e724a96479b8' 2025-07-24T03:51:19.3132110Z Submodule path 'third_party/pybind11': checked out 'a2e59f0e7065404b44dfe92a28aca47ba1378dc4' 2025-07-24T03:51:19.3312630Z Submodule path 'third_party/python-peachpy': checked out 'f45429b087dd7d5bc78bb40dc7cf06425c252d67' 2025-07-24T03:51:19.3519810Z Submodule path 'third_party/sleef': checked out '5a1d179df9cf652951b59010a2d2075372d67f68' 2025-07-24T03:51:19.4530820Z Submodule path 'third_party/tensorpipe': checked out '52791a2fd214b2a9dc5759d36725909c1daa7f2e' 2025-07-24T03:51:19.5319500Z Submodule path 'third_party/tensorpipe/third_party/googletest': checked out 'aee0f9d9b5b87796ee8a0ab26b7587ec30e8858e' 2025-07-24T03:51:19.5558260Z Submodule path 'third_party/tensorpipe/third_party/libnop': checked out '910b55815be16109f04f4180e9adee14fb4ce281' 2025-07-24T03:51:19.6567370Z Submodule path 'third_party/tensorpipe/third_party/libuv': checked out '1dff88e5161cba5c59276d2070d2e304e4dcb242' 2025-07-24T03:51:19.7324830Z Submodule path 'third_party/tensorpipe/third_party/pybind11': checked out 'a23996fce38ff6ccfbcdc09f1e63f2c4be5ea2ef' 2025-07-24T03:51:19.7549620Z Submodule path 'third_party/tensorpipe/third_party/pybind11/tools/clang': checked out '6a00cbc4a9b8e68b71caf7f774b3f9c753ae84d5' 2025-07-24T03:51:19.7596170Z [command]/usr/bin/git submodule foreach --recursive git config --local gc.auto 0 2025-07-24T03:51:19.8077970Z Entering 'android/libs/fbjni' 2025-07-24T03:51:19.8166750Z Entering 'third_party/FP16' 2025-07-24T03:51:19.8247430Z Entering 'third_party/FXdiv' 2025-07-24T03:51:19.8326740Z Entering 'third_party/NNPACK' 2025-07-24T03:51:19.8406160Z Entering 'third_party/NVTX' 2025-07-24T03:51:19.8485810Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:19.8565460Z Entering 'third_party/XNNPACK' 2025-07-24T03:51:19.8649150Z Entering 'third_party/aiter' 2025-07-24T03:51:19.8729140Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:19.8812330Z Entering 'third_party/benchmark' 2025-07-24T03:51:19.8892430Z Entering 'third_party/composable_kernel' 2025-07-24T03:51:19.8974730Z Entering 'third_party/cpp-httplib' 2025-07-24T03:51:19.9054560Z Entering 'third_party/cpuinfo' 2025-07-24T03:51:19.9133320Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:51:19.9211930Z Entering 'third_party/cutlass' 2025-07-24T03:51:19.9293430Z Entering 'third_party/fbgemm' 2025-07-24T03:51:19.9373410Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:19.9451260Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:19.9531760Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:19.9610530Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:19.9691230Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:19.9770120Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:19.9848090Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:51:19.9928150Z Entering 'third_party/flash-attention' 2025-07-24T03:51:20.0008510Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:20.0089460Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:20.0173770Z Entering 'third_party/flatbuffers' 2025-07-24T03:51:20.0255060Z Entering 'third_party/fmt' 2025-07-24T03:51:20.0333350Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:20.0411710Z Entering 'third_party/gloo' 2025-07-24T03:51:20.0490750Z Entering 'third_party/googletest' 2025-07-24T03:51:20.0569470Z Entering 'third_party/ideep' 2025-07-24T03:51:20.0646630Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:20.0729570Z Entering 'third_party/ittapi' 2025-07-24T03:51:20.0809890Z Entering 'third_party/kineto' 2025-07-24T03:51:20.0888360Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:20.0965570Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:20.1045510Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:20.1123640Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:20.1202150Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:20.1281730Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:20.1365950Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:20.1444290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:20.1522450Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:20.1600860Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:20.1680760Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:20.1758390Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:20.1838100Z Entering 'third_party/kleidiai' 2025-07-24T03:51:20.1917160Z Entering 'third_party/mimalloc' 2025-07-24T03:51:20.1995050Z Entering 'third_party/nlohmann' 2025-07-24T03:51:20.2073460Z Entering 'third_party/onnx' 2025-07-24T03:51:20.2156220Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:20.2238330Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:51:20.2318040Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:20.2398010Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:20.2478860Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:20.2560430Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:20.2640890Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:20.2720460Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:20.2801280Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:20.2879240Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:20.2961800Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:20.3045620Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:20.3136170Z Entering 'third_party/pocketfft' 2025-07-24T03:51:20.3220140Z Entering 'third_party/protobuf' 2025-07-24T03:51:20.3304360Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:20.3385300Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:20.3467810Z Entering 'third_party/psimd' 2025-07-24T03:51:20.3550030Z Entering 'third_party/pthreadpool' 2025-07-24T03:51:20.3631840Z Entering 'third_party/pybind11' 2025-07-24T03:51:20.3713700Z Entering 'third_party/python-peachpy' 2025-07-24T03:51:20.3794790Z Entering 'third_party/sleef' 2025-07-24T03:51:20.3876390Z Entering 'third_party/tensorpipe' 2025-07-24T03:51:20.3957480Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:20.4038920Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:20.4118530Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:20.4199070Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:20.4278220Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:20.4370620Z ##[endgroup] 2025-07-24T03:51:20.4370900Z ##[group]Persisting credentials for submodules 2025-07-24T03:51:20.4374640Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'url\.https\:\/\/github\.com\/\.insteadOf' && git config --local --unset-all 'url.https://github.com/.insteadOf' || :" 2025-07-24T03:51:20.4871540Z Entering 'android/libs/fbjni' 2025-07-24T03:51:20.4940200Z url.https://github.com/.insteadof 2025-07-24T03:51:20.4940430Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5004660Z Entering 'third_party/FP16' 2025-07-24T03:51:20.5071020Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5071240Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5135470Z Entering 'third_party/FXdiv' 2025-07-24T03:51:20.5201610Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5201820Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5266760Z Entering 'third_party/NNPACK' 2025-07-24T03:51:20.5333430Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5333720Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5399110Z Entering 'third_party/NVTX' 2025-07-24T03:51:20.5464300Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5464520Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5529360Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:20.5595350Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5595590Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5661490Z Entering 'third_party/XNNPACK' 2025-07-24T03:51:20.5727600Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5727890Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5796580Z Entering 'third_party/aiter' 2025-07-24T03:51:20.5862600Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5862830Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5928380Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:20.5991220Z url.https://github.com/.insteadof 2025-07-24T03:51:20.5991440Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6060870Z Entering 'third_party/benchmark' 2025-07-24T03:51:20.6128230Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6128460Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6194410Z Entering 'third_party/composable_kernel' 2025-07-24T03:51:20.6261000Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6261220Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6328610Z Entering 'third_party/cpp-httplib' 2025-07-24T03:51:20.6395890Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6396120Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6461690Z Entering 'third_party/cpuinfo' 2025-07-24T03:51:20.6527950Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6528230Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6594090Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:51:20.6659710Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6659920Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6725570Z Entering 'third_party/cutlass' 2025-07-24T03:51:20.6791290Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6791500Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6860070Z Entering 'third_party/fbgemm' 2025-07-24T03:51:20.6927140Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6927360Z url.https://github.com/.insteadof 2025-07-24T03:51:20.6993040Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:20.7058850Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7059080Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7123850Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:20.7189020Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7189250Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7256770Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:20.7323680Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7323900Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7389670Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:20.7454850Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7455070Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7522860Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:20.7590880Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7591180Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7656970Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:20.7722940Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7723150Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7794630Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:51:20.7861710Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7861940Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7929120Z Entering 'third_party/flash-attention' 2025-07-24T03:51:20.7996640Z url.https://github.com/.insteadof 2025-07-24T03:51:20.7996860Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8060190Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:20.8125390Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8125720Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8191820Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:20.8256900Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8257130Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8326330Z Entering 'third_party/flatbuffers' 2025-07-24T03:51:20.8392750Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8393060Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8459970Z Entering 'third_party/fmt' 2025-07-24T03:51:20.8526650Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8526970Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8593560Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:20.8660270Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8660490Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8727760Z Entering 'third_party/gloo' 2025-07-24T03:51:20.8794890Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8795120Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8860880Z Entering 'third_party/googletest' 2025-07-24T03:51:20.8927660Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8927880Z url.https://github.com/.insteadof 2025-07-24T03:51:20.8994090Z Entering 'third_party/ideep' 2025-07-24T03:51:20.9060880Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9061200Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9125590Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:20.9191130Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9191350Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9260360Z Entering 'third_party/ittapi' 2025-07-24T03:51:20.9328040Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9328320Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9393820Z Entering 'third_party/kineto' 2025-07-24T03:51:20.9460790Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9461010Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9525740Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:20.9591940Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9592420Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9656560Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:20.9722720Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9722940Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9789290Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:20.9855900Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9856130Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9922680Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:20.9988520Z url.https://github.com/.insteadof 2025-07-24T03:51:20.9988740Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0054440Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:21.0121370Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0121580Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0186300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:21.0251140Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0251360Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0318930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:21.0385520Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0385730Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0453300Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:21.0517930Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0518150Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0584430Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:21.0649850Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0650080Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0715730Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:21.0781440Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0781660Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0849750Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:21.0916000Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0916220Z url.https://github.com/.insteadof 2025-07-24T03:51:21.0980460Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:21.1045830Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1046070Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1113550Z Entering 'third_party/kleidiai' 2025-07-24T03:51:21.1180730Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1180960Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1247130Z Entering 'third_party/mimalloc' 2025-07-24T03:51:21.1313190Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1313420Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1378550Z Entering 'third_party/nlohmann' 2025-07-24T03:51:21.1445750Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1445980Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1511350Z Entering 'third_party/onnx' 2025-07-24T03:51:21.1577720Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1577950Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1647520Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:21.1715420Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1715650Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1782950Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:51:21.1849260Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1849480Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1914430Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:21.1980250Z url.https://github.com/.insteadof 2025-07-24T03:51:21.1980470Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2045460Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:21.2110720Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2110940Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2176280Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:21.2241730Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2241950Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2307080Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:21.2372790Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2373030Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2438460Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:21.2503280Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2503500Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2568420Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:21.2634560Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2634840Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2699830Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:21.2765580Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2765800Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2830380Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:21.2895800Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2896020Z url.https://github.com/.insteadof 2025-07-24T03:51:21.2962780Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:21.3029390Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3029930Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3097860Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:21.3163790Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3164030Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3237730Z Entering 'third_party/pocketfft' 2025-07-24T03:51:21.3306250Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3306470Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3373210Z Entering 'third_party/protobuf' 2025-07-24T03:51:21.3439220Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3439440Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3504470Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:21.3571060Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3571290Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3635820Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:21.3701030Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3701250Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3768390Z Entering 'third_party/psimd' 2025-07-24T03:51:21.3835800Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3836020Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3901400Z Entering 'third_party/pthreadpool' 2025-07-24T03:51:21.3968560Z url.https://github.com/.insteadof 2025-07-24T03:51:21.3969400Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4033030Z Entering 'third_party/pybind11' 2025-07-24T03:51:21.4098370Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4098640Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4164510Z Entering 'third_party/python-peachpy' 2025-07-24T03:51:21.4231020Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4231270Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4297810Z Entering 'third_party/sleef' 2025-07-24T03:51:21.4363830Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4364070Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4428830Z Entering 'third_party/tensorpipe' 2025-07-24T03:51:21.4495260Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4495480Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4559440Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:21.4624630Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4624860Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4690110Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:21.4756010Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4756230Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4825870Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:21.4891180Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4891400Z url.https://github.com/.insteadof 2025-07-24T03:51:21.4957160Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:21.5022540Z url.https://github.com/.insteadof 2025-07-24T03:51:21.5022770Z url.https://github.com/.insteadof 2025-07-24T03:51:21.5086440Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:21.5152770Z url.https://github.com/.insteadof 2025-07-24T03:51:21.5152980Z url.https://github.com/.insteadof 2025-07-24T03:51:21.5233640Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local 'http.https://github.com/.extraheader' 'AUTHORIZATION: basic ***' && git config --local --show-origin --name-only --get-regexp remote.origin.url" 2025-07-24T03:51:21.5723590Z Entering 'android/libs/fbjni' 2025-07-24T03:51:21.5823990Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/android/libs/fbjni/config remote.origin.url 2025-07-24T03:51:21.5858260Z Entering 'third_party/FP16' 2025-07-24T03:51:21.5955780Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FP16/config remote.origin.url 2025-07-24T03:51:21.5989800Z Entering 'third_party/FXdiv' 2025-07-24T03:51:21.6086770Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/FXdiv/config remote.origin.url 2025-07-24T03:51:21.6120710Z Entering 'third_party/NNPACK' 2025-07-24T03:51:21.6218860Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK/config remote.origin.url 2025-07-24T03:51:21.6252640Z Entering 'third_party/NVTX' 2025-07-24T03:51:21.6350210Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NVTX/config remote.origin.url 2025-07-24T03:51:21.6383840Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:21.6481330Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/VulkanMemoryAllocator/config remote.origin.url 2025-07-24T03:51:21.6515190Z Entering 'third_party/XNNPACK' 2025-07-24T03:51:21.6613720Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/XNNPACK/config remote.origin.url 2025-07-24T03:51:21.6652460Z Entering 'third_party/aiter' 2025-07-24T03:51:21.6752190Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/config remote.origin.url 2025-07-24T03:51:21.6784690Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:21.6882850Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/aiter/modules/3rdparty/composable_kernel/config remote.origin.url 2025-07-24T03:51:21.6920380Z Entering 'third_party/benchmark' 2025-07-24T03:51:21.7020050Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/benchmark/config remote.origin.url 2025-07-24T03:51:21.7053750Z Entering 'third_party/composable_kernel' 2025-07-24T03:51:21.7149930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/composable_kernel/config remote.origin.url 2025-07-24T03:51:21.7186000Z Entering 'third_party/cpp-httplib' 2025-07-24T03:51:21.7284270Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpp-httplib/config remote.origin.url 2025-07-24T03:51:21.7318330Z Entering 'third_party/cpuinfo' 2025-07-24T03:51:21.7415040Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cpuinfo/config remote.origin.url 2025-07-24T03:51:21.7448930Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:51:21.7546900Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cudnn_frontend/config remote.origin.url 2025-07-24T03:51:21.7580960Z Entering 'third_party/cutlass' 2025-07-24T03:51:21.7679490Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/cutlass/config remote.origin.url 2025-07-24T03:51:21.7717480Z Entering 'third_party/fbgemm' 2025-07-24T03:51:21.7818070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/config remote.origin.url 2025-07-24T03:51:21.7851130Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:21.7950050Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/asmjit/config remote.origin.url 2025-07-24T03:51:21.7983760Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:21.8082070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/composable_kernel/config remote.origin.url 2025-07-24T03:51:21.8117740Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:21.8217260Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cpuinfo/config remote.origin.url 2025-07-24T03:51:21.8250510Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:21.8348830Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/cutlass/config remote.origin.url 2025-07-24T03:51:21.8385450Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:21.8484070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/googletest/config remote.origin.url 2025-07-24T03:51:21.8517300Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:21.8615660Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/hipify_torch/config remote.origin.url 2025-07-24T03:51:21.8649560Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:51:21.8748550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fbgemm/modules/external/json/config remote.origin.url 2025-07-24T03:51:21.8784950Z Entering 'third_party/flash-attention' 2025-07-24T03:51:21.8883810Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/config remote.origin.url 2025-07-24T03:51:21.8916830Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:21.9014700Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/composable_kernel/config remote.origin.url 2025-07-24T03:51:21.9049820Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:21.9148200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flash-attention/modules/csrc/cutlass/config remote.origin.url 2025-07-24T03:51:21.9186860Z Entering 'third_party/flatbuffers' 2025-07-24T03:51:21.9284360Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/flatbuffers/config remote.origin.url 2025-07-24T03:51:21.9318930Z Entering 'third_party/fmt' 2025-07-24T03:51:21.9413980Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/fmt/config remote.origin.url 2025-07-24T03:51:21.9447520Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:21.9543890Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gemmlowp/gemmlowp/config remote.origin.url 2025-07-24T03:51:21.9576970Z Entering 'third_party/gloo' 2025-07-24T03:51:21.9671820Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/gloo/config remote.origin.url 2025-07-24T03:51:21.9706420Z Entering 'third_party/googletest' 2025-07-24T03:51:21.9801880Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:51:21.9835620Z Entering 'third_party/ideep' 2025-07-24T03:51:21.9930560Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/config remote.origin.url 2025-07-24T03:51:21.9961970Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:22.0056440Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ideep/modules/mkl-dnn/config remote.origin.url 2025-07-24T03:51:22.0093570Z Entering 'third_party/ittapi' 2025-07-24T03:51:22.0192800Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/ittapi/config remote.origin.url 2025-07-24T03:51:22.0226590Z Entering 'third_party/kineto' 2025-07-24T03:51:22.0321330Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/config remote.origin.url 2025-07-24T03:51:22.0353680Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:22.0449340Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/config remote.origin.url 2025-07-24T03:51:22.0481640Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:22.0577510Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/DCGM/config remote.origin.url 2025-07-24T03:51:22.0611310Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:22.0707260Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/cpr/config remote.origin.url 2025-07-24T03:51:22.0740640Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:22.0837700Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/fmt/config remote.origin.url 2025-07-24T03:51:22.0873100Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:22.0972070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/config remote.origin.url 2025-07-24T03:51:22.1004710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:22.1101860Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/gflags/modules/doc/config remote.origin.url 2025-07-24T03:51:22.1138390Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:22.1237420Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/glog/config remote.origin.url 2025-07-24T03:51:22.1270660Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:22.1365670Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:51:22.1398830Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:22.1494890Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/json/config remote.origin.url 2025-07-24T03:51:22.1528810Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:22.1624100Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/dynolog/modules/third_party/pfs/config remote.origin.url 2025-07-24T03:51:22.1660340Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:22.1755750Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/fmt/config remote.origin.url 2025-07-24T03:51:22.1789100Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:22.1885030Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kineto/modules/libkineto/third_party/googletest/config remote.origin.url 2025-07-24T03:51:22.1920890Z Entering 'third_party/kleidiai' 2025-07-24T03:51:22.2014930Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/kleidiai/config remote.origin.url 2025-07-24T03:51:22.2048450Z Entering 'third_party/mimalloc' 2025-07-24T03:51:22.2142770Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/mimalloc/config remote.origin.url 2025-07-24T03:51:22.2175830Z Entering 'third_party/nlohmann' 2025-07-24T03:51:22.2269800Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/nlohmann/config remote.origin.url 2025-07-24T03:51:22.2303770Z Entering 'third_party/onnx' 2025-07-24T03:51:22.2400920Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/config remote.origin.url 2025-07-24T03:51:22.2439350Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:22.2536490Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/onnx/modules/third_party/pybind11/config remote.origin.url 2025-07-24T03:51:22.2571980Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:51:22.2669150Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/config remote.origin.url 2025-07-24T03:51:22.2702980Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:22.2799690Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/benchmark/config remote.origin.url 2025-07-24T03:51:22.2832490Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:22.2928410Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:51:22.2962100Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:22.3060030Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/ms-gsl/config remote.origin.url 2025-07-24T03:51:22.3092950Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:22.3187900Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/nlohmann-json/config remote.origin.url 2025-07-24T03:51:22.3222710Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:22.3320200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentelemetry-proto/config remote.origin.url 2025-07-24T03:51:22.3354310Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:22.3453070Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/opentracing-cpp/config remote.origin.url 2025-07-24T03:51:22.3485900Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:22.3583400Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/config remote.origin.url 2025-07-24T03:51:22.3616110Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:22.3714350Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/civetweb/config remote.origin.url 2025-07-24T03:51:22.3748920Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:22.3846300Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/third_party/prometheus-cpp/modules/googletest/config remote.origin.url 2025-07-24T03:51:22.3882290Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:22.3978160Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/opentelemetry-cpp/modules/tools/vcpkg/config remote.origin.url 2025-07-24T03:51:22.4020070Z Entering 'third_party/pocketfft' 2025-07-24T03:51:22.4116910Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pocketfft/config remote.origin.url 2025-07-24T03:51:22.4149870Z Entering 'third_party/protobuf' 2025-07-24T03:51:22.4244450Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/config remote.origin.url 2025-07-24T03:51:22.4277380Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:22.4372990Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/benchmark/config remote.origin.url 2025-07-24T03:51:22.4406600Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:22.4500650Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/protobuf/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:51:22.4535480Z Entering 'third_party/psimd' 2025-07-24T03:51:22.4631210Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/psimd/config remote.origin.url 2025-07-24T03:51:22.4665560Z Entering 'third_party/pthreadpool' 2025-07-24T03:51:22.4763060Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/NNPACK_deps/pthreadpool/config remote.origin.url 2025-07-24T03:51:22.4797560Z Entering 'third_party/pybind11' 2025-07-24T03:51:22.4894560Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/pybind11/config remote.origin.url 2025-07-24T03:51:22.4929300Z Entering 'third_party/python-peachpy' 2025-07-24T03:51:22.5027190Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/python-peachpy/config remote.origin.url 2025-07-24T03:51:22.5061690Z Entering 'third_party/sleef' 2025-07-24T03:51:22.5158680Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/sleef/config remote.origin.url 2025-07-24T03:51:22.5193330Z Entering 'third_party/tensorpipe' 2025-07-24T03:51:22.5293190Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/config remote.origin.url 2025-07-24T03:51:22.5326390Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:22.5422840Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/googletest/config remote.origin.url 2025-07-24T03:51:22.5455870Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:22.5552550Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libnop/config remote.origin.url 2025-07-24T03:51:22.5586090Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:22.5683200Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/libuv/config remote.origin.url 2025-07-24T03:51:22.5716890Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:22.5812590Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/config remote.origin.url 2025-07-24T03:51:22.5845450Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:22.5944580Z file:/Users/ec2-user/runner/_work/pytorch/pytorch/.git/modules/third_party/tensorpipe/modules/third_party/pybind11/modules/tools/clang/config remote.origin.url 2025-07-24T03:51:22.6136550Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'git@github.com:' 2025-07-24T03:51:22.6663430Z Entering 'android/libs/fbjni' 2025-07-24T03:51:22.6749450Z Entering 'third_party/FP16' 2025-07-24T03:51:22.6831160Z Entering 'third_party/FXdiv' 2025-07-24T03:51:22.6912360Z Entering 'third_party/NNPACK' 2025-07-24T03:51:22.6992270Z Entering 'third_party/NVTX' 2025-07-24T03:51:22.7074160Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:22.7155440Z Entering 'third_party/XNNPACK' 2025-07-24T03:51:22.7243570Z Entering 'third_party/aiter' 2025-07-24T03:51:22.7326250Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:22.7412020Z Entering 'third_party/benchmark' 2025-07-24T03:51:22.7492830Z Entering 'third_party/composable_kernel' 2025-07-24T03:51:22.7577180Z Entering 'third_party/cpp-httplib' 2025-07-24T03:51:22.7658870Z Entering 'third_party/cpuinfo' 2025-07-24T03:51:22.7740980Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:51:22.7824170Z Entering 'third_party/cutlass' 2025-07-24T03:51:22.7909080Z Entering 'third_party/fbgemm' 2025-07-24T03:51:22.7988290Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:22.8068210Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:22.8149190Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:22.8231000Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:22.8312980Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:22.8392830Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:22.8471110Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:51:22.8552760Z Entering 'third_party/flash-attention' 2025-07-24T03:51:22.8632820Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:22.8716030Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:22.8801360Z Entering 'third_party/flatbuffers' 2025-07-24T03:51:22.8884000Z Entering 'third_party/fmt' 2025-07-24T03:51:22.8965350Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:22.9045530Z Entering 'third_party/gloo' 2025-07-24T03:51:22.9125380Z Entering 'third_party/googletest' 2025-07-24T03:51:22.9205960Z Entering 'third_party/ideep' 2025-07-24T03:51:22.9283610Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:22.9368040Z Entering 'third_party/ittapi' 2025-07-24T03:51:22.9450610Z Entering 'third_party/kineto' 2025-07-24T03:51:22.9530650Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:22.9609910Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:22.9690200Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:22.9770040Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:22.9851260Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:22.9930930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:23.0015690Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:23.0102080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:23.0179990Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:23.0261060Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:23.0344860Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:23.0427890Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:23.0510410Z Entering 'third_party/kleidiai' 2025-07-24T03:51:23.0593220Z Entering 'third_party/mimalloc' 2025-07-24T03:51:23.0675060Z Entering 'third_party/nlohmann' 2025-07-24T03:51:23.0756860Z Entering 'third_party/onnx' 2025-07-24T03:51:23.0842660Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:23.0929090Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:51:23.1008190Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:23.1087920Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:23.1168480Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:23.1246690Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:23.1326890Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:23.1407200Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:23.1488520Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:23.1568000Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:23.1647690Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:23.1731200Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:23.1822880Z Entering 'third_party/pocketfft' 2025-07-24T03:51:23.1906370Z Entering 'third_party/protobuf' 2025-07-24T03:51:23.1985530Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:23.2064910Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:23.2145890Z Entering 'third_party/psimd' 2025-07-24T03:51:23.2227300Z Entering 'third_party/pthreadpool' 2025-07-24T03:51:23.2308450Z Entering 'third_party/pybind11' 2025-07-24T03:51:23.2389890Z Entering 'third_party/python-peachpy' 2025-07-24T03:51:23.2468830Z Entering 'third_party/sleef' 2025-07-24T03:51:23.2550900Z Entering 'third_party/tensorpipe' 2025-07-24T03:51:23.2630710Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:23.2710060Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:23.2790420Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:23.2875630Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:23.2957000Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:23.3049840Z [command]/usr/bin/git submodule foreach --recursive git config --local --add 'url.https://github.com/.insteadOf' 'org-21003710@github.com:' 2025-07-24T03:51:23.3546910Z Entering 'android/libs/fbjni' 2025-07-24T03:51:23.3630430Z Entering 'third_party/FP16' 2025-07-24T03:51:23.3709790Z Entering 'third_party/FXdiv' 2025-07-24T03:51:23.3791720Z Entering 'third_party/NNPACK' 2025-07-24T03:51:23.3872840Z Entering 'third_party/NVTX' 2025-07-24T03:51:23.3954970Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:51:23.4037550Z Entering 'third_party/XNNPACK' 2025-07-24T03:51:23.4130160Z Entering 'third_party/aiter' 2025-07-24T03:51:23.4213720Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:51:23.4297750Z Entering 'third_party/benchmark' 2025-07-24T03:51:23.4379120Z Entering 'third_party/composable_kernel' 2025-07-24T03:51:23.4461330Z Entering 'third_party/cpp-httplib' 2025-07-24T03:51:23.4541840Z Entering 'third_party/cpuinfo' 2025-07-24T03:51:23.4622340Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:51:23.4702440Z Entering 'third_party/cutlass' 2025-07-24T03:51:23.4787370Z Entering 'third_party/fbgemm' 2025-07-24T03:51:23.4869500Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:51:23.4950100Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:51:23.5033880Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:51:23.5114830Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:51:23.5198780Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:51:23.5279960Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:51:23.5361940Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:51:23.5444030Z Entering 'third_party/flash-attention' 2025-07-24T03:51:23.5525420Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:51:23.5607120Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:51:23.5693090Z Entering 'third_party/flatbuffers' 2025-07-24T03:51:23.5776160Z Entering 'third_party/fmt' 2025-07-24T03:51:23.5856300Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:51:23.5937680Z Entering 'third_party/gloo' 2025-07-24T03:51:23.6019090Z Entering 'third_party/googletest' 2025-07-24T03:51:23.6099990Z Entering 'third_party/ideep' 2025-07-24T03:51:23.6179870Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:51:23.6265440Z Entering 'third_party/ittapi' 2025-07-24T03:51:23.6348020Z Entering 'third_party/kineto' 2025-07-24T03:51:23.6426880Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:51:23.6506190Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:51:23.6587440Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:51:23.6667770Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:51:23.6746160Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:51:23.6822710Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:51:23.6902380Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:51:23.6980870Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:51:23.7058850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:51:23.7139680Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:51:23.7222370Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:51:23.7303750Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:51:23.7385860Z Entering 'third_party/kleidiai' 2025-07-24T03:51:23.7466730Z Entering 'third_party/mimalloc' 2025-07-24T03:51:23.7545360Z Entering 'third_party/nlohmann' 2025-07-24T03:51:23.7624610Z Entering 'third_party/onnx' 2025-07-24T03:51:23.7709600Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:51:23.7791230Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:51:23.7870280Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:51:23.7949350Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:51:23.8029450Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:51:23.8110990Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:51:23.8192350Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:51:23.8272800Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:51:23.8354250Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:51:23.8433060Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:51:23.8515090Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:51:23.8598060Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:51:23.8689110Z Entering 'third_party/pocketfft' 2025-07-24T03:51:23.8773150Z Entering 'third_party/protobuf' 2025-07-24T03:51:23.8854510Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:51:23.8934580Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:51:23.9015870Z Entering 'third_party/psimd' 2025-07-24T03:51:23.9099940Z Entering 'third_party/pthreadpool' 2025-07-24T03:51:23.9180830Z Entering 'third_party/pybind11' 2025-07-24T03:51:23.9261960Z Entering 'third_party/python-peachpy' 2025-07-24T03:51:23.9343180Z Entering 'third_party/sleef' 2025-07-24T03:51:23.9423970Z Entering 'third_party/tensorpipe' 2025-07-24T03:51:23.9503460Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:51:23.9583300Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:51:23.9663200Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:51:23.9743850Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:51:23.9821670Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:51:23.9914250Z ##[endgroup] 2025-07-24T03:51:23.9995650Z [command]/usr/bin/git log -1 --format=%H 2025-07-24T03:51:24.0056370Z 27c8ef1839e0747b36769efb192befc9308ff93c 2025-07-24T03:51:24.0133870Z ##[group]Run if [ -n "${XCODE_VERSION}" ]; then 2025-07-24T03:51:24.0134140Z if [ -n "${XCODE_VERSION}" ]; then 2025-07-24T03:51:24.0134490Z  echo "DEVELOPER_DIR=/Applications/Xcode_${XCODE_VERSION}.app/Contents/Developer" >> "${GITHUB_ENV}" 2025-07-24T03:51:24.0134800Z fi 2025-07-24T03:51:24.0149780Z shell: /bin/bash -e {0} 2025-07-24T03:51:24.0149910Z env: 2025-07-24T03:51:24.0150030Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:24.0150200Z SCCACHE_USE_GHA: false 2025-07-24T03:51:24.0150330Z XCODE_VERSION: 2025-07-24T03:51:24.0150440Z ##[endgroup] 2025-07-24T03:51:24.0439460Z ##[group]Run pytorch/test-infra/.github/actions/setup-python@main 2025-07-24T03:51:24.0439720Z with: 2025-07-24T03:51:24.0439840Z python-version: 3.12.7 2025-07-24T03:51:24.0440080Z pip-requirements-file: .github/requirements/pip-requirements-macOS.txt 2025-07-24T03:51:24.0440450Z env: 2025-07-24T03:51:24.0440590Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:24.0440770Z SCCACHE_USE_GHA: false 2025-07-24T03:51:24.0440910Z ##[endgroup] 2025-07-24T03:51:24.0852750Z Warning: HomeBrew only supports version specified by major and minor, but got 3.12.7 2025-07-24T03:51:24.8667840Z ==> Updating Homebrew... 2025-07-24T03:51:25.6193660Z Already up-to-date. 2025-07-24T03:51:26.5775180Z ##[warning]python@3.12 3.12.11 is already installed and up-to-date. To reinstall 3.12.11, run: brew reinstall python@3.12 2025-07-24T03:51:26.6087780Z Using python at /opt/homebrew/bin/python3.12 to create venv /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:27.9251170Z Installing requirements from .github/requirements/pip-requirements-macOS.txt 2025-07-24T03:51:28.2351090Z Collecting boto3==1.35.42 (from -r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-24T03:51:28.2384260Z Using cached boto3-1.35.42-py3-none-any.whl.metadata (6.7 kB) 2025-07-24T03:51:28.2984220Z Collecting cmake==3.27.* (from -r .github/requirements/pip-requirements-macOS.txt (line 2)) 2025-07-24T03:51:28.3026880Z Using cached cmake-3.27.9-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl.metadata (6.3 kB) 2025-07-24T03:51:28.3175000Z Collecting expecttest==0.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 3)) 2025-07-24T03:51:28.3199940Z Using cached expecttest-0.3.0-py3-none-any.whl.metadata (3.8 kB) 2025-07-24T03:51:28.3331430Z Collecting fbscribelogger==0.1.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:28.3368940Z Using cached fbscribelogger-0.1.7-py3-none-any.whl.metadata (684 bytes) 2025-07-24T03:51:28.3565680Z Collecting filelock==3.6.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 5)) 2025-07-24T03:51:28.3604210Z Using cached filelock-3.6.0-py3-none-any.whl.metadata (2.6 kB) 2025-07-24T03:51:28.4689950Z Collecting hypothesis==6.56.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-07-24T03:51:28.4733710Z Using cached hypothesis-6.56.4-py3-none-any.whl.metadata (6.1 kB) 2025-07-24T03:51:28.4961300Z Collecting librosa>=0.6.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:28.4987830Z Using cached librosa-0.11.0-py3-none-any.whl.metadata (8.7 kB) 2025-07-24T03:51:28.5132460Z Collecting mpmath==1.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 8)) 2025-07-24T03:51:28.5170320Z Using cached mpmath-1.3.0-py3-none-any.whl.metadata (8.6 kB) 2025-07-24T03:51:28.5353690Z Collecting networkx==2.8.7 (from -r .github/requirements/pip-requirements-macOS.txt (line 9)) 2025-07-24T03:51:28.5368030Z Using cached networkx-2.8.7-py3-none-any.whl.metadata (5.1 kB) 2025-07-24T03:51:28.5604910Z Collecting ninja==1.10.2.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 10)) 2025-07-24T03:51:28.5646330Z Using cached ninja-1.10.2.4-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl.metadata (5.3 kB) 2025-07-24T03:51:28.6268530Z Collecting numba==0.59.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-07-24T03:51:28.6307800Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.7 kB) 2025-07-24T03:51:28.7180830Z Collecting numpy==1.26.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 12)) 2025-07-24T03:51:28.7213960Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl.metadata (61 kB) 2025-07-24T03:51:28.7424310Z Collecting opt-einsum>=3.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 13)) 2025-07-24T03:51:28.7466700Z Using cached opt_einsum-3.4.0-py3-none-any.whl.metadata (6.3 kB) 2025-07-24T03:51:28.7883160Z Collecting optree==0.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 14)) 2025-07-24T03:51:28.7904780Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (47 kB) 2025-07-24T03:51:28.8088790Z Collecting packaging==23.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 15)) 2025-07-24T03:51:28.8115140Z Using cached packaging-23.1-py3-none-any.whl.metadata (3.1 kB) 2025-07-24T03:51:28.8237030Z Collecting parameterized==0.8.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 16)) 2025-07-24T03:51:28.8275030Z Using cached parameterized-0.8.1-py2.py3-none-any.whl.metadata (18 kB) 2025-07-24T03:51:28.9100990Z Collecting pillow==10.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 17)) 2025-07-24T03:51:28.9147200Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (9.2 kB) 2025-07-24T03:51:28.9966070Z Collecting protobuf==5.29.4 (from -r .github/requirements/pip-requirements-macOS.txt (line 18)) 2025-07-24T03:51:29.0003720Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl.metadata (592 bytes) 2025-07-24T03:51:29.0546040Z Collecting psutil==5.9.8 (from -r .github/requirements/pip-requirements-macOS.txt (line 19)) 2025-07-24T03:51:29.0586960Z Using cached psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl.metadata (21 kB) 2025-07-24T03:51:29.0762940Z Collecting pygments==2.15.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 20)) 2025-07-24T03:51:29.0795430Z Using cached Pygments-2.15.0-py3-none-any.whl.metadata (2.5 kB) 2025-07-24T03:51:29.0927450Z Collecting pytest-cpp==2.3.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-07-24T03:51:29.0964090Z Using cached pytest_cpp-2.3.0-py3-none-any.whl.metadata (5.4 kB) 2025-07-24T03:51:29.1069040Z Collecting pytest-flakefinder==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 22)) 2025-07-24T03:51:29.1100460Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl.metadata (3.3 kB) 2025-07-24T03:51:29.1243820Z Collecting pytest-rerunfailures==10.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 23)) 2025-07-24T03:51:29.1270020Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl.metadata (15 kB) 2025-07-24T03:51:29.1399670Z Collecting pytest-subtests==0.13.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 24)) 2025-07-24T03:51:29.1427400Z Using cached pytest_subtests-0.13.1-py3-none-any.whl.metadata (6.1 kB) 2025-07-24T03:51:29.1575600Z Collecting pytest-xdist==3.3.1 (from -r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-07-24T03:51:29.1607530Z Using cached pytest_xdist-3.3.1-py3-none-any.whl.metadata (3.1 kB) 2025-07-24T03:51:29.1850650Z Collecting pytest==7.3.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-07-24T03:51:29.1876940Z Using cached pytest-7.3.2-py3-none-any.whl.metadata (8.0 kB) 2025-07-24T03:51:29.2135050Z Collecting pyyaml==6.0.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 27)) 2025-07-24T03:51:29.2168430Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.1 kB) 2025-07-24T03:51:29.2760910Z Collecting scipy==1.12.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 28)) 2025-07-24T03:51:29.2783110Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl.metadata (217 kB) 2025-07-24T03:51:29.3677760Z Collecting setuptools==72.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 29)) 2025-07-24T03:51:29.3705420Z Using cached setuptools-72.1.0-py3-none-any.whl.metadata (6.6 kB) 2025-07-24T03:51:29.3888230Z Collecting sympy==1.13.3 (from -r .github/requirements/pip-requirements-macOS.txt (line 30)) 2025-07-24T03:51:29.3933720Z Using cached sympy-1.13.3-py3-none-any.whl.metadata (12 kB) 2025-07-24T03:51:29.4167170Z Collecting tlparse==0.3.30 (from -r .github/requirements/pip-requirements-macOS.txt (line 31)) 2025-07-24T03:51:29.4205740Z Using cached tlparse-0.3.30-py3-none-macosx_11_0_arm64.whl.metadata (1.9 kB) 2025-07-24T03:51:29.4360010Z Collecting tensorboard==2.13.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:29.4379410Z Using cached tensorboard-2.13.0-py3-none-any.whl.metadata (1.8 kB) 2025-07-24T03:51:29.4541250Z Collecting typing-extensions==4.12.2 (from -r .github/requirements/pip-requirements-macOS.txt (line 33)) 2025-07-24T03:51:29.4586750Z Using cached typing_extensions-4.12.2-py3-none-any.whl.metadata (3.0 kB) 2025-07-24T03:51:29.4711650Z Collecting unittest-xml-reporting<=3.2.0,>=2.0.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-07-24T03:51:29.4737260Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl.metadata (11 kB) 2025-07-24T03:51:29.4917850Z Collecting xdoctest==1.1.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-07-24T03:51:29.4943360Z Using cached xdoctest-1.1.0-py3-none-any.whl.metadata (37 kB) 2025-07-24T03:51:29.5438410Z Collecting z3-solver==4.12.2.0 (from -r .github/requirements/pip-requirements-macOS.txt (line 36)) 2025-07-24T03:51:29.5463530Z Using cached z3_solver-4.12.2.0-py2.py3-none-macosx_11_0_arm64.whl.metadata (697 bytes) 2025-07-24T03:51:29.7295980Z Collecting botocore<1.36.0,>=1.35.42 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-24T03:51:29.7316210Z Using cached botocore-1.35.99-py3-none-any.whl.metadata (5.7 kB) 2025-07-24T03:51:29.7447290Z Collecting jmespath<2.0.0,>=0.7.1 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-24T03:51:29.7467130Z Using cached jmespath-1.0.1-py3-none-any.whl.metadata (7.6 kB) 2025-07-24T03:51:29.7594020Z Collecting s3transfer<0.11.0,>=0.10.0 (from boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-24T03:51:29.7611090Z Using cached s3transfer-0.10.4-py3-none-any.whl.metadata (1.7 kB) 2025-07-24T03:51:30.0185090Z Collecting aiohttp<4.0.0,>=3.10.4 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:30.0208720Z Using cached aiohttp-3.12.14-cp312-cp312-macosx_11_0_arm64.whl.metadata (7.6 kB) 2025-07-24T03:51:30.0400450Z Collecting thriftpy2<0.6.0,>=0.5.2 (from fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:30.0432800Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.2 kB) 2025-07-24T03:51:30.0625070Z Collecting attrs>=19.2.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-07-24T03:51:30.0645070Z Using cached attrs-25.3.0-py3-none-any.whl.metadata (10 kB) 2025-07-24T03:51:30.0815230Z Collecting sortedcontainers<3.0.0,>=2.1.0 (from hypothesis==6.56.4->-r .github/requirements/pip-requirements-macOS.txt (line 6)) 2025-07-24T03:51:30.0839190Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl.metadata (10 kB) 2025-07-24T03:51:30.1172700Z Collecting llvmlite<0.43,>=0.42.0dev0 (from numba==0.59.0->-r .github/requirements/pip-requirements-macOS.txt (line 11)) 2025-07-24T03:51:30.1188360Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.8 kB) 2025-07-24T03:51:30.1446100Z Collecting colorama (from pytest-cpp==2.3.0->-r .github/requirements/pip-requirements-macOS.txt (line 21)) 2025-07-24T03:51:30.1460380Z Using cached colorama-0.4.6-py2.py3-none-any.whl.metadata (17 kB) 2025-07-24T03:51:30.1727300Z Collecting execnet>=1.1 (from pytest-xdist==3.3.1->-r .github/requirements/pip-requirements-macOS.txt (line 25)) 2025-07-24T03:51:30.1749390Z Using cached execnet-2.1.1-py3-none-any.whl.metadata (2.9 kB) 2025-07-24T03:51:30.1891940Z Collecting iniconfig (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-07-24T03:51:30.1916480Z Using cached iniconfig-2.1.0-py3-none-any.whl.metadata (2.7 kB) 2025-07-24T03:51:30.2041430Z Collecting pluggy<2.0,>=0.12 (from pytest==7.3.2->-r .github/requirements/pip-requirements-macOS.txt (line 26)) 2025-07-24T03:51:30.2076950Z Using cached pluggy-1.6.0-py3-none-any.whl.metadata (4.8 kB) 2025-07-24T03:51:30.2290880Z Collecting absl-py>=0.4 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:30.2305340Z Using cached absl_py-2.3.1-py3-none-any.whl.metadata (3.3 kB) 2025-07-24T03:51:30.4483900Z Collecting grpcio>=1.48.2 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:30.4510220Z Using cached grpcio-1.73.1-cp312-cp312-macosx_11_0_universal2.whl.metadata (3.8 kB) 2025-07-24T03:51:30.4791060Z Collecting google-auth<3,>=1.6.3 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:30.4818310Z Using cached google_auth-2.40.3-py2.py3-none-any.whl.metadata (6.2 kB) 2025-07-24T03:51:30.4956890Z Collecting google-auth-oauthlib<1.1,>=0.5 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:30.4974190Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl.metadata (2.7 kB) 2025-07-24T03:51:30.5505150Z Collecting markdown>=2.6.8 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:30.5520980Z Using cached markdown-3.8.2-py3-none-any.whl.metadata (5.1 kB) 2025-07-24T03:51:30.5809680Z Collecting requests<3,>=2.21.0 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:30.5832880Z Using cached requests-2.32.4-py3-none-any.whl.metadata (4.9 kB) 2025-07-24T03:51:30.6108970Z Collecting tensorboard-data-server<0.8.0,>=0.7.0 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:30.6127370Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl.metadata (1.1 kB) 2025-07-24T03:51:30.6291080Z Collecting werkzeug>=1.0.1 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:30.6311150Z Using cached werkzeug-3.1.3-py3-none-any.whl.metadata (3.7 kB) 2025-07-24T03:51:30.6458280Z Collecting wheel>=0.26 (from tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:30.6477090Z Using cached wheel-0.45.1-py3-none-any.whl.metadata (2.3 kB) 2025-07-24T03:51:30.6589520Z Collecting six (from xdoctest==1.1.0->-r .github/requirements/pip-requirements-macOS.txt (line 35)) 2025-07-24T03:51:30.6608510Z Using cached six-1.17.0-py2.py3-none-any.whl.metadata (1.7 kB) 2025-07-24T03:51:30.7505020Z Collecting lxml (from unittest-xml-reporting<=3.2.0,>=2.0.0->-r .github/requirements/pip-requirements-macOS.txt (line 34)) 2025-07-24T03:51:30.7528580Z Using cached lxml-6.0.0-cp312-cp312-macosx_10_13_universal2.whl.metadata (6.6 kB) 2025-07-24T03:51:30.7673270Z Collecting aiohappyeyeballs>=2.5.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:30.7699460Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl.metadata (5.9 kB) 2025-07-24T03:51:30.7793160Z Collecting aiosignal>=1.4.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:30.7830740Z Using cached aiosignal-1.4.0-py3-none-any.whl.metadata (3.7 kB) 2025-07-24T03:51:30.8217750Z Collecting frozenlist>=1.1.1 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:30.8262960Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl.metadata (18 kB) 2025-07-24T03:51:30.9376830Z Collecting multidict<7.0,>=4.5 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:30.9401580Z Using cached multidict-6.6.3-cp312-cp312-macosx_11_0_arm64.whl.metadata (5.3 kB) 2025-07-24T03:51:30.9673930Z Collecting propcache>=0.2.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:30.9687850Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (12 kB) 2025-07-24T03:51:31.0908090Z Collecting yarl<2.0,>=1.17.0 (from aiohttp<4.0.0,>=3.10.4->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:31.0931190Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (73 kB) 2025-07-24T03:51:31.1102420Z Collecting python-dateutil<3.0.0,>=2.1 (from botocore<1.36.0,>=1.35.42->boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-24T03:51:31.1116840Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl.metadata (8.4 kB) 2025-07-24T03:51:31.1779640Z Collecting urllib3!=2.2.0,<3,>=1.25.4 (from botocore<1.36.0,>=1.35.42->boto3==1.35.42->-r .github/requirements/pip-requirements-macOS.txt (line 1)) 2025-07-24T03:51:31.1806730Z Using cached urllib3-2.5.0-py3-none-any.whl.metadata (6.5 kB) 2025-07-24T03:51:31.1971050Z Collecting cachetools<6.0,>=2.0.0 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.1991240Z Using cached cachetools-5.5.2-py3-none-any.whl.metadata (5.4 kB) 2025-07-24T03:51:31.2129200Z Collecting pyasn1-modules>=0.2.1 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.2154820Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl.metadata (3.5 kB) 2025-07-24T03:51:31.2270250Z Collecting rsa<5,>=3.1.4 (from google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.2296180Z Using cached rsa-4.9.1-py3-none-any.whl.metadata (5.6 kB) 2025-07-24T03:51:31.2513970Z Collecting requests-oauthlib>=0.7.0 (from google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.2551450Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl.metadata (11 kB) 2025-07-24T03:51:31.3034350Z Collecting charset_normalizer<4,>=2 (from requests<3,>=2.21.0->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.3061280Z Using cached charset_normalizer-3.4.2-cp312-cp312-macosx_10_13_universal2.whl.metadata (35 kB) 2025-07-24T03:51:31.3212800Z Collecting idna<4,>=2.5 (from requests<3,>=2.21.0->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.3227120Z Using cached idna-3.10-py3-none-any.whl.metadata (10 kB) 2025-07-24T03:51:31.3437430Z Collecting certifi>=2017.4.17 (from requests<3,>=2.21.0->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.3450860Z Using cached certifi-2025.7.14-py3-none-any.whl.metadata (2.4 kB) 2025-07-24T03:51:31.3640320Z Collecting pyasn1>=0.1.3 (from rsa<5,>=3.1.4->google-auth<3,>=1.6.3->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.3676890Z Using cached pyasn1-0.6.1-py3-none-any.whl.metadata (8.4 kB) 2025-07-24T03:51:31.4399890Z Collecting ply<4.0,>=3.4 (from thriftpy2<0.6.0,>=0.5.2->fbscribelogger==0.1.7->-r .github/requirements/pip-requirements-macOS.txt (line 4)) 2025-07-24T03:51:31.4428990Z Using cached ply-3.11-py2.py3-none-any.whl.metadata (844 bytes) 2025-07-24T03:51:31.4691060Z Collecting audioread>=2.1.9 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.4704040Z Using cached audioread-3.0.1-py3-none-any.whl.metadata (8.4 kB) 2025-07-24T03:51:31.5216730Z Collecting scikit-learn>=1.1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.5237150Z Using cached scikit_learn-1.7.1-cp312-cp312-macosx_12_0_arm64.whl.metadata (11 kB) 2025-07-24T03:51:31.5430350Z Collecting joblib>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.5450960Z Using cached joblib-1.5.1-py3-none-any.whl.metadata (5.6 kB) 2025-07-24T03:51:31.5593370Z Collecting decorator>=4.3.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.5607430Z Using cached decorator-5.2.1-py3-none-any.whl.metadata (3.9 kB) 2025-07-24T03:51:31.5738290Z Collecting soundfile>=0.12.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.5753050Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl.metadata (16 kB) 2025-07-24T03:51:31.5927410Z Collecting pooch>=1.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.5941850Z Using cached pooch-1.8.2-py3-none-any.whl.metadata (10 kB) 2025-07-24T03:51:31.6317380Z Collecting soxr>=0.3.2 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.6331640Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl.metadata (5.6 kB) 2025-07-24T03:51:31.6453070Z Collecting lazy_loader>=0.1 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.6467270Z Using cached lazy_loader-0.4-py3-none-any.whl.metadata (7.6 kB) 2025-07-24T03:51:31.6851040Z Collecting msgpack>=1.0 (from librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.6871500Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (8.4 kB) 2025-07-24T03:51:31.7181300Z Collecting platformdirs>=2.5.0 (from pooch>=1.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.7200660Z Using cached platformdirs-4.3.8-py3-none-any.whl.metadata (12 kB) 2025-07-24T03:51:31.7452730Z Collecting oauthlib>=3.0.0 (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.7478710Z Using cached oauthlib-3.3.1-py3-none-any.whl.metadata (7.9 kB) 2025-07-24T03:51:31.7705570Z Collecting threadpoolctl>=3.1.0 (from scikit-learn>=1.1.0->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.7725700Z Using cached threadpoolctl-3.6.0-py3-none-any.whl.metadata (13 kB) 2025-07-24T03:51:31.8256430Z Collecting cffi>=1.0 (from soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.8271800Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (1.5 kB) 2025-07-24T03:51:31.8397660Z Collecting pycparser (from cffi>=1.0->soundfile>=0.12.1->librosa>=0.6.2->-r .github/requirements/pip-requirements-macOS.txt (line 7)) 2025-07-24T03:51:31.8419820Z Using cached pycparser-2.22-py3-none-any.whl.metadata (943 bytes) 2025-07-24T03:51:31.8741070Z Collecting MarkupSafe>=2.1.1 (from werkzeug>=1.0.1->tensorboard==2.13.0->-r .github/requirements/pip-requirements-macOS.txt (line 32)) 2025-07-24T03:51:31.8755770Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl.metadata (4.0 kB) 2025-07-24T03:51:31.8878900Z Using cached boto3-1.35.42-py3-none-any.whl (139 kB) 2025-07-24T03:51:31.8909880Z Using cached expecttest-0.3.0-py3-none-any.whl (8.2 kB) 2025-07-24T03:51:31.8929530Z Using cached fbscribelogger-0.1.7-py3-none-any.whl (6.9 kB) 2025-07-24T03:51:31.8954620Z Using cached typing_extensions-4.12.2-py3-none-any.whl (37 kB) 2025-07-24T03:51:31.8980270Z Using cached filelock-3.6.0-py3-none-any.whl (10.0 kB) 2025-07-24T03:51:31.8999650Z Using cached hypothesis-6.56.4-py3-none-any.whl (395 kB) 2025-07-24T03:51:31.9044170Z Using cached mpmath-1.3.0-py3-none-any.whl (536 kB) 2025-07-24T03:51:31.9089480Z Using cached networkx-2.8.7-py3-none-any.whl (2.0 MB) 2025-07-24T03:51:31.9179290Z Using cached ninja-1.10.2.4-py2.py3-none-macosx_10_9_universal2.macosx_10_9_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (231 kB) 2025-07-24T03:51:31.9211920Z Using cached numba-0.59.0-cp312-cp312-macosx_11_0_arm64.whl (2.6 MB) 2025-07-24T03:51:31.9331300Z Using cached numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl (13.7 MB) 2025-07-24T03:51:31.9631950Z Using cached optree-0.13.0-cp312-cp312-macosx_11_0_arm64.whl (305 kB) 2025-07-24T03:51:31.9663670Z Using cached packaging-23.1-py3-none-any.whl (48 kB) 2025-07-24T03:51:31.9680180Z Using cached parameterized-0.8.1-py2.py3-none-any.whl (26 kB) 2025-07-24T03:51:31.9696350Z Using cached pillow-10.3.0-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB) 2025-07-24T03:51:31.9812430Z Using cached protobuf-5.29.4-cp38-abi3-macosx_10_9_universal2.whl (417 kB) 2025-07-24T03:51:31.9844780Z Using cached psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl (249 kB) 2025-07-24T03:51:31.9870520Z Using cached Pygments-2.15.0-py3-none-any.whl (1.1 MB) 2025-07-24T03:51:31.9923450Z Using cached pytest_cpp-2.3.0-py3-none-any.whl (14 kB) 2025-07-24T03:51:31.9939890Z Using cached pytest_flakefinder-1.1.0-py2.py3-none-any.whl (4.6 kB) 2025-07-24T03:51:31.9958440Z Using cached pytest_rerunfailures-10.3-py3-none-any.whl (11 kB) 2025-07-24T03:51:31.9974190Z Using cached pytest_subtests-0.13.1-py3-none-any.whl (8.0 kB) 2025-07-24T03:51:31.9996910Z Using cached pytest_xdist-3.3.1-py3-none-any.whl (41 kB) 2025-07-24T03:51:32.0014810Z Using cached pytest-7.3.2-py3-none-any.whl (320 kB) 2025-07-24T03:51:32.0043110Z Using cached PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl (173 kB) 2025-07-24T03:51:32.0062850Z Using cached scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl (31.4 MB) 2025-07-24T03:51:32.0654450Z Using cached setuptools-72.1.0-py3-none-any.whl (2.3 MB) 2025-07-24T03:51:32.0758320Z Using cached sympy-1.13.3-py3-none-any.whl (6.2 MB) 2025-07-24T03:51:32.0933750Z Using cached tlparse-0.3.30-py3-none-macosx_11_0_arm64.whl (2.0 MB) 2025-07-24T03:51:32.1011750Z Using cached tensorboard-2.13.0-py3-none-any.whl (5.6 MB) 2025-07-24T03:51:32.1174090Z Using cached xdoctest-1.1.0-py3-none-any.whl (135 kB) 2025-07-24T03:51:32.1194150Z Using cached z3_solver-4.12.2.0-py2.py3-none-macosx_11_0_arm64.whl (26.4 MB) 2025-07-24T03:51:32.1696500Z Using cached cmake-3.27.9-py2.py3-none-macosx_10_10_universal2.macosx_10_10_x86_64.macosx_11_0_arm64.macosx_11_0_universal2.whl (47.4 MB) 2025-07-24T03:51:32.5070800Z Using cached unittest_xml_reporting-3.2.0-py2.py3-none-any.whl (20 kB) 2025-07-24T03:51:32.5149160Z Using cached aiohttp-3.12.14-cp312-cp312-macosx_11_0_arm64.whl (468 kB) 2025-07-24T03:51:32.5187600Z Using cached botocore-1.35.99-py3-none-any.whl (13.3 MB) 2025-07-24T03:51:32.6659430Z Using cached google_auth-2.40.3-py2.py3-none-any.whl (216 kB) 2025-07-24T03:51:32.6708030Z Using cached cachetools-5.5.2-py3-none-any.whl (10 kB) 2025-07-24T03:51:32.6739530Z Using cached google_auth_oauthlib-1.0.0-py2.py3-none-any.whl (18 kB) 2025-07-24T03:51:32.6763100Z Using cached jmespath-1.0.1-py3-none-any.whl (20 kB) 2025-07-24T03:51:32.6780640Z Using cached llvmlite-0.42.0-cp312-cp312-macosx_11_0_arm64.whl (28.8 MB) 2025-07-24T03:51:33.0085680Z Using cached multidict-6.6.3-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-07-24T03:51:33.0107720Z Using cached pluggy-1.6.0-py3-none-any.whl (20 kB) 2025-07-24T03:51:33.0127900Z Using cached python_dateutil-2.9.0.post0-py2.py3-none-any.whl (229 kB) 2025-07-24T03:51:33.0155510Z Using cached requests-2.32.4-py3-none-any.whl (64 kB) 2025-07-24T03:51:33.0174740Z Using cached charset_normalizer-3.4.2-cp312-cp312-macosx_10_13_universal2.whl (199 kB) 2025-07-24T03:51:33.0208650Z Using cached idna-3.10-py3-none-any.whl (70 kB) 2025-07-24T03:51:33.0232230Z Using cached rsa-4.9.1-py3-none-any.whl (34 kB) 2025-07-24T03:51:33.0249140Z Using cached s3transfer-0.10.4-py3-none-any.whl (83 kB) 2025-07-24T03:51:33.0269890Z Using cached sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) 2025-07-24T03:51:33.0286340Z Using cached tensorboard_data_server-0.7.2-py3-none-any.whl (2.4 kB) 2025-07-24T03:51:33.0300370Z Using cached thriftpy2-0.5.3-cp312-cp312-macosx_11_0_arm64.whl (833 kB) 2025-07-24T03:51:33.0341110Z Using cached ply-3.11-py2.py3-none-any.whl (49 kB) 2025-07-24T03:51:33.0361540Z Using cached six-1.17.0-py2.py3-none-any.whl (11 kB) 2025-07-24T03:51:33.0376840Z Using cached urllib3-2.5.0-py3-none-any.whl (129 kB) 2025-07-24T03:51:33.0399580Z Using cached yarl-1.20.1-cp312-cp312-macosx_11_0_arm64.whl (89 kB) 2025-07-24T03:51:33.0416600Z Using cached librosa-0.11.0-py3-none-any.whl (260 kB) 2025-07-24T03:51:33.0447680Z Using cached opt_einsum-3.4.0-py3-none-any.whl (71 kB) 2025-07-24T03:51:33.0471720Z Using cached absl_py-2.3.1-py3-none-any.whl (135 kB) 2025-07-24T03:51:33.0494170Z Using cached aiohappyeyeballs-2.6.1-py3-none-any.whl (15 kB) 2025-07-24T03:51:33.0513040Z Using cached aiosignal-1.4.0-py3-none-any.whl (7.5 kB) 2025-07-24T03:51:33.0532140Z Using cached attrs-25.3.0-py3-none-any.whl (63 kB) 2025-07-24T03:51:33.0549360Z Using cached audioread-3.0.1-py3-none-any.whl (23 kB) 2025-07-24T03:51:33.0564580Z Using cached certifi-2025.7.14-py3-none-any.whl (162 kB) 2025-07-24T03:51:33.0584740Z Using cached decorator-5.2.1-py3-none-any.whl (9.2 kB) 2025-07-24T03:51:33.0603240Z Using cached execnet-2.1.1-py3-none-any.whl (40 kB) 2025-07-24T03:51:33.0618810Z Using cached frozenlist-1.7.0-cp312-cp312-macosx_11_0_arm64.whl (46 kB) 2025-07-24T03:51:33.0640750Z Using cached grpcio-1.73.1-cp312-cp312-macosx_11_0_universal2.whl (10.6 MB) 2025-07-24T03:51:33.1694540Z Using cached joblib-1.5.1-py3-none-any.whl (307 kB) 2025-07-24T03:51:33.1755500Z Using cached lazy_loader-0.4-py3-none-any.whl (12 kB) 2025-07-24T03:51:33.1775760Z Using cached markdown-3.8.2-py3-none-any.whl (106 kB) 2025-07-24T03:51:33.1795710Z Using cached msgpack-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (79 kB) 2025-07-24T03:51:33.1812490Z Using cached pooch-1.8.2-py3-none-any.whl (64 kB) 2025-07-24T03:51:33.1833450Z Using cached platformdirs-4.3.8-py3-none-any.whl (18 kB) 2025-07-24T03:51:33.1849970Z Using cached propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (43 kB) 2025-07-24T03:51:33.1873490Z Using cached pyasn1-0.6.1-py3-none-any.whl (83 kB) 2025-07-24T03:51:33.1890620Z Using cached pyasn1_modules-0.4.2-py3-none-any.whl (181 kB) 2025-07-24T03:51:33.1910870Z Using cached requests_oauthlib-2.0.0-py2.py3-none-any.whl (24 kB) 2025-07-24T03:51:33.1926120Z Using cached oauthlib-3.3.1-py3-none-any.whl (160 kB) 2025-07-24T03:51:33.1947870Z Using cached scikit_learn-1.7.1-cp312-cp312-macosx_12_0_arm64.whl (8.6 MB) 2025-07-24T03:51:33.2870550Z Using cached soundfile-0.13.1-py2.py3-none-macosx_11_0_arm64.whl (1.1 MB) 2025-07-24T03:51:33.2991720Z Using cached cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl (178 kB) 2025-07-24T03:51:33.3033350Z Using cached soxr-0.5.0.post1-cp312-abi3-macosx_11_0_arm64.whl (156 kB) 2025-07-24T03:51:33.3057240Z Using cached threadpoolctl-3.6.0-py3-none-any.whl (18 kB) 2025-07-24T03:51:33.3075090Z Using cached werkzeug-3.1.3-py3-none-any.whl (224 kB) 2025-07-24T03:51:33.3100150Z Using cached MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl (12 kB) 2025-07-24T03:51:33.3121830Z Using cached wheel-0.45.1-py3-none-any.whl (72 kB) 2025-07-24T03:51:33.3141610Z Using cached colorama-0.4.6-py2.py3-none-any.whl (25 kB) 2025-07-24T03:51:33.3163810Z Using cached iniconfig-2.1.0-py3-none-any.whl (6.0 kB) 2025-07-24T03:51:33.3177850Z Using cached lxml-6.0.0-cp312-cp312-macosx_10_13_universal2.whl (8.4 MB) 2025-07-24T03:51:33.4074940Z Using cached pycparser-2.22-py3-none-any.whl (117 kB) 2025-07-24T03:51:33.6872630Z Installing collected packages: z3-solver, sortedcontainers, ply, parameterized, ninja, mpmath, cmake, wheel, urllib3, typing-extensions, tlparse, threadpoolctl, tensorboard-data-server, sympy, six, setuptools, pyyaml, pygments, pycparser, pyasn1, psutil, protobuf, propcache, pluggy, platformdirs, pillow, packaging, opt-einsum, oauthlib, numpy, networkx, multidict, msgpack, MarkupSafe, markdown, lxml, llvmlite, joblib, jmespath, iniconfig, idna, grpcio, frozenlist, filelock, expecttest, execnet, decorator, colorama, charset_normalizer, certifi, cachetools, audioread, attrs, aiohappyeyeballs, absl-py, yarl, xdoctest, werkzeug, unittest-xml-reporting, thriftpy2, soxr, scipy, rsa, requests, python-dateutil, pytest, pyasn1-modules, optree, numba, lazy_loader, hypothesis, cffi, aiosignal, soundfile, scikit-learn, requests-oauthlib, pytest-xdist, pytest-subtests, pytest-rerunfailures, pytest-flakefinder, pytest-cpp, pooch, google-auth, botocore, aiohttp, s3transfer, librosa, google-auth-oauthlib, fbscribelogger, tensorboard, boto3 2025-07-24T03:51:47.8962040Z 2025-07-24T03:51:47.9001120Z Successfully installed MarkupSafe-3.0.2 absl-py-2.3.1 aiohappyeyeballs-2.6.1 aiohttp-3.12.14 aiosignal-1.4.0 attrs-25.3.0 audioread-3.0.1 boto3-1.35.42 botocore-1.35.99 cachetools-5.5.2 certifi-2025.7.14 cffi-1.17.1 charset_normalizer-3.4.2 cmake-3.27.9 colorama-0.4.6 decorator-5.2.1 execnet-2.1.1 expecttest-0.3.0 fbscribelogger-0.1.7 filelock-3.6.0 frozenlist-1.7.0 google-auth-2.40.3 google-auth-oauthlib-1.0.0 grpcio-1.73.1 hypothesis-6.56.4 idna-3.10 iniconfig-2.1.0 jmespath-1.0.1 joblib-1.5.1 lazy_loader-0.4 librosa-0.11.0 llvmlite-0.42.0 lxml-6.0.0 markdown-3.8.2 mpmath-1.3.0 msgpack-1.1.1 multidict-6.6.3 networkx-2.8.7 ninja-1.10.2.4 numba-0.59.0 numpy-1.26.4 oauthlib-3.3.1 opt-einsum-3.4.0 optree-0.13.0 packaging-23.1 parameterized-0.8.1 pillow-10.3.0 platformdirs-4.3.8 pluggy-1.6.0 ply-3.11 pooch-1.8.2 propcache-0.3.2 protobuf-5.29.4 psutil-5.9.8 pyasn1-0.6.1 pyasn1-modules-0.4.2 pycparser-2.22 pygments-2.15.0 pytest-7.3.2 pytest-cpp-2.3.0 pytest-flakefinder-1.1.0 pytest-rerunfailures-10.3 pytest-subtests-0.13.1 pytest-xdist-3.3.1 python-dateutil-2.9.0.post0 pyyaml-6.0.2 requests-2.32.4 requests-oauthlib-2.0.0 rsa-4.9.1 s3transfer-0.10.4 scikit-learn-1.7.1 scipy-1.12.0 setuptools-72.1.0 six-1.17.0 sortedcontainers-2.4.0 soundfile-0.13.1 soxr-0.5.0.post1 sympy-1.13.3 tensorboard-2.13.0 tensorboard-data-server-0.7.2 threadpoolctl-3.6.0 thriftpy2-0.5.3 tlparse-0.3.30 typing-extensions-4.12.2 unittest-xml-reporting-3.2.0 urllib3-2.5.0 werkzeug-3.1.3 wheel-0.45.1 xdoctest-1.1.0 yarl-1.20.1 z3-solver-4.12.2.0 2025-07-24T03:51:48.5354260Z ##[group]Run nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e 2025-07-24T03:51:48.5354520Z with: 2025-07-24T03:51:48.5354630Z timeout_minutes: 5 2025-07-24T03:51:48.5354750Z max_attempts: 3 2025-07-24T03:51:48.5354880Z retry_wait_seconds: 90 2025-07-24T03:51:48.5357130Z command: set -ex DOWNLOAD_SCCACHE=0 SCCACHE_VERSION="0.4.1" LOCAL_PATH="/usr/local/bin" if [ ! -f "${LOCAL_PATH}/sccache" ]; then DOWNLOAD_SCCACHE=1 else LOCAL_VERSION=$("${LOCAL_PATH}/sccache" --version | cut -d" " -f2) if [ "${LOCAL_VERSION}" != "${SCCACHE_VERSION}" ]; then DOWNLOAD_SCCACHE=1 fi fi if [ "${DOWNLOAD_SCCACHE}" == "1" ]; then sudo curl --retry 3 --retry-all-errors "https://s3.amazonaws.com/ossci-macos/sccache/sccache-v0.4.1-${RUNNER_ARCH}" --output "${LOCAL_PATH}/sccache" sudo chmod +x "${LOCAL_PATH}/sccache" fi if [[ "${SCCACHE_USE_GHA}" == "true" ]]; then echo "ACTIONS_CACHE_URL=${ACTIONS_CACHE_URL}" >> "${GITHUB_ENV}" echo "ACTIONS_RUNTIME_TOKEN=${ACTIONS_RUNTIME_TOKEN}" >> "${GITHUB_ENV}" echo "SCCACHE_GHA_ENABLED=on" >> "${GITHUB_ENV}" else # The runner has access to the S3 bucket via IAM profile without the need # for any credential echo "SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2" >> "${GITHUB_ENV}" echo "SCCACHE_S3_KEY_PREFIX=${GITHUB_WORKFLOW}" >> "${GITHUB_ENV}" fi # This is needed so that later build script could find sccache (which sccache) echo "${LOCAL_PATH}" >> $GITHUB_PATH 2025-07-24T03:51:48.5359490Z polling_interval_seconds: 1 2025-07-24T03:51:48.5359650Z warning_on_retry: true 2025-07-24T03:51:48.5359780Z continue_on_error: false 2025-07-24T03:51:48.5359910Z env: 2025-07-24T03:51:48.5360020Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:48.5360190Z SCCACHE_USE_GHA: false 2025-07-24T03:51:48.5360380Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:48.5360600Z ##[endgroup] 2025-07-24T03:51:48.6115410Z + DOWNLOAD_SCCACHE=0 2025-07-24T03:51:48.6115690Z + SCCACHE_VERSION=0.4.1 2025-07-24T03:51:48.6115900Z + LOCAL_PATH=/usr/local/bin 2025-07-24T03:51:48.6116150Z + '[' '!' -f /usr/local/bin/sccache ']' 2025-07-24T03:51:48.6120080Z ++ /usr/local/bin/sccache --version 2025-07-24T03:51:48.6121370Z ++ cut '-d ' -f2 2025-07-24T03:51:48.6651000Z + LOCAL_VERSION=0.4.1 2025-07-24T03:51:48.6651220Z + '[' 0.4.1 '!=' 0.4.1 ']' 2025-07-24T03:51:48.6651420Z + '[' 0 == 1 ']' 2025-07-24T03:51:48.6651580Z + [[ false == \t\r\u\e ]] 2025-07-24T03:51:48.6651790Z + echo SCCACHE_BUCKET=ossci-compiler-cache-circleci-v2 2025-07-24T03:51:48.6652860Z + echo SCCACHE_S3_KEY_PREFIX=trunk 2025-07-24T03:51:48.6660080Z + echo /usr/local/bin 2025-07-24T03:51:49.6130760Z Command completed after 1 attempt(s). 2025-07-24T03:51:49.6232110Z Prepare all required actions 2025-07-24T03:51:49.6299570Z ##[group]Run ./.github/actions/get-workflow-job-id 2025-07-24T03:51:49.6300000Z with: 2025-07-24T03:51:49.6300550Z github-token: *** 2025-07-24T03:51:49.6300840Z env: 2025-07-24T03:51:49.6301110Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:49.6301480Z SCCACHE_USE_GHA: false 2025-07-24T03:51:49.6301950Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:49.6302520Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:51:49.6302960Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:49.6303280Z ##[endgroup] 2025-07-24T03:51:49.6326050Z ##[group]Run set -eux 2025-07-24T03:51:49.6326390Z set -eux 2025-07-24T03:51:49.6326940Z python3 .github/scripts/get_workflow_job_id.py "${GITHUB_RUN_ID}" "${RUNNER_NAME}" 2025-07-24T03:51:49.6362020Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:49.6362400Z env: 2025-07-24T03:51:49.6362680Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:49.6363030Z SCCACHE_USE_GHA: false 2025-07-24T03:51:49.6363440Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:49.6363940Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:51:49.6364340Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:49.6364770Z GITHUB_TOKEN: *** 2025-07-24T03:51:49.6365040Z ##[endgroup] 2025-07-24T03:51:49.6702600Z + python3 .github/scripts/get_workflow_job_id.py 16487210679 i-0b95bf35f8faa9da2 2025-07-24T03:51:50.1677670Z Setting output job-id=46614177172 2025-07-24T03:51:50.1679910Z Setting output job-name=macos-py3-arm64 / build 2025-07-24T03:51:50.2124710Z Prepare all required actions 2025-07-24T03:51:50.2125170Z Getting action download info 2025-07-24T03:51:50.3104860Z Download action repository 'nick-fields/retry@v3.0.0' (SHA:7152eba30c6575329ac0576536151aca5a72780e) 2025-07-24T03:51:50.5871700Z ##[group]Run ./.github/actions/filter-test-configs 2025-07-24T03:51:50.5871920Z with: 2025-07-24T03:51:50.5872210Z github-token: *** 2025-07-24T03:51:50.5873130Z test-matrix: { include: [ { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-13" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, ]} 2025-07-24T03:51:50.5874100Z job-name: macos-py3-arm64 / build 2025-07-24T03:51:50.5874280Z env: 2025-07-24T03:51:50.5874450Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:50.5874640Z SCCACHE_USE_GHA: false 2025-07-24T03:51:50.5874860Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:50.5875160Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:51:50.5875390Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:50.5875550Z ##[endgroup] 2025-07-24T03:51:50.5904090Z ##[group]Run nick-fields/retry@v3.0.0 2025-07-24T03:51:50.5904280Z with: 2025-07-24T03:51:50.5904390Z shell: bash 2025-07-24T03:51:50.5904520Z timeout_minutes: 10 2025-07-24T03:51:50.5904650Z max_attempts: 5 2025-07-24T03:51:50.5904800Z retry_wait_seconds: 30 2025-07-24T03:51:50.5905280Z command: set -eux # PyYAML 6.0 doesn't work with MacOS x86 anymore # This must run on Python-3.7 (AmazonLinux2) so can't use request=3.32.2 python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-07-24T03:51:50.5905760Z polling_interval_seconds: 1 2025-07-24T03:51:50.5905960Z warning_on_retry: true 2025-07-24T03:51:50.5906110Z continue_on_error: false 2025-07-24T03:51:50.5906260Z env: 2025-07-24T03:51:50.5906390Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:50.5906740Z SCCACHE_USE_GHA: false 2025-07-24T03:51:50.5906960Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:50.5907250Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:51:50.5907470Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:50.5907710Z GITHUB_TOKEN: *** 2025-07-24T03:51:50.5907860Z ##[endgroup] 2025-07-24T03:51:50.6674000Z + python3 -m pip install requests==2.27.1 pyyaml==6.0.1 2025-07-24T03:51:50.8663150Z Collecting requests==2.27.1 2025-07-24T03:51:50.8697870Z Using cached requests-2.27.1-py2.py3-none-any.whl.metadata (5.0 kB) 2025-07-24T03:51:50.8895180Z Collecting pyyaml==6.0.1 2025-07-24T03:51:50.8917000Z Using cached PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl.metadata (2.1 kB) 2025-07-24T03:51:50.9077170Z Collecting urllib3<1.27,>=1.21.1 (from requests==2.27.1) 2025-07-24T03:51:50.9104430Z Using cached urllib3-1.26.20-py2.py3-none-any.whl.metadata (50 kB) 2025-07-24T03:51:50.9178910Z Requirement already satisfied: certifi>=2017.4.17 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/lib/python3.12/site-packages (from requests==2.27.1) (2025.7.14) 2025-07-24T03:51:50.9574480Z Collecting charset-normalizer~=2.0.0 (from requests==2.27.1) 2025-07-24T03:51:50.9591040Z Using cached charset_normalizer-2.0.12-py3-none-any.whl.metadata (11 kB) 2025-07-24T03:51:50.9635380Z Requirement already satisfied: idna<4,>=2.5 in /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/lib/python3.12/site-packages (from requests==2.27.1) (3.10) 2025-07-24T03:51:50.9675610Z Using cached requests-2.27.1-py2.py3-none-any.whl (63 kB) 2025-07-24T03:51:50.9697870Z Using cached PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl (165 kB) 2025-07-24T03:51:50.9722990Z Using cached charset_normalizer-2.0.12-py3-none-any.whl (39 kB) 2025-07-24T03:51:50.9743370Z Using cached urllib3-1.26.20-py2.py3-none-any.whl (144 kB) 2025-07-24T03:51:51.0443100Z Installing collected packages: urllib3, pyyaml, charset-normalizer, requests 2025-07-24T03:51:51.0445520Z Attempting uninstall: urllib3 2025-07-24T03:51:51.0457170Z Found existing installation: urllib3 2.5.0 2025-07-24T03:51:51.0480640Z Uninstalling urllib3-2.5.0: 2025-07-24T03:51:51.0489220Z Successfully uninstalled urllib3-2.5.0 2025-07-24T03:51:51.1004860Z Attempting uninstall: pyyaml 2025-07-24T03:51:51.1026480Z Found existing installation: PyYAML 6.0.2 2025-07-24T03:51:51.1042150Z Uninstalling PyYAML-6.0.2: 2025-07-24T03:51:51.1049180Z Successfully uninstalled PyYAML-6.0.2 2025-07-24T03:51:51.1365810Z Attempting uninstall: charset-normalizer 2025-07-24T03:51:51.1389210Z Found existing installation: charset-normalizer 3.4.2 2025-07-24T03:51:51.1407630Z Uninstalling charset-normalizer-3.4.2: 2025-07-24T03:51:51.1429600Z Successfully uninstalled charset-normalizer-3.4.2 2025-07-24T03:51:51.1633070Z Attempting uninstall: requests 2025-07-24T03:51:51.1649920Z Found existing installation: requests 2.32.4 2025-07-24T03:51:51.1665480Z Uninstalling requests-2.32.4: 2025-07-24T03:51:51.1671220Z Successfully uninstalled requests-2.32.4 2025-07-24T03:51:51.1906300Z 2025-07-24T03:51:51.1940980Z Successfully installed charset-normalizer-2.0.12 pyyaml-6.0.1 requests-2.27.1 urllib3-1.26.20 2025-07-24T03:51:51.6696510Z Command completed after 1 attempt(s). 2025-07-24T03:51:51.6805290Z ##[group]Run set -x 2025-07-24T03:51:51.6805920Z set -x 2025-07-24T03:51:51.6806300Z  2025-07-24T03:51:51.6806980Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-24T03:51:51.6807780Z # in runner workspace 2025-07-24T03:51:51.6808500Z python3 "${GITHUB_ACTION_PATH}/../../scripts/parse_ref.py" 2025-07-24T03:51:51.6863570Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:51.6864260Z env: 2025-07-24T03:51:51.6864730Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:51.6865250Z SCCACHE_USE_GHA: false 2025-07-24T03:51:51.6865890Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:51.6867180Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:51:51.6867840Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:51.6868370Z ##[endgroup] 2025-07-24T03:51:51.7522680Z + python3 /Users/ec2-user/runner/_work/pytorch/pytorch/./.github/actions/filter-test-configs/../../scripts/parse_ref.py 2025-07-24T03:51:51.7696740Z Setting output tag=ciflow/trunk/149961 2025-07-24T03:51:51.7749730Z ##[group]Run echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-24T03:51:51.7750000Z echo "Workflow: ${GITHUB_WORKFLOW}" 2025-07-24T03:51:51.7750190Z echo "Job name: ${JOB_NAME}" 2025-07-24T03:51:51.7750360Z  2025-07-24T03:51:51.7750580Z # Use relative path here as this could be checked out anywhere, not necessarily 2025-07-24T03:51:51.7750870Z # in runner workspace 2025-07-24T03:51:51.7751130Z python3 "${GITHUB_ACTION_PATH}/../../scripts/filter_test_configs.py" \ 2025-07-24T03:51:51.7751450Z  --workflow "${GITHUB_WORKFLOW}" \ 2025-07-24T03:51:51.7751670Z  --job-name "${JOB_NAME}" \ 2025-07-24T03:51:51.7751850Z  --test-matrix "{ include: [ 2025-07-24T03:51:51.7752110Z  { config: "default", shard: 1, num_shards: 3, runner: "macos-m1-stable" }, 2025-07-24T03:51:51.7752450Z  { config: "default", shard: 2, num_shards: 3, runner: "macos-m1-stable" }, 2025-07-24T03:51:51.7752800Z  { config: "default", shard: 3, num_shards: 3, runner: "macos-m1-stable" }, 2025-07-24T03:51:51.7753110Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-13" }, 2025-07-24T03:51:51.7753410Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m1-14" }, 2025-07-24T03:51:51.7753740Z  { config: "mps", shard: 1, num_shards: 1, runner: "macos-m2-15" }, 2025-07-24T03:51:51.7754150Z ]} 2025-07-24T03:51:51.7754280Z " \ 2025-07-24T03:51:51.7754420Z  --selected-test-configs "" \ 2025-07-24T03:51:51.7754630Z  --pr-number "${PR_NUMBER}" \ 2025-07-24T03:51:51.7754820Z  --tag "${TAG}" \ 2025-07-24T03:51:51.7754990Z  --event-name "${EVENT_NAME}" \ 2025-07-24T03:51:51.7755190Z  --schedule "${SCHEDULE}" \ 2025-07-24T03:51:51.7755370Z  --branch "${HEAD_BRANCH}" 2025-07-24T03:51:51.7771020Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:51.7771240Z env: 2025-07-24T03:51:51.7771360Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:51.7771550Z SCCACHE_USE_GHA: false 2025-07-24T03:51:51.7771760Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:51.7772030Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:51:51.7772250Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:51.7772580Z GITHUB_TOKEN: *** 2025-07-24T03:51:51.7772730Z JOB_NAME: macos-py3-arm64 / build 2025-07-24T03:51:51.7772900Z PR_NUMBER: 2025-07-24T03:51:51.7773050Z TAG: ciflow/trunk/149961 2025-07-24T03:51:51.7773200Z EVENT_NAME: push 2025-07-24T03:51:51.7773320Z SCHEDULE: 2025-07-24T03:51:51.7773440Z HEAD_BRANCH: 2025-07-24T03:51:51.7773570Z ##[endgroup] 2025-07-24T03:51:51.8027610Z Workflow: trunk 2025-07-24T03:51:51.8027840Z Job name: macos-py3-arm64 / build 2025-07-24T03:51:52.0868380Z INFO:root:Found no test-config label on the PR, so all test configs are included 2025-07-24T03:51:52.2986400Z Setting output keep-going=False 2025-07-24T03:51:52.2986660Z Setting output ci-verbose-test-logs=False 2025-07-24T03:51:52.2986900Z Setting output ci-test-showlocals=False 2025-07-24T03:51:52.2987140Z Setting output ci-no-test-timeout=False 2025-07-24T03:51:52.2987350Z Setting output ci-no-td=False 2025-07-24T03:51:52.2987550Z Setting output ci-td-distributed=False 2025-07-24T03:51:52.2987780Z Setting output is-unstable=False 2025-07-24T03:51:52.2988050Z Setting output reenabled-issues= 2025-07-24T03:51:52.2989040Z Setting output test-matrix={"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-13"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-14"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m2-15"}]} 2025-07-24T03:51:52.2990340Z Setting output is-test-matrix-empty=False 2025-07-24T03:51:52.3078770Z ##[group]Run echo "Filtered matrix:" 2025-07-24T03:51:52.3079000Z echo "Filtered matrix:" 2025-07-24T03:51:52.3079930Z echo "{"include": [{"config": "default", "shard": 1, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 2, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "default", "shard": 3, "num_shards": 3, "runner": "macos-m1-stable"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-13"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m1-14"}, {"config": "mps", "shard": 1, "num_shards": 1, "runner": "macos-m2-15"}]}" 2025-07-24T03:51:52.3080830Z  2025-07-24T03:51:52.3080960Z echo 2025-07-24T03:51:52.3081130Z echo "Is the current job unstable? False" 2025-07-24T03:51:52.3081330Z  2025-07-24T03:51:52.3081440Z echo 2025-07-24T03:51:52.3081630Z echo "Is keep-going label set? False" 2025-07-24T03:51:52.3081830Z  2025-07-24T03:51:52.3081950Z echo 2025-07-24T03:51:52.3082120Z echo "Reenabled issues? " 2025-07-24T03:51:52.3098550Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-24T03:51:52.3098770Z env: 2025-07-24T03:51:52.3098900Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:52.3099080Z SCCACHE_USE_GHA: false 2025-07-24T03:51:52.3099470Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:52.3099760Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:51:52.3099990Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:52.3100140Z ##[endgroup] 2025-07-24T03:51:52.3358700Z Filtered matrix: 2025-07-24T03:51:52.3359680Z {include: [{config: default, shard: 1, num_shards: 3, runner: macos-m1-stable}, {config: default, shard: 2, num_shards: 3, runner: macos-m1-stable}, {config: default, shard: 3, num_shards: 3, runner: macos-m1-stable}, {config: mps, shard: 1, num_shards: 1, runner: macos-m1-13}, {config: mps, shard: 1, num_shards: 1, runner: macos-m1-14}, {config: mps, shard: 1, num_shards: 1, runner: macos-m2-15}]} 2025-07-24T03:51:52.3360530Z 2025-07-24T03:51:52.3360620Z Is the current job unstable? False 2025-07-24T03:51:52.3360760Z 2025-07-24T03:51:52.3360850Z Is keep-going label set? False 2025-07-24T03:51:52.3360960Z 2025-07-24T03:51:52.3361010Z Reenabled issues? 2025-07-24T03:51:52.3388040Z ##[group]Run # TODO: Remove me later, and properly activate venv 2025-07-24T03:51:52.3388390Z # TODO: Remove me later, and properly activate venv 2025-07-24T03:51:52.3388650Z PATH="$VENV_PATH/bin:$PATH" 2025-07-24T03:51:52.3388840Z export PATH 2025-07-24T03:51:52.3388970Z  2025-07-24T03:51:52.3389230Z # NB: Same trick as Linux, there is no need to initialize sccache with the risk of getting 2025-07-24T03:51:52.3389630Z # it hangs or timeout at initialization. The cache will be started automatically 2025-07-24T03:51:52.3389940Z export SKIP_SCCACHE_INITIALIZATION=1 2025-07-24T03:51:52.3390180Z .ci/pytorch/macos-build.sh 2025-07-24T03:51:52.3406380Z shell: /bin/bash -e {0} 2025-07-24T03:51:52.3406530Z env: 2025-07-24T03:51:52.3406680Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:51:52.3406880Z SCCACHE_USE_GHA: false 2025-07-24T03:51:52.3407140Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:51:52.3407420Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:51:52.3407650Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:51:52.3407960Z OUR_GITHUB_JOB_ID: 46614177172 2025-07-24T03:51:52.3408140Z ##[endgroup] 2025-07-24T03:51:52.3996910Z +++ [[ macos-py3-arm64 == *rocm* ]] 2025-07-24T03:51:52.3997170Z +++ BUILD_TEST_LIBTORCH=0 2025-07-24T03:51:52.3999260Z ++ sysctl -a 2025-07-24T03:51:52.4001060Z ++ grep machdep.cpu 2025-07-24T03:51:52.4118140Z machdep.cpu.cores_per_package: 8 2025-07-24T03:51:52.4118340Z machdep.cpu.core_count: 8 2025-07-24T03:51:52.4118530Z machdep.cpu.logical_per_package: 8 2025-07-24T03:51:52.4118740Z machdep.cpu.thread_count: 8 2025-07-24T03:51:52.4118920Z machdep.cpu.brand_string: Apple M1 2025-07-24T03:51:52.4119460Z ++ export MACOSX_DEPLOYMENT_TARGET=11.1 2025-07-24T03:51:52.4119710Z ++ MACOSX_DEPLOYMENT_TARGET=11.1 2025-07-24T03:51:52.4119900Z ++ export CXX=clang++ 2025-07-24T03:51:52.4120050Z ++ CXX=clang++ 2025-07-24T03:51:52.4120240Z ++ export CC=clang 2025-07-24T03:51:52.4120420Z ++ CC=clang 2025-07-24T03:51:52.4123560Z ++ dirname .ci/pytorch/macos-build.sh 2025-07-24T03:51:52.4132970Z + source .ci/pytorch/common-build.sh 2025-07-24T03:51:52.4142480Z ++ [[ macos-py3-arm64 != *win-* ]] 2025-07-24T03:51:52.4147550Z ++++ dirname .ci/pytorch/common-build.sh 2025-07-24T03:51:52.4159330Z +++ cd .ci/pytorch 2025-07-24T03:51:52.4159570Z +++ pwd -P 2025-07-24T03:51:52.4160790Z ++ script_dir=/Users/ec2-user/runner/_work/pytorch/pytorch/.ci/pytorch 2025-07-24T03:51:52.4161200Z ++ [[ macos-py3-arm64 == *-pch* ]] 2025-07-24T03:51:52.4161370Z ++ which sccache 2025-07-24T03:51:52.4188810Z ++ [[ -z ossci-compiler-cache-circleci-v2 ]] 2025-07-24T03:51:52.4189040Z ++ sccache --stop-server 2025-07-24T03:51:52.4287740Z ++ true 2025-07-24T03:51:52.4288000Z ++ rm -f /Users/ec2-user/sccache_error.log 2025-07-24T03:51:52.4302170Z ++ trap_add sccache_epilogue EXIT 2025-07-24T03:51:52.4302370Z ++ trap_add_cmd=sccache_epilogue 2025-07-24T03:51:52.4302560Z ++ shift 2025-07-24T03:51:52.4302730Z ++ for trap_add_name in '"$@"' 2025-07-24T03:51:52.4307640Z ++++ trap -p EXIT 2025-07-24T03:51:52.4308710Z +++ eval 'extract_trap_cmd ' 2025-07-24T03:51:52.4308930Z ++++ extract_trap_cmd 2025-07-24T03:51:52.4309070Z ++++ printf '%s\n' '' 2025-07-24T03:51:52.4309240Z +++ printf '%s\n' sccache_epilogue 2025-07-24T03:51:52.4310630Z ++ trap -- ' 2025-07-24T03:51:52.4310780Z sccache_epilogue' EXIT 2025-07-24T03:51:52.4310940Z ++ [[ -n 1 ]] 2025-07-24T03:51:52.4311210Z ++ echo 'Skipping sccache server initialization, setting environment variables' 2025-07-24T03:51:52.4311540Z ++ export SCCACHE_IDLE_TIMEOUT=0 2025-07-24T03:51:52.4311730Z ++ SCCACHE_IDLE_TIMEOUT=0 2025-07-24T03:51:52.4311980Z ++ export SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-07-24T03:51:52.4312270Z ++ SCCACHE_ERROR_LOG=/Users/ec2-user/sccache_error.log 2025-07-24T03:51:52.4316530Z ++ export RUST_LOG=sccache::server=error 2025-07-24T03:51:52.4316740Z ++ RUST_LOG=sccache::server=error 2025-07-24T03:51:52.4317310Z ++ sccache --zero-stats 2025-07-24T03:51:52.4317560Z Skipping sccache server initialization, setting environment variables 2025-07-24T03:51:52.7522200Z Compile requests 0 2025-07-24T03:51:52.7522570Z Compile requests executed 0 2025-07-24T03:51:52.7522820Z Cache hits 0 2025-07-24T03:51:52.7523050Z Cache misses 0 2025-07-24T03:51:52.7523280Z Cache timeouts 0 2025-07-24T03:51:52.7523540Z Cache read errors 0 2025-07-24T03:51:52.7523800Z Forced recaches 0 2025-07-24T03:51:52.7524040Z Cache write errors 0 2025-07-24T03:51:52.7524290Z Compilation failures 0 2025-07-24T03:51:52.7524520Z Cache errors 0 2025-07-24T03:51:52.7524770Z Non-cacheable compilations 0 2025-07-24T03:51:52.7525010Z Non-cacheable calls 0 2025-07-24T03:51:52.7525280Z Non-compilation calls 0 2025-07-24T03:51:52.7525530Z Unsupported compiler calls 0 2025-07-24T03:51:52.7525790Z Average cache write 0.000 s 2025-07-24T03:51:52.7526370Z Average compiler 0.000 s 2025-07-24T03:51:52.7526620Z Average cache read hit 0.000 s 2025-07-24T03:51:52.7526880Z Failed distributed compilations 0 2025-07-24T03:51:52.7527280Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-07-24T03:51:52.7527680Z Version (client) 0.4.1 2025-07-24T03:51:52.7527900Z ++ which ccache 2025-07-24T03:51:52.7549740Z + '[' -z true ']' 2025-07-24T03:51:52.7550120Z + which sccache 2025-07-24T03:51:52.7566720Z ++ mktemp -d 2025-07-24T03:51:52.7614380Z + tmp_dir=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ 2025-07-24T03:51:52.7614770Z + trap 'rm -rfv ${tmp_dir}' EXIT 2025-07-24T03:51:52.7615170Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ 2025-07-24T03:51:52.7615730Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ 2025-07-24T03:51:52.7617610Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ 2025-07-24T03:51:52.7642550Z + binary=clang++ 2025-07-24T03:51:52.7645980Z ++ which clang++ 2025-07-24T03:51:52.7659240Z ++ which clang++ 2025-07-24T03:51:52.7668960Z + printf '#!/bin/sh\nif [ $(ps auxc $(ps auxc -o ppid $$ | grep $$ | rev | cut -d'\'' '\'' -f1 | rev) | tr '\''\\n'\'' '\'' '\'' | rev | cut -d'\'' '\'' -f2 | rev) != sccache ]; then\n exec sccache %s "$@"\nelse\n exec %s "$@"\nfi' /usr/bin/clang++ /usr/bin/clang++ 2025-07-24T03:51:52.7670280Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ 2025-07-24T03:51:52.7682340Z + write_sccache_stub /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang 2025-07-24T03:51:52.7682860Z + output=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang 2025-07-24T03:51:52.7685230Z ++ basename /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang 2025-07-24T03:51:52.7695850Z + binary=clang 2025-07-24T03:51:52.7698700Z ++ which clang 2025-07-24T03:51:52.7710000Z ++ which clang 2025-07-24T03:51:52.7719130Z + printf '#!/bin/sh\nif [ $(ps auxc $(ps auxc -o ppid $$ | grep $$ | rev | cut -d'\'' '\'' -f1 | rev) | tr '\''\\n'\'' '\'' '\'' | rev | cut -d'\'' '\'' -f2 | rev) != sccache ]; then\n exec sccache %s "$@"\nelse\n exec %s "$@"\nfi' /usr/bin/clang /usr/bin/clang 2025-07-24T03:51:52.7720380Z + chmod a+x /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang 2025-07-24T03:51:52.7732910Z + export PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ:/Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2025-07-24T03:51:52.7735210Z + PATH=/var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ:/Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin:/usr/local/bin:/Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin:/opt/homebrew/Caskroom/miniconda/base/bin:/opt/homebrew/Caskroom/miniconda/base/condabin:/opt/homebrew/bin:/opt/homebrew/sbin:/usr/bin:/bin:/usr/sbin:/sbin 2025-07-24T03:51:52.7736260Z + print_cmake_info 2025-07-24T03:51:52.7736400Z ++ which cmake 2025-07-24T03:51:52.7744110Z + CMAKE_EXEC=/Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/cmake 2025-07-24T03:51:52.7744500Z + echo /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/cmake 2025-07-24T03:51:52.7744830Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/cmake 2025-07-24T03:51:52.7747060Z ++ dirname /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/cmake 2025-07-24T03:51:52.7755210Z + CONDA_INSTALLATION_DIR=/Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin 2025-07-24T03:51:52.7755600Z + ls -la /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/../lib 2025-07-24T03:51:52.7783510Z total 0 2025-07-24T03:51:52.7783700Z drwxr-xr-x 3 ec2-user staff 96 Jul 24 03:51 . 2025-07-24T03:51:52.7784170Z drwxr-xr-x 8 ec2-user staff 256 Jul 24 03:51 .. 2025-07-24T03:51:52.7784430Z drwxr-xr-x 3 ec2-user staff 96 Jul 24 03:51 python3.12 2025-07-24T03:51:52.7785310Z + [[ macos-py3-arm64 == *\d\i\s\t\r\i\b\u\t\e\d* ]] 2025-07-24T03:51:52.7785610Z + USE_DISTRIBUTED=0 2025-07-24T03:51:52.7785760Z + USE_OPENMP=1 2025-07-24T03:51:52.7785930Z + MACOSX_DEPLOYMENT_TARGET=11.0 2025-07-24T03:51:52.7786100Z + WERROR=1 2025-07-24T03:51:52.7786230Z + BUILD_TEST=OFF 2025-07-24T03:51:52.7786370Z + USE_PYTORCH_METAL=1 2025-07-24T03:51:52.7786600Z + python setup.py bdist_wheel --plat-name macosx_11_0_arm64 2025-07-24T03:51:52.8934090Z Building wheel torch-2.9.0a0+git27c8ef1 2025-07-24T03:51:53.3437750Z Found cmake (/Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/cmake) version: 3.27.9 (>=3.27) 2025-07-24T03:51:53.4373050Z -- Building version 2.9.0a0+git27c8ef1 2025-07-24T03:51:53.4628800Z Cloning into 'nccl'... 2025-07-24T03:51:53.7530240Z Note: switching to '3ea7eedf3b9b94f1d9f99f4e55536dfcbd23c1ca'. 2025-07-24T03:51:53.7530660Z 2025-07-24T03:51:53.7530930Z You are in 'detached HEAD' state. You can look around, make experimental 2025-07-24T03:51:53.7531570Z changes and commit them, and you can discard any commits you make in this 2025-07-24T03:51:53.7532200Z state without impacting any branches by switching back to a branch. 2025-07-24T03:51:53.7532540Z 2025-07-24T03:51:53.7532790Z If you want to create a new branch to retain commits you create, you may 2025-07-24T03:51:53.7533370Z do so (now or later) by using -c with the switch command. Example: 2025-07-24T03:51:53.7533690Z 2025-07-24T03:51:53.7533830Z git switch -c 2025-07-24T03:51:53.7534040Z 2025-07-24T03:51:53.7534190Z Or undo this operation with: 2025-07-24T03:51:53.7534410Z 2025-07-24T03:51:53.7534500Z git switch - 2025-07-24T03:51:53.7534650Z 2025-07-24T03:51:53.7534930Z Turn off this advice by setting config variable advice.detachedHead to false 2025-07-24T03:51:53.7535300Z 2025-07-24T03:51:53.7879430Z 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-1753329084/lib/python3.12/site-packages -DPython_EXECUTABLE=/Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/python -DTORCH_BUILD_VERSION=2.9.0a0+git27c8ef1 -DUSE_DISTRIBUTED=0 -DUSE_NUMPY=True -DUSE_OPENMP=1 -DUSE_PYTORCH_METAL=1 -DWERROR=1 /Users/ec2-user/runner/_work/pytorch/pytorch 2025-07-24T03:51:54.0923460Z -- The CXX compiler identification is AppleClang 15.0.0.15000309 2025-07-24T03:51:54.2044060Z -- The C compiler identification is AppleClang 15.0.0.15000309 2025-07-24T03:51:54.2642620Z -- Detecting CXX compiler ABI info 2025-07-24T03:51:54.5319070Z -- Detecting CXX compiler ABI info - done 2025-07-24T03:51:54.5356850Z -- Check for working CXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ - skipped 2025-07-24T03:51:54.5358390Z -- Detecting CXX compile features 2025-07-24T03:51:54.5362080Z -- Detecting CXX compile features - done 2025-07-24T03:51:54.5934310Z -- Detecting C compiler ABI info 2025-07-24T03:51:54.8878680Z -- Detecting C compiler ABI info - done 2025-07-24T03:51:54.8915770Z -- Check for working C compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang - skipped 2025-07-24T03:51:54.8917440Z -- Detecting C compile features 2025-07-24T03:51:54.8920620Z -- Detecting C compile features - done 2025-07-24T03:51:54.8966610Z -- Not forcing any particular BLAS to be found 2025-07-24T03:51:54.9198870Z -- CLANG_VERSION_STRING: 15.0 2025-07-24T03:51:54.9264850Z -- sdk version: 14.4, mps supported: ON 2025-07-24T03:51:54.9412950Z -- MPSGraph framework found 2025-07-24T03:51:54.9463310Z -- Could not find ccache. Consider installing ccache to speed up compilation. 2025-07-24T03:51:54.9496920Z -- Performing Test C_HAS_AVX_1 2025-07-24T03:51:55.2077140Z -- Performing Test C_HAS_AVX_1 - Failed 2025-07-24T03:51:55.2077680Z -- Performing Test C_HAS_AVX_2 2025-07-24T03:51:55.3817350Z -- Performing Test C_HAS_AVX_2 - Failed 2025-07-24T03:51:55.3817650Z -- Performing Test C_HAS_AVX_3 2025-07-24T03:51:55.5280450Z -- Performing Test C_HAS_AVX_3 - Failed 2025-07-24T03:51:55.5280970Z -- Performing Test C_HAS_AVX2_1 2025-07-24T03:51:55.7015860Z -- Performing Test C_HAS_AVX2_1 - Failed 2025-07-24T03:51:55.7016120Z -- Performing Test C_HAS_AVX2_2 2025-07-24T03:51:55.8738660Z -- Performing Test C_HAS_AVX2_2 - Failed 2025-07-24T03:51:55.8738940Z -- Performing Test C_HAS_AVX2_3 2025-07-24T03:51:56.0190640Z -- Performing Test C_HAS_AVX2_3 - Failed 2025-07-24T03:51:56.0191160Z -- Performing Test C_HAS_AVX512_1 2025-07-24T03:51:56.1910630Z -- Performing Test C_HAS_AVX512_1 - Failed 2025-07-24T03:51:56.1910900Z -- Performing Test C_HAS_AVX512_2 2025-07-24T03:51:56.3648980Z -- Performing Test C_HAS_AVX512_2 - Failed 2025-07-24T03:51:56.3649370Z -- Performing Test C_HAS_AVX512_3 2025-07-24T03:51:56.5104480Z -- Performing Test C_HAS_AVX512_3 - Failed 2025-07-24T03:51:56.5105010Z -- Performing Test CXX_HAS_AVX_1 2025-07-24T03:51:56.6843440Z -- Performing Test CXX_HAS_AVX_1 - Failed 2025-07-24T03:51:56.6843700Z -- Performing Test CXX_HAS_AVX_2 2025-07-24T03:51:56.8574020Z -- Performing Test CXX_HAS_AVX_2 - Failed 2025-07-24T03:51:56.8574330Z -- Performing Test CXX_HAS_AVX_3 2025-07-24T03:51:57.0034950Z -- Performing Test CXX_HAS_AVX_3 - Failed 2025-07-24T03:51:57.0035470Z -- Performing Test CXX_HAS_AVX2_1 2025-07-24T03:51:57.1760810Z -- Performing Test CXX_HAS_AVX2_1 - Failed 2025-07-24T03:51:57.1761080Z -- Performing Test CXX_HAS_AVX2_2 2025-07-24T03:51:57.3475950Z -- Performing Test CXX_HAS_AVX2_2 - Failed 2025-07-24T03:51:57.3476210Z -- Performing Test CXX_HAS_AVX2_3 2025-07-24T03:51:57.4915170Z -- Performing Test CXX_HAS_AVX2_3 - Failed 2025-07-24T03:51:57.4915730Z -- Performing Test CXX_HAS_AVX512_1 2025-07-24T03:51:57.6653450Z -- Performing Test CXX_HAS_AVX512_1 - Failed 2025-07-24T03:51:57.6653740Z -- Performing Test CXX_HAS_AVX512_2 2025-07-24T03:51:57.8397980Z -- Performing Test CXX_HAS_AVX512_2 - Failed 2025-07-24T03:51:57.8398380Z -- Performing Test CXX_HAS_AVX512_3 2025-07-24T03:51:57.9856780Z -- Performing Test CXX_HAS_AVX512_3 - Failed 2025-07-24T03:51:57.9858080Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS 2025-07-24T03:51:58.1692340Z -- Performing Test CAFFE2_COMPILER_SUPPORTS_AVX512_EXTENSIONS - Failed 2025-07-24T03:51:58.1696570Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY 2025-07-24T03:51:58.4040180Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_VISIBILITY - Success 2025-07-24T03:51:58.4044140Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY 2025-07-24T03:51:58.6206790Z -- Performing Test COMPILER_SUPPORTS_HIDDEN_INLINE_VISIBILITY - Success 2025-07-24T03:51:58.6211200Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC 2025-07-24T03:51:58.8403120Z -- Performing Test COMPILER_SUPPORTS_RDYNAMIC - Success 2025-07-24T03:51:58.8429170Z -- No OMAP3 processor on this machine. 2025-07-24T03:51:58.8429430Z -- No OMAP4 processor on this machine. 2025-07-24T03:51:58.8430190Z -- Compiler does not support SVE extension. Will not build perfkernels. 2025-07-24T03:51:58.8568170Z CUDA_TOOLKIT_ROOT_DIR not found or specified 2025-07-24T03:51:59.7556310Z -- Could NOT find CUDA (missing: CUDA_TOOLKIT_ROOT_DIR CUDA_NVCC_EXECUTABLE CUDA_INCLUDE_DIRS CUDA_CUDART_LIBRARY) 2025-07-24T03:51:59.7567040Z CMake Warning at cmake/public/cuda.cmake:31 (message): 2025-07-24T03:51:59.7567370Z PyTorch: CUDA cannot be found. Depending on whether you are building 2025-07-24T03:51:59.7567720Z PyTorch or a PyTorch dependent library, the next warning / error will give 2025-07-24T03:51:59.7568480Z you more info. 2025-07-24T03:51:59.7568790Z Call Stack (most recent call first): 2025-07-24T03:51:59.7569030Z cmake/Dependencies.cmake:44 (include) 2025-07-24T03:51:59.7569230Z CMakeLists.txt:865 (include) 2025-07-24T03:51:59.7569360Z 2025-07-24T03:51:59.7569360Z 2025-07-24T03:51:59.7569750Z CMake Warning at cmake/Dependencies.cmake:76 (message): 2025-07-24T03:51:59.7570070Z Not compiling with CUDA. Suppress this warning with -DUSE_CUDA=OFF. 2025-07-24T03:51:59.7570340Z Call Stack (most recent call first): 2025-07-24T03:51:59.7570550Z CMakeLists.txt:865 (include) 2025-07-24T03:51:59.7570660Z 2025-07-24T03:51:59.7570660Z 2025-07-24T03:51:59.7587150Z CMake Warning at cmake/Dependencies.cmake:95 (message): 2025-07-24T03:51:59.7587490Z Not compiling with XPU. Could NOT find SYCL. Suppress this warning with 2025-07-24T03:51:59.7587760Z -DUSE_XPU=OFF. 2025-07-24T03:51:59.7587910Z Call Stack (most recent call first): 2025-07-24T03:51:59.7588140Z CMakeLists.txt:865 (include) 2025-07-24T03:51:59.7588250Z 2025-07-24T03:51:59.7588250Z 2025-07-24T03:51:59.7595220Z -- Building using own protobuf under third_party per request. 2025-07-24T03:51:59.7595510Z -- Use custom protobuf build. 2025-07-24T03:51:59.7614760Z CMake Deprecation Warning at third_party/protobuf/cmake/CMakeLists.txt:2 (cmake_minimum_required): 2025-07-24T03:51:59.7615250Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:51:59.7615500Z CMake. 2025-07-24T03:51:59.7615570Z 2025-07-24T03:51:59.7615700Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:51:59.7616060Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:51:59.7616270Z 2025-07-24T03:51:59.7616270Z 2025-07-24T03:51:59.7650430Z -- 2025-07-24T03:51:59.7650670Z -- 3.13.0.0 2025-07-24T03:51:59.7655910Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD 2025-07-24T03:52:00.0461840Z -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success 2025-07-24T03:52:00.0467860Z -- Found Threads: TRUE 2025-07-24T03:52:00.0470070Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS 2025-07-24T03:52:00.2909970Z -- Performing Test protobuf_HAVE_BUILTIN_ATOMICS - Success 2025-07-24T03:52:00.3494550Z -- Caffe2 protobuf include directory: $$ 2025-07-24T03:52:00.3505590Z -- Trying to find preferred BLAS backend of choice: MKL 2025-07-24T03:52:00.3532050Z CMake Warning at cmake/Dependencies.cmake:212 (message): 2025-07-24T03:52:00.3532320Z MKL could not be found. Defaulting to Eigen 2025-07-24T03:52:00.3533170Z Call Stack (most recent call first): 2025-07-24T03:52:00.3533530Z CMakeLists.txt:865 (include) 2025-07-24T03:52:00.3533670Z 2025-07-24T03:52:00.3533680Z 2025-07-24T03:52:00.3533770Z CMake Warning (dev) in cmake/Dependencies.cmake: 2025-07-24T03:52:00.3534010Z A logical block opening on the line 2025-07-24T03:52:00.3534140Z 2025-07-24T03:52:00.3534320Z /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:261 (if) 2025-07-24T03:52:00.3534590Z 2025-07-24T03:52:00.3534880Z closes on the line 2025-07-24T03:52:00.3535000Z 2025-07-24T03:52:00.3535170Z /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/Dependencies.cmake:263 (endif) 2025-07-24T03:52:00.3535430Z 2025-07-24T03:52:00.3535500Z with mis-matching arguments. 2025-07-24T03:52:00.3535690Z Call Stack (most recent call first): 2025-07-24T03:52:00.3535880Z CMakeLists.txt:865 (include) 2025-07-24T03:52:00.3536140Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:52:00.3536330Z 2025-07-24T03:52:00.3536440Z CMake Warning at cmake/Dependencies.cmake:269 (message): 2025-07-24T03:52:00.3536730Z Preferred BLAS (MKL) cannot be found, now searching for a general BLAS 2025-07-24T03:52:00.3536960Z library 2025-07-24T03:52:00.3537100Z Call Stack (most recent call first): 2025-07-24T03:52:00.3537280Z CMakeLists.txt:865 (include) 2025-07-24T03:52:00.3537390Z 2025-07-24T03:52:00.3537390Z 2025-07-24T03:52:00.3553640Z -- Checking for [blis] 2025-07-24T03:52:00.3554040Z -- Library blis: BLAS_blis_LIBRARY-NOTFOUND 2025-07-24T03:52:00.3554230Z -- Checking for [Accelerate] 2025-07-24T03:52:00.3560330Z -- Library Accelerate: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework 2025-07-24T03:52:00.3560950Z -- Looking for sgemm_ 2025-07-24T03:52:00.5913890Z -- Looking for sgemm_ - found 2025-07-24T03:52:00.5923970Z -- Performing Test BLAS_F2C_DOUBLE_WORKS 2025-07-24T03:52:00.9036000Z -- Performing Test BLAS_F2C_DOUBLE_WORKS - Success 2025-07-24T03:52:00.9036620Z -- Performing Test BLAS_F2C_FLOAT_WORKS 2025-07-24T03:52:01.2461110Z -- Performing Test BLAS_F2C_FLOAT_WORKS - Failed 2025-07-24T03:52:01.2461570Z -- This BLAS uses the F2C return conventions 2025-07-24T03:52:01.2561340Z -- Performing Test BLAS_USE_CBLAS_DOT 2025-07-24T03:52:01.5614340Z -- Performing Test BLAS_USE_CBLAS_DOT - Success 2025-07-24T03:52:01.5614650Z -- BLAS_USE_CBLAS_DOT: TRUE 2025-07-24T03:52:01.5615000Z -- BLAS_F2C: TRUE 2025-07-24T03:52:01.5615960Z -- Found a library with BLAS API (accelerate). Full path: (/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework) 2025-07-24T03:52:01.5618110Z -- Looking for sbgemm_ 2025-07-24T03:52:01.8533410Z -- Looking for sbgemm_ - not found 2025-07-24T03:52:01.8534160Z -- Using pocketfft in directory: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/pocketfft/ 2025-07-24T03:52:01.9212560Z -- The ASM compiler identification is AppleClang 2025-07-24T03:52:01.9227940Z -- Found assembler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang 2025-07-24T03:52:01.9840070Z CMake Deprecation Warning at third_party/psimd/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-24T03:52:01.9840510Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:52:01.9840760Z CMake. 2025-07-24T03:52:01.9840820Z 2025-07-24T03:52:01.9840960Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:52:01.9841310Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:52:01.9841510Z 2025-07-24T03:52:01.9841510Z 2025-07-24T03:52:01.9870610Z CMake Deprecation Warning at third_party/FP16/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-24T03:52:01.9871010Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:52:01.9871260Z CMake. 2025-07-24T03:52:01.9871320Z 2025-07-24T03:52:01.9871450Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:52:01.9871780Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:52:01.9871980Z 2025-07-24T03:52:01.9871980Z 2025-07-24T03:52:01.9893270Z -- Brace yourself, we are building NNPACK 2025-07-24T03:52:01.9928540Z CMake Deprecation Warning at third_party/NNPACK/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED): 2025-07-24T03:52:01.9928950Z Compatibility with CMake < 3.5 will be removed from a future version of 2025-07-24T03:52:01.9929190Z CMake. 2025-07-24T03:52:01.9929520Z 2025-07-24T03:52:01.9929660Z Update the VERSION argument value or use a ... suffix to tell 2025-07-24T03:52:01.9929990Z CMake that the project does not need compatibility with older versions. 2025-07-24T03:52:01.9930190Z 2025-07-24T03:52:01.9930190Z 2025-07-24T03:52:02.0477320Z -- NNPACK backend is neon 2025-07-24T03:52:02.1197760Z -- Building for XNNPACK_TARGET_PROCESSOR: arm64 2025-07-24T03:52:02.1209820Z -- Generating microkernels.cmake 2025-07-24T03:52:10.3301680Z Duplicate microkernel definition: src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-scalar.c and src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c (1th function) 2025-07-24T03:52:10.3302640Z Duplicate microkernel definition: src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-avx256vnni.c and src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-avxvnni.c (1th function) 2025-07-24T03:52:10.3303220Z No microkernel found in src/reference/unary-elementwise.cc 2025-07-24T03:52:10.3303500Z No microkernel found in src/reference/packing.cc 2025-07-24T03:52:10.3303750Z No microkernel found in src/reference/binary-elementwise.cc 2025-07-24T03:52:10.4031870Z CMake Warning at cmake/Dependencies.cmake:668 (message): 2025-07-24T03:52:10.4032520Z A compiler with AVX512 support is required for FBGEMM. Not compiling with 2025-07-24T03:52:10.4032810Z FBGEMM. Turn this warning off by USE_FBGEMM=OFF. 2025-07-24T03:52:10.4033030Z Call Stack (most recent call first): 2025-07-24T03:52:10.4033210Z CMakeLists.txt:865 (include) 2025-07-24T03:52:10.4033320Z 2025-07-24T03:52:10.4033320Z 2025-07-24T03:52:10.4033390Z -- Using third party subdirectory Eigen. 2025-07-24T03:52:10.4033660Z CMake Warning at cmake/Dependencies.cmake:724 (message): 2025-07-24T03:52:10.4033920Z Turning USE_FAKELOWP off as it depends on USE_FBGEMM. 2025-07-24T03:52:10.4034140Z Call Stack (most recent call first): 2025-07-24T03:52:10.4034310Z CMakeLists.txt:865 (include) 2025-07-24T03:52:10.4034420Z 2025-07-24T03:52:10.4034420Z 2025-07-24T03:52:11.7722420Z -- Found Python: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/python (found version "3.12.11") found components: Interpreter Development.Module NumPy 2025-07-24T03:52:11.7722970Z -- Using third_party/pybind11. 2025-07-24T03:52:11.7723340Z -- pybind11 include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/pybind11/include 2025-07-24T03:52:11.8414240Z -- Could NOT find OpenTelemetryApi (missing: OpenTelemetryApi_INCLUDE_DIRS) 2025-07-24T03:52:11.8414580Z -- Using third_party/opentelemetry-cpp. 2025-07-24T03:52:11.8415280Z -- opentelemetry api include dirs: /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/../third_party/opentelemetry-cpp/api/include 2025-07-24T03:52:11.8508230Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-07-24T03:52:12.0057350Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-07-24T03:52:12.0057770Z Detecting C OpenMP compiler ABI info compiled with the following output: 2025-07-24T03:52:12.0057990Z 2025-07-24T03:52:12.0058040Z Change Dir: 2025-07-24T03:52:12.0058260Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-07-24T03:52:12.0058480Z 2025-07-24T03:52:12.0058480Z 2025-07-24T03:52:12.0058480Z 2025-07-24T03:52:12.0058540Z Run Build Command(s): 2025-07-24T03:52:12.0058770Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/ninja -v 2025-07-24T03:52:12.0059010Z cmTC_8d21f 2025-07-24T03:52:12.0059080Z 2025-07-24T03:52:12.0059240Z [1/2] /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang 2025-07-24T03:52:12.0059590Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-07-24T03:52:12.0059860Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-24T03:52:12.0060080Z -mmacosx-version-min=11.0 -MD -MT 2025-07-24T03:52:12.0060290Z CMakeFiles/cmTC_8d21f.dir/OpenMPTryFlag.c.o -MF 2025-07-24T03:52:12.0060530Z CMakeFiles/cmTC_8d21f.dir/OpenMPTryFlag.c.o.d -o 2025-07-24T03:52:12.0061000Z CMakeFiles/cmTC_8d21f.dir/OpenMPTryFlag.c.o -c 2025-07-24T03:52:12.0061350Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-07-24T03:52:12.0061620Z 2025-07-24T03:52:12.0061620Z 2025-07-24T03:52:12.0061720Z FAILED: CMakeFiles/cmTC_8d21f.dir/OpenMPTryFlag.c.o 2025-07-24T03:52:12.0061870Z 2025-07-24T03:52:12.0062020Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang 2025-07-24T03:52:12.0062340Z -Xpreprocessor -fopenmp -v -std=gnu11 -arch arm64 -isysroot 2025-07-24T03:52:12.0062590Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-24T03:52:12.0062800Z -mmacosx-version-min=11.0 -MD -MT 2025-07-24T03:52:12.0062990Z CMakeFiles/cmTC_8d21f.dir/OpenMPTryFlag.c.o -MF 2025-07-24T03:52:12.0063210Z CMakeFiles/cmTC_8d21f.dir/OpenMPTryFlag.c.o.d -o 2025-07-24T03:52:12.0063430Z CMakeFiles/cmTC_8d21f.dir/OpenMPTryFlag.c.o -c 2025-07-24T03:52:12.0063740Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-07-24T03:52:12.0063980Z 2025-07-24T03:52:12.0063990Z 2025-07-24T03:52:12.0064060Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-07-24T03:52:12.0064380Z 2025-07-24T03:52:12.0064440Z Target: arm64-apple-darwin23.4.0 2025-07-24T03:52:12.0064550Z 2025-07-24T03:52:12.0064600Z Thread model: posix 2025-07-24T03:52:12.0064680Z 2025-07-24T03:52:12.0064790Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-07-24T03:52:12.0064950Z 2025-07-24T03:52:12.0072590Z "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx11.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -E -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name OpenMPTryFlag.c -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -P -fcoverage-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_8d21f.dir/OpenMPTryFlag.c.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_8d21f.dir/OpenMPTryFlag.c.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -D __arm64__=1 -fopenmp -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -std=gnu11 -fdebug-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -ferror-limit 19 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o - -x c /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c 2025-07-24T03:52:12.0080430Z 2025-07-24T03:52:12.0080540Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-07-24T03:52:12.0080760Z arm64-apple-darwin23.4.0 2025-07-24T03:52:12.0080860Z 2025-07-24T03:52:12.0080950Z ignoring nonexistent directory "/usr/local/include" 2025-07-24T03:52:12.0081100Z 2025-07-24T03:52:12.0081160Z ignoring nonexistent directory 2025-07-24T03:52:12.0081410Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-07-24T03:52:12.0081620Z 2025-07-24T03:52:12.0081670Z ignoring nonexistent directory 2025-07-24T03:52:12.0081930Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-07-24T03:52:12.0082140Z 2025-07-24T03:52:12.0082200Z #include "..." search starts here: 2025-07-24T03:52:12.0082370Z 2025-07-24T03:52:12.0082430Z #include <...> search starts here: 2025-07-24T03:52:12.0082550Z 2025-07-24T03:52:12.0082670Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-07-24T03:52:12.0082980Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-07-24T03:52:12.0083250Z /Library/Developer/CommandLineTools/usr/include 2025-07-24T03:52:12.0083620Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-07-24T03:52:12.0083900Z 2025-07-24T03:52:12.0083950Z End of search list. 2025-07-24T03:52:12.0084040Z 2025-07-24T03:52:12.0084040Z 2025-07-24T03:52:12.0084240Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.c:2:10: 2025-07-24T03:52:12.0084570Z fatal error: 'omp.h' file not found 2025-07-24T03:52:12.0084690Z 2025-07-24T03:52:12.0084740Z #include 2025-07-24T03:52:12.0084810Z 2025-07-24T03:52:12.0084850Z ^~~~~~~ 2025-07-24T03:52:12.0084930Z 2025-07-24T03:52:12.0084970Z 1 error generated. 2025-07-24T03:52:12.0085060Z 2025-07-24T03:52:12.0085120Z ninja: build stopped: subcommand failed. 2025-07-24T03:52:12.0085250Z 2025-07-24T03:52:12.0085260Z 2025-07-24T03:52:12.0085260Z 2025-07-24T03:52:12.0085310Z Call Stack (most recent call first): 2025-07-24T03:52:12.0085530Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-07-24T03:52:12.0085740Z cmake/Dependencies.cmake:929 (include) 2025-07-24T03:52:12.0085930Z CMakeLists.txt:865 (include) 2025-07-24T03:52:12.0086030Z 2025-07-24T03:52:12.0086040Z 2025-07-24T03:52:12.3125820Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-07-24T03:52:12.6298240Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -v 2025-07-24T03:52:12.7825450Z CMake Warning at cmake/Modules/FindOpenMP.cmake:335 (message): 2025-07-24T03:52:12.7825830Z Detecting CXX OpenMP compiler ABI info compiled with the following output: 2025-07-24T03:52:12.7826070Z 2025-07-24T03:52:12.7826140Z Change Dir: 2025-07-24T03:52:12.7826360Z '/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp' 2025-07-24T03:52:12.7826580Z 2025-07-24T03:52:12.7826590Z 2025-07-24T03:52:12.7826590Z 2025-07-24T03:52:12.7826640Z Run Build Command(s): 2025-07-24T03:52:12.7826870Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/ninja -v 2025-07-24T03:52:12.7827110Z cmTC_cb771 2025-07-24T03:52:12.7827190Z 2025-07-24T03:52:12.7827230Z [1/2] 2025-07-24T03:52:12.7827450Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ 2025-07-24T03:52:12.7827840Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-07-24T03:52:12.7828380Z -std=gnu++17 -arch arm64 -isysroot 2025-07-24T03:52:12.7828610Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-24T03:52:12.7828840Z -mmacosx-version-min=11.0 -MD -MT 2025-07-24T03:52:12.7829060Z CMakeFiles/cmTC_cb771.dir/OpenMPTryFlag.cpp.o -MF 2025-07-24T03:52:12.7829310Z CMakeFiles/cmTC_cb771.dir/OpenMPTryFlag.cpp.o.d -o 2025-07-24T03:52:12.7829560Z CMakeFiles/cmTC_cb771.dir/OpenMPTryFlag.cpp.o -c 2025-07-24T03:52:12.7829910Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-07-24T03:52:12.7830180Z 2025-07-24T03:52:12.7830180Z 2025-07-24T03:52:12.7830280Z FAILED: CMakeFiles/cmTC_cb771.dir/OpenMPTryFlag.cpp.o 2025-07-24T03:52:12.7830450Z 2025-07-24T03:52:12.7830620Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ 2025-07-24T03:52:12.7830990Z -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Xpreprocessor -fopenmp -v 2025-07-24T03:52:12.7831270Z -std=gnu++17 -arch arm64 -isysroot 2025-07-24T03:52:12.7831480Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-24T03:52:12.7831700Z -mmacosx-version-min=11.0 -MD -MT 2025-07-24T03:52:12.7831910Z CMakeFiles/cmTC_cb771.dir/OpenMPTryFlag.cpp.o -MF 2025-07-24T03:52:12.7832270Z CMakeFiles/cmTC_cb771.dir/OpenMPTryFlag.cpp.o.d -o 2025-07-24T03:52:12.7832500Z CMakeFiles/cmTC_cb771.dir/OpenMPTryFlag.cpp.o -c 2025-07-24T03:52:12.7832820Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-07-24T03:52:12.7833070Z 2025-07-24T03:52:12.7833070Z 2025-07-24T03:52:12.7833140Z Apple clang version 15.0.0 (clang-1500.3.9.4) 2025-07-24T03:52:12.7833280Z 2025-07-24T03:52:12.7833340Z Target: arm64-apple-darwin23.4.0 2025-07-24T03:52:12.7833460Z 2025-07-24T03:52:12.7833500Z Thread model: posix 2025-07-24T03:52:12.7833590Z 2025-07-24T03:52:12.7833690Z InstalledDir: /Library/Developer/CommandLineTools/usr/bin 2025-07-24T03:52:12.7833850Z 2025-07-24T03:52:12.7842290Z "/Library/Developer/CommandLineTools/usr/bin/clang" -cc1 -triple arm64-apple-macosx11.0.0 -Wundef-prefix=TARGET_OS_ -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -E -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name OpenMPTryFlag.cpp -mrelocation-model pic -pic-level 2 -mframe-pointer=non-leaf -fno-strict-return -ffp-contract=on -fno-rounding-math -funwind-tables=1 -fobjc-msgsend-selector-stubs -target-sdk-version=14.4 -fvisibility-inlines-hidden-static-local-var -target-cpu apple-m1 -target-feature +v8.5a -target-feature +crc -target-feature +lse -target-feature +rdm -target-feature +crypto -target-feature +dotprod -target-feature +fp-armv8 -target-feature +neon -target-feature +fp16fml -target-feature +ras -target-feature +rcpc -target-feature +zcm -target-feature +zcz -target-feature +fullfp16 -target-feature +sm4 -target-feature +sha3 -target-feature +sha2 -target-feature +aes -target-abi darwinpcs -debugger-tuning=lldb -target-linker-version 1053.12 -v -P -fcoverage-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -resource-dir /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0 -dependency-file CMakeFiles/cmTC_cb771.dir/OpenMPTryFlag.cpp.o.d -skip-unused-modulemap-deps -MT CMakeFiles/cmTC_cb771.dir/OpenMPTryFlag.cpp.o -sys-header-deps -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -D USE_PTHREADPOOL -D __arm64__=1 -fopenmp -I/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 -internal-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include -internal-externc-isystem /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Library/Developer/CommandLineTools/usr/include -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -Wno-elaborated-enum-base -Wno-reserved-identifier -Wno-gnu-folding-constant -std=gnu++17 -fdeprecated-macro -fdebug-compilation-dir=/Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/CMakeTmp -ferror-limit 19 -fvisibility-inlines-hidden -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fno-cxx-modules -fcxx-exceptions -fexceptions -fmax-type-align=16 -fcommon -clang-vendor-feature=+disableNonDependentMemberExprInCurrentInstantiation -fno-odr-hash-protocols -clang-vendor-feature=+enableAggressiveVLAFolding -clang-vendor-feature=+revert09abecef7bbf -clang-vendor-feature=+thisNoAlignAttr -clang-vendor-feature=+thisNoNullAttr -mllvm -disable-aligned-alloc-awareness=1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o - -x c++ /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp 2025-07-24T03:52:12.7850680Z 2025-07-24T03:52:12.7850780Z clang -cc1 version 15.0.0 (clang-1500.3.9.4) default target 2025-07-24T03:52:12.7851010Z arm64-apple-darwin23.4.0 2025-07-24T03:52:12.7851180Z 2025-07-24T03:52:12.7851270Z ignoring nonexistent directory "/usr/local/include" 2025-07-24T03:52:12.7851420Z 2025-07-24T03:52:12.7851480Z ignoring nonexistent directory 2025-07-24T03:52:12.7851730Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/local/include" 2025-07-24T03:52:12.7851950Z 2025-07-24T03:52:12.7852010Z ignoring nonexistent directory 2025-07-24T03:52:12.7852260Z "/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Library/Frameworks" 2025-07-24T03:52:12.7852470Z 2025-07-24T03:52:12.7852530Z #include "..." search starts here: 2025-07-24T03:52:12.7852650Z 2025-07-24T03:52:12.7852700Z #include <...> search starts here: 2025-07-24T03:52:12.7852810Z 2025-07-24T03:52:12.7852950Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1 2025-07-24T03:52:12.7853280Z /Library/Developer/CommandLineTools/usr/lib/clang/15.0.0/include 2025-07-24T03:52:12.7853600Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-07-24T03:52:12.7853870Z /Library/Developer/CommandLineTools/usr/include 2025-07-24T03:52:12.7854230Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory) 2025-07-24T03:52:12.7854520Z 2025-07-24T03:52:12.7854560Z End of search list. 2025-07-24T03:52:12.7854650Z 2025-07-24T03:52:12.7854660Z 2025-07-24T03:52:12.7854870Z /Users/ec2-user/runner/_work/pytorch/pytorch/build/CMakeFiles/FindOpenMP/OpenMPTryFlag.cpp:2:10: 2025-07-24T03:52:12.7855200Z fatal error: 'omp.h' file not found 2025-07-24T03:52:12.7855320Z 2025-07-24T03:52:12.7855370Z #include 2025-07-24T03:52:12.7855440Z 2025-07-24T03:52:12.7855480Z ^~~~~~~ 2025-07-24T03:52:12.7855560Z 2025-07-24T03:52:12.7855600Z 1 error generated. 2025-07-24T03:52:12.7855680Z 2025-07-24T03:52:12.7855750Z ninja: build stopped: subcommand failed. 2025-07-24T03:52:12.7855880Z 2025-07-24T03:52:12.7855880Z 2025-07-24T03:52:12.7855880Z 2025-07-24T03:52:12.7855950Z Call Stack (most recent call first): 2025-07-24T03:52:12.7856160Z cmake/Modules/FindOpenMP.cmake:551 (_OPENMP_GET_FLAGS) 2025-07-24T03:52:12.7856390Z cmake/Dependencies.cmake:929 (include) 2025-07-24T03:52:12.7856560Z CMakeLists.txt:865 (include) 2025-07-24T03:52:12.7856670Z 2025-07-24T03:52:12.7856670Z 2025-07-24T03:52:13.0881670Z -- Check OMP with lib /opt/homebrew/opt/libomp/lib/libomp.dylib and flags -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include -v 2025-07-24T03:52:13.5902270Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-07-24T03:52:13.8157790Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-07-24T03:52:13.8159100Z -- Found OpenMP: TRUE 2025-07-24T03:52:13.8160130Z -- Adding OpenMP CXX_FLAGS: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include 2025-07-24T03:52:13.8160550Z -- Will link against OpenMP libraries: /opt/homebrew/opt/libomp/lib/libomp.dylib 2025-07-24T03:52:13.8161710Z -- Found nvtx3: /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/NVTX/c/include 2025-07-24T03:52:13.9365260Z -- Found Python3: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/python (found version "3.12.11") found components: Interpreter 2025-07-24T03:52:13.9368490Z -- ONNX_PROTOC_EXECUTABLE: $ 2025-07-24T03:52:13.9368750Z -- Protobuf_VERSION: Protobuf_VERSION_NOTFOUND 2025-07-24T03:52:13.9370190Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-24T03:52:13.9371840Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-24T03:52:13.9373090Z Generated: /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-24T03:52:14.6093630Z -- 2025-07-24T03:52:14.6093800Z -- ******** Summary ******** 2025-07-24T03:52:14.6093980Z -- CMake version : 3.27.9 2025-07-24T03:52:14.6094550Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-07-24T03:52:14.6094960Z -- System : Darwin 2025-07-24T03:52:14.6095290Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ 2025-07-24T03:52:14.6095630Z -- C++ compiler version : 15.0.0.15000309 2025-07-24T03:52:14.6095950Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -Wnon-virtual-dtor 2025-07-24T03:52:14.6096250Z -- Build type : Release 2025-07-24T03:52:14.6096500Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1 2025-07-24T03:52:14.6096910Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/lib/python3.12/site-packages 2025-07-24T03:52:14.6097340Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-07-24T03:52:14.6097930Z -- CMAKE_MODULE_PATH : /Users/ec2-user/runner/_work/pytorch/pytorch/cmake/Modules;/Users/ec2-user/runner/_work/pytorch/pytorch/cmake/public/../Modules_CUDA_fix 2025-07-24T03:52:14.6098400Z -- 2025-07-24T03:52:14.6098530Z -- ONNX version : 1.18.0 2025-07-24T03:52:14.6098740Z -- ONNX NAMESPACE : onnx_torch 2025-07-24T03:52:14.6098960Z -- ONNX_USE_LITE_PROTO : OFF 2025-07-24T03:52:14.6099160Z -- USE_PROTOBUF_SHARED_LIBS : OFF 2025-07-24T03:52:14.6099370Z -- ONNX_DISABLE_EXCEPTIONS : OFF 2025-07-24T03:52:14.6099570Z -- ONNX_DISABLE_STATIC_REGISTRATION : OFF 2025-07-24T03:52:14.6099760Z -- ONNX_WERROR : OFF 2025-07-24T03:52:14.6099940Z -- ONNX_BUILD_TESTS : OFF 2025-07-24T03:52:14.6100130Z -- BUILD_SHARED_LIBS : OFF 2025-07-24T03:52:14.6100300Z -- 2025-07-24T03:52:14.6100500Z -- Protobuf compiler : $ 2025-07-24T03:52:14.6100750Z -- Protobuf includes : 2025-07-24T03:52:14.6100940Z -- Protobuf libraries : 2025-07-24T03:52:14.6101130Z -- ONNX_BUILD_PYTHON : OFF 2025-07-24T03:52:14.6101360Z CMake Warning at cmake/Dependencies.cmake:1443 (message): 2025-07-24T03:52:14.6101670Z Not compiling with MAGMA. Suppress this warning with -DUSE_MAGMA=OFF. 2025-07-24T03:52:14.6101940Z Call Stack (most recent call first): 2025-07-24T03:52:14.6102110Z CMakeLists.txt:865 (include) 2025-07-24T03:52:14.6102220Z 2025-07-24T03:52:14.6102220Z 2025-07-24T03:52:14.6102350Z -- Found CUDA with FP16 support, compiling with torch.cuda.HalfTensor 2025-07-24T03:52:14.6102610Z -- Adding -DNDEBUG to compile flags 2025-07-24T03:52:14.6117610Z -- No OMAP3 processor on this machine. 2025-07-24T03:52:14.6117840Z -- No OMAP4 processor on this machine. 2025-07-24T03:52:14.6118050Z -- Neon found with compiler flag : -D__NEON__ 2025-07-24T03:52:14.6133560Z -- Looking for cheev_ 2025-07-24T03:52:14.8573450Z -- Looking for cheev_ - found 2025-07-24T03:52:14.8573700Z -- Found a library with LAPACK API (accelerate). 2025-07-24T03:52:14.8574000Z disabling CUDA because NOT USE_CUDA is set 2025-07-24T03:52:14.8574210Z disabling ROCM because NOT USE_ROCM is set 2025-07-24T03:52:14.8574430Z disabling MKLDNN because USE_MKLDNN is not set 2025-07-24T03:52:14.8574670Z -- MIOpen not found. Compiling without MIOpen support 2025-07-24T03:52:14.9204430Z -- Looking for mmap 2025-07-24T03:52:15.1397860Z -- Looking for mmap - found 2025-07-24T03:52:15.1398060Z -- Looking for shm_open 2025-07-24T03:52:15.3591540Z -- Looking for shm_open - found 2025-07-24T03:52:15.3591750Z -- Looking for shm_unlink 2025-07-24T03:52:15.5764300Z -- Looking for shm_unlink - found 2025-07-24T03:52:15.5764550Z -- Looking for malloc_usable_size 2025-07-24T03:52:15.7960740Z -- Looking for malloc_usable_size - not found 2025-07-24T03:52:15.8055090Z -- {fmt} version: 11.2.0 2025-07-24T03:52:15.8055420Z -- Build type: Release 2025-07-24T03:52:15.8073560Z -- Performing Test HAS_NULLPTR_WARNING 2025-07-24T03:52:16.1095020Z -- Performing Test HAS_NULLPTR_WARNING - Success 2025-07-24T03:52:16.1160760Z -- Using CPU-only version of Kineto 2025-07-24T03:52:16.1160980Z -- Configuring Kineto dependency: 2025-07-24T03:52:16.1161310Z -- KINETO_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto 2025-07-24T03:52:16.1161630Z -- KINETO_BUILD_TESTS = OFF 2025-07-24T03:52:16.1161800Z -- KINETO_LIBRARY_TYPE = static 2025-07-24T03:52:16.1191110Z CMake Warning (dev) at third_party/kineto/libkineto/CMakeLists.txt:15 (find_package): 2025-07-24T03:52:16.1191510Z Policy CMP0148 is not set: The FindPythonInterp and FindPythonLibs modules 2025-07-24T03:52:16.1192480Z are removed. Run "cmake --help-policy CMP0148" for policy details. Use 2025-07-24T03:52:16.1192840Z the cmake_policy command to set the policy and suppress this warning. 2025-07-24T03:52:16.1193060Z 2025-07-24T03:52:16.1193190Z This warning is for project developers. Use -Wno-dev to suppress it. 2025-07-24T03:52:16.1193390Z 2025-07-24T03:52:16.1373460Z -- Found PythonInterp: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/python (found version "3.12.11") 2025-07-24T03:52:16.1374760Z -- CUDA_SOURCE_DIR = 2025-07-24T03:52:16.1375060Z -- ROCM_SOURCE_DIR = 2025-07-24T03:52:16.1564240Z -- CUPTI unavailable or disabled - not building GPU profilers 2025-07-24T03:52:16.1900300Z -- Kineto: FMT_SOURCE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt 2025-07-24T03:52:16.1900780Z -- Kineto: FMT_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/fmt/include 2025-07-24T03:52:16.1901120Z -- CUPTI_INCLUDE_DIR = /extras/CUPTI/include 2025-07-24T03:52:16.1901360Z -- ROCTRACER_INCLUDE_DIR = /include/roctracer 2025-07-24T03:52:16.1901780Z -- DYNOLOG_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog/ 2025-07-24T03:52:16.1902510Z -- IPCFABRIC_INCLUDE_DIR = /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/third_party/dynolog//dynolog/src/ipcfabric/ 2025-07-24T03:52:16.1930440Z -- Configured Kineto (CPU) 2025-07-24T03:52:16.1971110Z -- Running on macOS with Apple silicon 2025-07-24T03:52:16.1988090Z -- Performing Test HAS_WERROR_RETURN_TYPE 2025-07-24T03:52:16.4124790Z -- Performing Test HAS_WERROR_RETURN_TYPE - Success 2025-07-24T03:52:16.4129170Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR 2025-07-24T03:52:16.6435690Z -- Performing Test HAS_WERROR_NON_VIRTUAL_DTOR - Success 2025-07-24T03:52:16.6440050Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT 2025-07-24T03:52:16.8752920Z -- Performing Test HAS_WERROR_BRACED_SCALAR_INIT - Success 2025-07-24T03:52:16.8758020Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT 2025-07-24T03:52:17.1017840Z -- Performing Test HAS_WERROR_RANGE_LOOP_CONSTRUCT - Success 2025-07-24T03:52:17.1022210Z -- Performing Test HAS_WERROR_BOOL_OPERATION 2025-07-24T03:52:17.3291910Z -- Performing Test HAS_WERROR_BOOL_OPERATION - Success 2025-07-24T03:52:17.3296360Z -- Performing Test HAS_WNARROWING 2025-07-24T03:52:17.5704640Z -- Performing Test HAS_WNARROWING - Success 2025-07-24T03:52:17.5709140Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS 2025-07-24T03:52:17.7885150Z -- Performing Test HAS_WNO_MISSING_FIELD_INITIALIZERS - Success 2025-07-24T03:52:17.7889510Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS 2025-07-24T03:52:18.0507900Z -- Performing Test HAS_WNO_UNKNOWN_PRAGMAS - Success 2025-07-24T03:52:18.0512280Z -- Performing Test HAS_WNO_UNUSED_PARAMETER 2025-07-24T03:52:18.2701860Z -- Performing Test HAS_WNO_UNUSED_PARAMETER - Success 2025-07-24T03:52:18.2706350Z -- Performing Test HAS_WNO_STRICT_OVERFLOW 2025-07-24T03:52:18.4832810Z -- Performing Test HAS_WNO_STRICT_OVERFLOW - Success 2025-07-24T03:52:18.4837480Z -- Performing Test HAS_WNO_STRICT_ALIASING 2025-07-24T03:52:18.7053980Z -- Performing Test HAS_WNO_STRICT_ALIASING - Success 2025-07-24T03:52:18.7058610Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW 2025-07-24T03:52:18.9320780Z -- Performing Test HAS_WNO_STRINGOP_OVERFLOW - Failed 2025-07-24T03:52:18.9325250Z -- Performing Test HAS_WVLA_EXTENSION 2025-07-24T03:52:19.2025160Z -- Performing Test HAS_WVLA_EXTENSION - Success 2025-07-24T03:52:19.2029610Z -- Performing Test HAS_WSUGGEST_OVERRIDE 2025-07-24T03:52:19.4211900Z -- Performing Test HAS_WSUGGEST_OVERRIDE - Success 2025-07-24T03:52:19.4216520Z -- Performing Test HAS_WNEWLINE_EOF 2025-07-24T03:52:19.6393820Z -- Performing Test HAS_WNEWLINE_EOF - Success 2025-07-24T03:52:19.6398510Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE 2025-07-24T03:52:19.8535450Z -- Performing Test HAS_WINCONSISTENT_MISSING_OVERRIDE - Success 2025-07-24T03:52:19.8539890Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE 2025-07-24T03:52:20.1029760Z -- Performing Test HAS_WINCONSISTENT_MISSING_DESTRUCTOR_OVERRIDE - Success 2025-07-24T03:52:20.1034450Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST 2025-07-24T03:52:20.3179290Z -- Performing Test HAS_WNO_ERROR_OLD_STYLE_CAST - Success 2025-07-24T03:52:20.3183780Z -- Performing Test HAS_WCONSTANT_CONVERSION 2025-07-24T03:52:20.5376450Z -- Performing Test HAS_WCONSTANT_CONVERSION - Success 2025-07-24T03:52:20.5380950Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE 2025-07-24T03:52:20.7765830Z -- Performing Test HAS_WNO_ALIGNED_ALLOCATION_UNAVAILABLE - Failed 2025-07-24T03:52:20.7770260Z -- Performing Test HAS_QUNUSED_ARGUMENTS 2025-07-24T03:52:21.0139550Z -- Performing Test HAS_QUNUSED_ARGUMENTS - Success 2025-07-24T03:52:21.0144040Z -- Performing Test HAS_FALIGNED_NEW 2025-07-24T03:52:21.2500130Z -- Performing Test HAS_FALIGNED_NEW - Success 2025-07-24T03:52:21.2504670Z -- Performing Test HAS_WERROR 2025-07-24T03:52:21.4747780Z -- Performing Test HAS_WERROR - Success 2025-07-24T03:52:21.4752280Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED 2025-07-24T03:52:21.6268200Z -- Performing Test HAS_WNO_MAYBE_UNINITIALIZED - Failed 2025-07-24T03:52:21.6272600Z -- Performing Test HAS_FSTANDALONE_DEBUG 2025-07-24T03:52:21.8736090Z -- Performing Test HAS_FSTANDALONE_DEBUG - Success 2025-07-24T03:52:21.8740630Z -- Performing Test HAS_FNO_MATH_ERRNO 2025-07-24T03:52:22.1208650Z -- Performing Test HAS_FNO_MATH_ERRNO - Success 2025-07-24T03:52:22.1213030Z -- Performing Test HAS_FNO_TRAPPING_MATH 2025-07-24T03:52:22.3979130Z -- Performing Test HAS_FNO_TRAPPING_MATH - Success 2025-07-24T03:52:22.3983550Z -- Performing Test HAS_WERROR_FORMAT 2025-07-24T03:52:22.7335810Z -- Performing Test HAS_WERROR_FORMAT - Success 2025-07-24T03:52:22.7340670Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW 2025-07-24T03:52:22.9517930Z -- Performing Test HAS_WNO_UNGUARDED_AVAILABILITY_NEW - Success 2025-07-24T03:52:22.9522500Z -- Performing Test HAS_WNO_MISSING_BRACES 2025-07-24T03:52:23.1705550Z -- Performing Test HAS_WNO_MISSING_BRACES - Success 2025-07-24T03:52:23.1757340Z -- don't use NUMA 2025-07-24T03:52:23.1768370Z -- Looking for backtrace 2025-07-24T03:52:23.4538030Z -- Looking for backtrace - found 2025-07-24T03:52:23.4538310Z -- backtrace facility detected in default set of libraries 2025-07-24T03:52:23.4539810Z -- Found Backtrace: /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include 2025-07-24T03:52:25.1218320Z -- headers outputs: 2025-07-24T03:52:25.7913130Z -- sources outputs: 2025-07-24T03:52:26.3294370Z -- declarations_yaml outputs: 2025-07-24T03:52:26.4048590Z -- Using ATen parallel backend: OMP 2025-07-24T03:52:26.4059750Z disabling CUDA because USE_CUDA is set false 2025-07-24T03:52:26.4902930Z -- Found OpenSSL: /opt/homebrew/lib/libcrypto.dylib (found version "3.5.1") 2025-07-24T03:52:26.4927070Z -- Looking for sys/types.h 2025-07-24T03:52:26.7423480Z -- Looking for sys/types.h - found 2025-07-24T03:52:26.7423880Z -- Looking for stdint.h 2025-07-24T03:52:26.9803390Z -- Looking for stdint.h - found 2025-07-24T03:52:26.9803720Z -- Looking for stddef.h 2025-07-24T03:52:27.2003990Z -- Looking for stddef.h - found 2025-07-24T03:52:27.2004220Z -- Check size of long double 2025-07-24T03:52:27.4279800Z -- Check size of long double - done 2025-07-24T03:52:27.4280410Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 2025-07-24T03:52:27.6088890Z -- Performing Test COMPILER_SUPPORTS_FLOAT128 - Failed 2025-07-24T03:52:27.6104740Z -- Found OpenMP_C: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-07-24T03:52:27.6107260Z -- Found OpenMP_CXX: -Xpreprocessor -fopenmp -I/opt/homebrew/opt/libomp/include (found version "5.0") 2025-07-24T03:52:27.6108490Z -- Found OpenMP: TRUE (found version "5.0") 2025-07-24T03:52:27.6109510Z -- Performing Test COMPILER_SUPPORTS_OPENMP 2025-07-24T03:52:27.8312540Z -- Performing Test COMPILER_SUPPORTS_OPENMP - Failed 2025-07-24T03:52:27.8312830Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD 2025-07-24T03:52:28.0510520Z -- Performing Test COMPILER_SUPPORTS_OMP_SIMD - Failed 2025-07-24T03:52:28.0510830Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES 2025-07-24T03:52:28.2352480Z -- Performing Test COMPILER_SUPPORTS_WEAK_ALIASES - Failed 2025-07-24T03:52:28.2352900Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH 2025-07-24T03:52:28.4587600Z -- Performing Test COMPILER_SUPPORTS_BUILTIN_MATH - Success 2025-07-24T03:52:28.4587900Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM 2025-07-24T03:52:28.6218410Z -- Performing Test COMPILER_SUPPORTS_SYS_GETRANDOM - Failed 2025-07-24T03:52:28.6463260Z Target system: Darwin-23.4.0 2025-07-24T03:52:28.6463470Z -- Configuring build for SLEEF-v3.8.0 2025-07-24T03:52:28.6464150Z -- Using option `-Wall -Wno-unused-function -Wno-attributes -Wno-unused-result -ffp-contract=off -fno-math-errno -fno-trapping-math` to compile libsleef 2025-07-24T03:52:28.6464650Z -- Building shared libs : OFF 2025-07-24T03:52:28.6464830Z -- Building static test bins: OFF 2025-07-24T03:52:28.6465020Z -- MPFR : LIB_MPFR-NOTFOUND 2025-07-24T03:52:28.6465180Z -- GMP : LIBGMP-NOTFOUND 2025-07-24T03:52:28.6465310Z -- RT : 2025-07-24T03:52:28.6465440Z -- FFTW3 : LIBFFTW3-NOTFOUND 2025-07-24T03:52:28.6465610Z Target processor: arm64 2025-07-24T03:52:28.6465770Z Host system: Darwin-23.4.0 2025-07-24T03:52:28.6465920Z Host processor: arm64 2025-07-24T03:52:28.6466250Z Detected C compiler: AppleClang @ /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang 2025-07-24T03:52:28.6466580Z CMake: 3.27.9 2025-07-24T03:52:28.6466800Z Make program: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/ninja 2025-07-24T03:52:28.6467040Z -- OPENSSL : 3.5.1 2025-07-24T03:52:28.6467170Z -- SDE : SDE_COMMAND-NOTFOUND 2025-07-24T03:52:28.6467330Z -- COMPILER_SUPPORTS_OPENMP : 2025-07-24T03:52:28.6518720Z CMake Warning at cmake/Metal.cmake:59 (message): 2025-07-24T03:52:28.6519040Z Machine can not compile metal shaders, fails with xcrun: error: unable to 2025-07-24T03:52:28.6519640Z find utility "metal", not a developer tool or in PATH 2025-07-24T03:52:28.6519810Z 2025-07-24T03:52:28.6519870Z Call Stack (most recent call first): 2025-07-24T03:52:28.6520070Z aten/src/ATen/CMakeLists.txt:662 (include) 2025-07-24T03:52:28.6520220Z 2025-07-24T03:52:28.6520230Z 2025-07-24T03:52:28.6564150Z -- _CMAKE_OSX_SDKS: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX14.4.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX13.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX13.3.sdk;/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk 2025-07-24T03:52:28.6565170Z -- Toolchain using default OSX SDK: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk 2025-07-24T03:52:28.6566130Z -- CMAKE_FRAMEWORK_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/Frameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/PrivateFrameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/Developer/Library/Frameworks 2025-07-24T03:52:29.3762560Z AT_INSTALL_INCLUDE_DIR include/ATen/core 2025-07-24T03:52:29.3763000Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/TensorBody.h 2025-07-24T03:52:29.3763850Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/aten_interned_strings.h 2025-07-24T03:52:29.3764370Z core header install: /Users/ec2-user/runner/_work/pytorch/pytorch/build/aten/src/ATen/core/enum_tag.h 2025-07-24T03:52:29.5200720Z -- Performing Test HAS_WMISSING_PROTOTYPES 2025-07-24T03:52:29.7559500Z -- Performing Test HAS_WMISSING_PROTOTYPES - Success 2025-07-24T03:52:29.7564180Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES 2025-07-24T03:52:29.9752950Z -- Performing Test HAS_WERROR_MISSING_PROTOTYPES - Success 2025-07-24T03:52:30.0607500Z -- The OBJC compiler identification is AppleClang 15.0.0.15000309 2025-07-24T03:52:30.1235780Z -- The OBJCXX compiler identification is AppleClang 15.0.0.15000309 2025-07-24T03:52:30.1851450Z -- Detecting OBJC compiler ABI info 2025-07-24T03:52:30.4560630Z -- Detecting OBJC compiler ABI info - done 2025-07-24T03:52:30.4602700Z -- Check for working OBJC compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang - skipped 2025-07-24T03:52:30.5212270Z -- Detecting OBJCXX compiler ABI info 2025-07-24T03:52:30.7946490Z -- Detecting OBJCXX compiler ABI info - done 2025-07-24T03:52:30.7989880Z -- Check for working OBJCXX compiler: /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ - skipped 2025-07-24T03:52:30.8411180Z -- CMAKE_FRAMEWORK_PATH: /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/Frameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/System/Library/PrivateFrameworks;/Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk/Developer/Library/Frameworks 2025-07-24T03:52:30.8475210Z CMake Warning at CMakeLists.txt:1265 (message): 2025-07-24T03:52:30.8475540Z Generated cmake files are only fully tested if one builds with system glog, 2025-07-24T03:52:30.8476090Z gflags, and protobuf. Other settings may generate files that are not well 2025-07-24T03:52:30.8476360Z tested. 2025-07-24T03:52:30.8476430Z 2025-07-24T03:52:30.8476440Z 2025-07-24T03:52:30.8505290Z -- 2025-07-24T03:52:30.8505500Z -- ******** Summary ******** 2025-07-24T03:52:30.8505650Z -- General: 2025-07-24T03:52:30.8505770Z -- CMake version : 3.27.9 2025-07-24T03:52:30.8506270Z -- CMake command : /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/lib/python3.12/site-packages/cmake/data/bin/cmake 2025-07-24T03:52:30.8506720Z -- System : Darwin 2025-07-24T03:52:30.8507040Z -- C++ compiler : /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ 2025-07-24T03:52:30.8507390Z -- C++ compiler id : AppleClang 2025-07-24T03:52:30.8507590Z -- C++ compiler version : 15.0.0.15000309 2025-07-24T03:52:30.8507780Z -- Using ccache if found : ON 2025-07-24T03:52:30.8508170Z -- Found ccache : CCACHE_PROGRAM-NOTFOUND 2025-07-24T03:52:30.8510620Z -- CXX flags : -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DLIBKINETO_NOROCTRACER -DLIBKINETO_NOXPUPTI=ON -DUSE_PYTORCH_QNNPACK -DAT_BUILD_ARM_VEC256_WITH_SLEEF -DUSE_XNNPACK -DUSE_PYTORCH_METAL -DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -DC10_NODEPRECATED -Wall -Wextra -Werror=return-type -Werror=non-virtual-dtor -Werror=braced-scalar-init -Werror=range-loop-construct -Werror=bool-operation -Wnarrowing -Wno-missing-field-initializers -Wno-unknown-pragmas -Wno-unused-parameter -Wno-strict-overflow -Wno-strict-aliasing -Wvla-extension -Wsuggest-override -Wnewline-eof -Winconsistent-missing-override -Winconsistent-missing-destructor-override -Wno-pass-failed -Wno-error=old-style-cast -Wconstant-conversion -Qunused-arguments -faligned-new -Werror -fno-math-errno -fno-trapping-math -Werror=format -DUSE_MPS -Wno-missing-braces 2025-07-24T03:52:30.8513200Z -- Shared LD flags : -rdynamic -weak_framework Foundation -weak_framework MetalPerformanceShaders -weak_framework MetalPerformanceShadersGraph -weak_framework Metal 2025-07-24T03:52:30.8513670Z -- Static LD flags : 2025-07-24T03:52:30.8513970Z -- Module LD flags : 2025-07-24T03:52:30.8514120Z -- Build type : Release 2025-07-24T03:52:30.8514680Z -- Compile definitions : ONNX_ML=1;ONNXIFI_ENABLE_EXT=1;ONNX_NAMESPACE=onnx_torch;HAVE_MMAP=1;_FILE_OFFSET_BITS=64;HAVE_SHM_OPEN=1;HAVE_SHM_UNLINK=1;USE_EXTERNAL_MZCRC;MINIZ_DISABLE_ZIP_READER_CRC32_CHECKS;AT_BUILD_ARM_VEC256_WITH_SLEEF 2025-07-24T03:52:30.8515390Z -- CMAKE_PREFIX_PATH : /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/lib/python3.12/site-packages 2025-07-24T03:52:30.8515790Z -- CMAKE_INSTALL_PREFIX : /Users/ec2-user/runner/_work/pytorch/pytorch/torch 2025-07-24T03:52:30.8516090Z -- USE_GOLD_LINKER : OFF 2025-07-24T03:52:30.8516240Z -- 2025-07-24T03:52:30.8516340Z -- TORCH_VERSION : 2.9.0 2025-07-24T03:52:30.8516510Z -- BUILD_STATIC_RUNTIME_BENCHMARK: OFF 2025-07-24T03:52:30.8516710Z -- BUILD_BINARY : OFF 2025-07-24T03:52:30.8516860Z -- BUILD_CUSTOM_PROTOBUF : ON 2025-07-24T03:52:30.8517020Z -- Link local protobuf : ON 2025-07-24T03:52:30.8517170Z -- BUILD_PYTHON : True 2025-07-24T03:52:30.8517320Z -- Python version : 3.12.11 2025-07-24T03:52:30.8517590Z -- Python executable : /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/bin/python 2025-07-24T03:52:30.8517870Z -- Python library : 2025-07-24T03:52:30.8518190Z -- Python includes : /opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12/include/python3.12 2025-07-24T03:52:30.8518680Z -- Python site-package : /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/lib/python3.12/site-packages 2025-07-24T03:52:30.8518990Z -- BUILD_SHARED_LIBS : ON 2025-07-24T03:52:30.8519160Z -- CAFFE2_USE_MSVC_STATIC_RUNTIME : OFF 2025-07-24T03:52:30.8519340Z -- BUILD_TEST : False 2025-07-24T03:52:30.8519500Z -- BUILD_JNI : OFF 2025-07-24T03:52:30.8519650Z -- BUILD_MOBILE_AUTOGRAD : OFF 2025-07-24T03:52:30.8519880Z -- BUILD_LITE_INTERPRETER: OFF 2025-07-24T03:52:30.8520050Z -- CROSS_COMPILING_MACOSX : 2025-07-24T03:52:30.8520210Z -- INTERN_BUILD_MOBILE : 2025-07-24T03:52:30.8520360Z -- TRACING_BASED : OFF 2025-07-24T03:52:30.8520520Z -- USE_BLAS : 1 2025-07-24T03:52:30.8520680Z -- BLAS : accelerate 2025-07-24T03:52:30.8520850Z -- BLAS_HAS_SBGEMM : 2025-07-24T03:52:30.8521000Z -- USE_LAPACK : 1 2025-07-24T03:52:30.8521150Z -- LAPACK : accelerate 2025-07-24T03:52:30.8521320Z -- USE_ASAN : OFF 2025-07-24T03:52:30.8521470Z -- USE_TSAN : OFF 2025-07-24T03:52:30.8521620Z -- USE_CPP_CODE_COVERAGE : OFF 2025-07-24T03:52:30.8521780Z -- USE_CUDA : OFF 2025-07-24T03:52:30.8521920Z -- USE_XPU : OFF 2025-07-24T03:52:30.8522240Z -- USE_ROCM : OFF 2025-07-24T03:52:30.8522390Z -- BUILD_NVFUSER : 2025-07-24T03:52:30.8522540Z -- USE_EIGEN_FOR_BLAS : ON 2025-07-24T03:52:30.8522700Z -- USE_FBGEMM : OFF 2025-07-24T03:52:30.8522850Z -- USE_FAKELOWP : OFF 2025-07-24T03:52:30.8523010Z -- USE_KINETO : ON 2025-07-24T03:52:30.8523160Z -- USE_GFLAGS : OFF 2025-07-24T03:52:30.8523310Z -- USE_GLOG : OFF 2025-07-24T03:52:30.8523460Z -- USE_LITE_PROTO : OFF 2025-07-24T03:52:30.8523610Z -- USE_PYTORCH_METAL : 1 2025-07-24T03:52:30.8523800Z -- USE_PYTORCH_METAL_EXPORT : OFF 2025-07-24T03:52:30.8523980Z -- USE_MPS : ON 2025-07-24T03:52:30.8524140Z -- CAN_COMPILE_METAL : NO 2025-07-24T03:52:30.8524290Z -- USE_MKL : OFF 2025-07-24T03:52:30.8524440Z -- USE_MKLDNN : OFF 2025-07-24T03:52:30.8524590Z -- USE_KLEIDIAI : ON 2025-07-24T03:52:30.8524730Z -- USE_UCC : OFF 2025-07-24T03:52:30.8524890Z -- USE_ITT : OFF 2025-07-24T03:52:30.8525040Z -- USE_XCCL : OFF 2025-07-24T03:52:30.8525180Z -- USE_NCCL : OFF 2025-07-24T03:52:30.8525420Z -- Found NVSHMEM : 2025-07-24T03:52:30.8525560Z -- USE_NNPACK : ON 2025-07-24T03:52:30.8525710Z -- USE_NUMPY : ON 2025-07-24T03:52:30.8525860Z -- USE_OBSERVERS : ON 2025-07-24T03:52:30.8526010Z -- USE_OPENCL : OFF 2025-07-24T03:52:30.8526160Z -- USE_OPENMP : 1 2025-07-24T03:52:30.8526310Z -- USE_MIMALLOC : OFF 2025-07-24T03:52:30.8526460Z -- USE_VULKAN : OFF 2025-07-24T03:52:30.8526610Z -- USE_PROF : OFF 2025-07-24T03:52:30.8526760Z -- USE_PYTORCH_QNNPACK : ON 2025-07-24T03:52:30.8526910Z -- USE_XNNPACK : ON 2025-07-24T03:52:30.8527060Z -- USE_DISTRIBUTED : 0 2025-07-24T03:52:30.8527210Z -- Public Dependencies : 2025-07-24T03:52:30.8527710Z -- Private Dependencies : Threads::Threads;pthreadpool;cpuinfo;pytorch_qnnpack;nnpack;XNNPACK;microkernels-prod;fp16;caffe2::openmp;kleidiai;fmt::fmt-header-only;kineto 2025-07-24T03:52:30.8528190Z -- Public CUDA Deps. : 2025-07-24T03:52:30.8528350Z -- Private CUDA Deps. : 2025-07-24T03:52:30.8528500Z -- USE_COREML_DELEGATE : OFF 2025-07-24T03:52:30.8528670Z -- BUILD_LAZY_TS_BACKEND : ON 2025-07-24T03:52:30.8528830Z -- USE_ROCM_KERNEL_ASSERT : OFF 2025-07-24T03:52:30.8565310Z -- Configuring done (37.0s) 2025-07-24T03:52:31.8242520Z -- Generating done (0.8s) 2025-07-24T03:52:31.9623060Z CMake Warning: 2025-07-24T03:52:31.9623310Z Manually-specified variables were not used by the project: 2025-07-24T03:52:31.9623860Z 2025-07-24T03:52:31.9623960Z BUILD_ENVIRONMENT 2025-07-24T03:52:31.9624070Z 2025-07-24T03:52:31.9624070Z 2025-07-24T03:52:31.9645790Z -- Build files have been written to: /Users/ec2-user/runner/_work/pytorch/pytorch/build 2025-07-24T03:52:31.9828320Z cmake --build . --target install --config Release 2025-07-24T03:52:34.1033070Z [1/4] Generating ATen declarations_yaml 2025-07-24T03:52:36.2404100Z [2/4] Generating ATen headers 2025-07-24T03:52:37.3614860Z [3/4] Generating ATen sources 2025-07-24T03:52:37.5395720Z [1/5147] Building C object sleef/src/libm/CMakeFiles/mkrename.dir/mkrename.c.o 2025-07-24T03:52:37.5492990Z [2/5147] Building C object sleef/src/libm/CMakeFiles/mkrename_gnuabi.dir/mkrename_gnuabi.c.o 2025-07-24T03:52:37.5630830Z [3/5147] Building C object sleef/src/common/CMakeFiles/arraymap.dir/arraymap.c.o 2025-07-24T03:52:37.5752950Z [4/5147] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/utils/data/datapipes/datapipe.pyi 2025-07-24T03:52:37.5763030Z [5/5147] Building C object sleef/src/common/CMakeFiles/addSuffix.dir/addSuffix.c.o 2025-07-24T03:52:37.5914090Z [6/5147] Building C object sleef/src/common/CMakeFiles/common.dir/common.c.o 2025-07-24T03:52:37.5939290Z [7/5147] Building C object sleef/src/libm/CMakeFiles/mkdisp.dir/mkdisp.c.o 2025-07-24T03:52:37.5985990Z [8/5147] Building C object sleef/src/libm/CMakeFiles/mkmasked_gnuabi.dir/mkmasked_gnuabi.c.o 2025-07-24T03:52:37.6076500Z [9/5147] Building C object sleef/src/libm/CMakeFiles/mkalias.dir/mkalias.c.o 2025-07-24T03:52:37.6118640Z [10/5147] Linking C executable sleef/bin/mkrename 2025-07-24T03:52:37.6153830Z [11/5147] Linking C executable sleef/bin/mkrename_gnuabi 2025-07-24T03:52:37.6653080Z [12/5147] Generating include/renameadvsimdnofma.h 2025-07-24T03:52:37.6765450Z Generating renameadvsimdnofma.h: mkrename cinz_ 2 4 advsimdnofma 2025-07-24T03:52:37.6768590Z [13/5147] Generating include/renameadvsimd.h 2025-07-24T03:52:37.6768870Z Generating renameadvsimd.h: mkrename finz_ 2 4 advsimd 2025-07-24T03:52:37.6819140Z [14/5147] Linking C executable sleef/bin/addSuffix 2025-07-24T03:52:37.6963820Z [15/5147] Linking C executable sleef/bin/mkdisp 2025-07-24T03:52:37.6978710Z [16/5147] Linking C executable sleef/bin/mkalias 2025-07-24T03:52:37.6996480Z [17/5147] Building C object confu-deps/XNNPACK/CMakeFiles/allocator.dir/src/allocator.c.o 2025-07-24T03:52:37.7064020Z [18/5147] Generating include/renamepurecfma_scalar.h 2025-07-24T03:52:37.7071400Z Generating renamepurecfma_scalar.h: mkrename finz_ 1 1 purecfma 2025-07-24T03:52:37.7076360Z [19/5147] Generating include/renamepurec_scalar.h 2025-07-24T03:52:37.7080480Z Generating renamepurec_scalar.h: mkrename cinz_ 1 1 purec 2025-07-24T03:52:37.7268580Z [20/5147] Linking C executable sleef/bin/mkmasked_gnuabi 2025-07-24T03:52:37.8068550Z [21/5147] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimdsp.c.o 2025-07-24T03:52:37.8105710Z [22/5147] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimddp.c.o 2025-07-24T03:52:37.8113940Z [23/5147] Building C object sleef/src/libm/CMakeFiles/sleefpurecfma_scalar.dir/sleefsimdsp.c.o 2025-07-24T03:52:37.8144210Z [24/5147] Building CXX object confu-deps/XNNPACK/CMakeFiles/packing.dir/src/reference/packing.cc.o 2025-07-24T03:52:37.8196980Z [25/5147] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimdsp.c.o 2025-07-24T03:52:37.8216030Z [26/5147] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimdnofma.dir/sleefsimddp.c.o 2025-07-24T03:52:37.8308920Z [27/5147] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimddp.c.o 2025-07-24T03:52:37.8326000Z [28/5147] Generating include/renamecuda.h 2025-07-24T03:52:37.8334920Z Generating renamecuda.h: mkrename finz_ 1 1 cuda 2025-07-24T03:52:37.8390350Z [29/5147] Generating sleeflibm_ADVSIMD.h.tmp 2025-07-24T03:52:37.8420900Z [30/5147] Building C object sleef/src/libm/CMakeFiles/sleefadvsimdnofma.dir/sleefsimdsp.c.o 2025-07-24T03:52:37.8423660Z [31/5147] Generating sleeflibm_ADVSIMDNOFMA.h.tmp 2025-07-24T03:52:37.8446630Z [32/5147] Generating sleeflibm_ADVSIMD_.h.tmp 2025-07-24T03:52:37.8473300Z [33/5147] Generating sleeflibm_DSP_SCALAR.h.tmp 2025-07-24T03:52:37.8475760Z [34/5147] Generating sleeflibm_PURECFMA_SCALAR.h.tmp 2025-07-24T03:52:37.8510650Z [35/5147] Generating sleeflibm_PUREC_SCALAR.h.tmp 2025-07-24T03:52:37.8535400Z [36/5147] Generating sleeflibm_SVE.h.tmp 2025-07-24T03:52:37.8536380Z [37/5147] Generating sleeflibm_SVENOFMA.h.tmp 2025-07-24T03:52:37.8739200Z [38/5147] Generating ../../../include/sleef.h 2025-07-24T03:52:37.8988250Z [39/5147] Generating alias_ADVSIMD_dp.h.tmp 2025-07-24T03:52:37.8992700Z [40/5147] Generating alias_ADVSIMD_sp.h.tmp 2025-07-24T03:52:37.9028720Z [41/5147] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimddp.c.o 2025-07-24T03:52:37.9033140Z [42/5147] Generating include/renamedspscalar.h 2025-07-24T03:52:37.9072110Z [43/5147] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimdsp.c.o 2025-07-24T03:52:37.9082510Z [44/5147] Building C object sleef/src/libm/CMakeFiles/sleefpurec_scalar.dir/sleefsimdsp.c.o 2025-07-24T03:52:37.9097020Z [45/5147] Generating include/alias_advsimd.h 2025-07-24T03:52:37.9206310Z [46/5147] Building C object sleef/src/libm/CMakeFiles/sleefdetpurecfma_scalar.dir/sleefsimddp.c.o 2025-07-24T03:52:37.9308780Z [47/5147] Building C object sleef/src/libm/CMakeFiles/sleefdetpurec_scalar.dir/sleefsimddp.c.o 2025-07-24T03:52:37.9458480Z [48/5147] Generating dispscalar.c.body 2025-07-24T03:52:38.0139690Z [49/5147] Building C object confu-deps/XNNPACK/CMakeFiles/normalization.dir/src/normalization.c.o 2025-07-24T03:52:38.0159560Z [50/5147] Regenerating version file... 2025-07-24T03:52:38.0172560Z [51/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microparams-init.dir/src/microparams-init.c.o 2025-07-24T03:52:38.0183520Z [52/5147] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/log.c.o 2025-07-24T03:52:38.0209330Z [53/5147] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/operator-type.c.o 2025-07-24T03:52:38.0356910Z [54/5147] Generating dispscalar.c 2025-07-24T03:52:38.0450220Z [55/5147] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimdsp.c.o 2025-07-24T03:52:38.0470880Z [56/5147] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimddp.c.o 2025-07-24T03:52:38.0893150Z [57/5147] Building C object sleef/src/libm/CMakeFiles/sleefdetadvsimd.dir/sleefsimddp.c.o 2025-07-24T03:52:38.0921130Z [58/5147] Building C object sleef/src/libm/CMakeFiles/sleefadvsimd.dir/sleefsimdsp.c.o 2025-07-24T03:52:38.1094410Z [59/5147] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/allocation-type.c.o 2025-07-24T03:52:38.1103840Z [60/5147] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/datatype-strings.c.o 2025-07-24T03:52:38.1189040Z [61/5147] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/microkernel-type.c.o 2025-07-24T03:52:38.1417360Z [62/5147] Building C object sleef/src/libm/CMakeFiles/sleef.dir/rempitab.c.o 2025-07-24T03:52:38.1426750Z [63/5147] Building C object confu-deps/XNNPACK/CMakeFiles/logging.dir/src/enums/node-type.c.o 2025-07-24T03:52:38.1438610Z [64/5147] Building C object confu-deps/XNNPACK/CMakeFiles/indirection.dir/src/indirection.c.o 2025-07-24T03:52:38.1555280Z [65/5147] Building C object sleef/src/libm/CMakeFiles/dispscalar_obj.dir/dispscalar.c.o 2025-07-24T03:52:38.1868560Z [66/5147] Building C object confu-deps/XNNPACK/CMakeFiles/cache.dir/src/cache.c.o 2025-07-24T03:52:38.1871520Z [67/5147] Building C object confu-deps/XNNPACK/CMakeFiles/hardware-config.dir/src/configs/hardware-config.c.o 2025-07-24T03:52:38.2025880Z [68/5147] Building C object confu-deps/XNNPACK/CMakeFiles/datatype.dir/src/datatype.c.o 2025-07-24T03:52:38.2083890Z [69/5147] Building C object confu-deps/XNNPACK/CMakeFiles/memory.dir/src/memory.c.o 2025-07-24T03:52:38.2172400Z [70/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernel-utils.dir/src/microkernel-utils.c.o 2025-07-24T03:52:38.2347570Z [71/5147] Building C object confu-deps/XNNPACK/CMakeFiles/mutex.dir/src/mutex.c.o 2025-07-24T03:52:38.2405400Z [72/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/argmax-pooling-nhwc.c.o 2025-07-24T03:52:38.2636600Z [73/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operator-delete.c.o 2025-07-24T03:52:38.2913300Z [74/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/average-pooling-nhwc.c.o 2025-07-24T03:52:38.2947480Z [75/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/reduce-nd.c.o 2025-07-24T03:52:38.3048120Z [76/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/channel-shuffle-nc.c.o 2025-07-24T03:52:38.3101630Z [77/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/batch-matrix-multiply-nc.c.o 2025-07-24T03:52:38.3205900Z [78/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/binary-elementwise-nd.c.o 2025-07-24T03:52:38.3287500Z [79/5147] Linking C static library sleef/lib/libsleef.a 2025-07-24T03:52:38.3311060Z [80/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/constant-pad-nd.c.o 2025-07-24T03:52:38.3645230Z [81/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nhwc.c.o 2025-07-24T03:52:38.3726670Z [82/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/convolution-nchw.c.o 2025-07-24T03:52:38.3938890Z [83/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/deconvolution-nhwc.c.o 2025-07-24T03:52:38.3953480Z [84/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/dynamic-fully-connected-nc.c.o 2025-07-24T03:52:38.4194850Z [85/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/max-pooling-nhwc.c.o 2025-07-24T03:52:38.4241520Z [86/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/fully-connected-nc.c.o 2025-07-24T03:52:38.4376560Z [87/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/pack-lh.c.o 2025-07-24T03:52:38.4427210Z [88/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/slice-nd.c.o 2025-07-24T03:52:38.4626310Z [89/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nhwc.c.o 2025-07-24T03:52:38.4675620Z [90/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/rope-nthc.c.o 2025-07-24T03:52:38.5091400Z [91/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/scaled-dot-product-attention-nhtc.c.o 2025-07-24T03:52:38.5194520Z [92/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/softmax-nc.c.o 2025-07-24T03:52:38.5270360Z [93/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unary-elementwise-nc.c.o 2025-07-24T03:52:38.5270990Z [94/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/unpooling-nhwc.c.o 2025-07-24T03:52:38.5280650Z [95/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/transpose-nd.c.o 2025-07-24T03:52:38.5300050Z [96/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operators.dir/src/operators/resize-bilinear-nchw.c.o 2025-07-24T03:52:38.5526150Z [97/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operator-run.dir/src/operator-run.c.o 2025-07-24T03:52:38.5614480Z [98/5147] Building C object confu-deps/XNNPACK/CMakeFiles/operator-utils.dir/src/operator-utils.c.o 2025-07-24T03:52:38.6332190Z [99/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/memory-planner.c.o 2025-07-24T03:52:38.6488730Z [100/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph.c.o 2025-07-24T03:52:38.6503030Z [101/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/runtime.c.o 2025-07-24T03:52:38.6538460Z [102/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/concatenate.c.o 2025-07-24T03:52:38.6674450Z [103/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/argmax-pooling-2d.c.o 2025-07-24T03:52:38.6724370Z [104/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/average-pooling-2d.c.o 2025-07-24T03:52:38.6769360Z [105/5147] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/binary-elementwise.cc.o 2025-07-24T03:52:38.6896560Z [106/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/batch-matrix-multiply.c.o 2025-07-24T03:52:38.7279440Z [107/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/binary.c.o 2025-07-24T03:52:38.7339800Z [108/5147] Building CXX object confu-deps/XNNPACK/CMakeFiles/reference-ukernels.dir/src/reference/unary-elementwise.cc.o 2025-07-24T03:52:38.7538240Z [109/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/convolution-2d.c.o 2025-07-24T03:52:38.7547820Z [110/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/copy.c.o 2025-07-24T03:52:38.7561800Z [111/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deconvolution-2d.c.o 2025-07-24T03:52:38.7745510Z [112/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/deprecated.c.o 2025-07-24T03:52:38.7749220Z [113/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depth-to-space-2d.c.o 2025-07-24T03:52:38.7792130Z [114/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected-sparse.c.o 2025-07-24T03:52:38.7917900Z [115/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/depthwise-convolution-2d.c.o 2025-07-24T03:52:38.8341690Z [116/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/max-pooling-2d.c.o 2025-07-24T03:52:38.8532230Z [117/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/even-split.c.o 2025-07-24T03:52:38.8619110Z [118/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/pack-lh.c.o 2025-07-24T03:52:38.8631280Z [119/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/fully-connected.c.o 2025-07-24T03:52:38.8647250Z [120/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/reshape-helpers.c.o 2025-07-24T03:52:38.8829340Z [121/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/space-to-depth-2d.c.o 2025-07-24T03:52:38.8830210Z [122/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/scaled-dot-product-attention.c.o 2025-07-24T03:52:38.8900040Z [123/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/softmax.c.o 2025-07-24T03:52:38.8916080Z [124/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-resize-bilinear-2d.c.o 2025-07-24T03:52:38.9527590Z [125/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-constant-pad.c.o 2025-07-24T03:52:38.9744410Z [126/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-transpose.c.o 2025-07-24T03:52:38.9813330Z [127/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unary.c.o 2025-07-24T03:52:38.9974420Z [128/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/validation.c.o 2025-07-24T03:52:39.0003830Z [129/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-slice.c.o 2025-07-24T03:52:39.0005630Z [130/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/unpooling-2d.c.o 2025-07-24T03:52:39.0159140Z [131/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/subgraph/static-reduce.c.o 2025-07-24T03:52:39.0162740Z [132/5147] Building C object confu-deps/XNNPACK/CMakeFiles/subgraph.dir/src/tensor.c.o 2025-07-24T03:52:39.0250330Z [133/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.c.o 2025-07-24T03:52:39.0836180Z [134/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.c.o 2025-07-24T03:52:39.1089700Z [135/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.c.o 2025-07-24T03:52:39.1098870Z [136/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.c.o 2025-07-24T03:52:39.1301430Z [137/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.c.o 2025-07-24T03:52:39.1304720Z [138/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.c.o 2025-07-24T03:52:39.1355040Z [139/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.c.o 2025-07-24T03:52:39.1495770Z [140/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.c.o 2025-07-24T03:52:39.1504000Z [141/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.c.o 2025-07-24T03:52:39.1685480Z [142/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.c.o 2025-07-24T03:52:39.2103490Z [143/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.c.o 2025-07-24T03:52:39.2397300Z [144/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.c.o 2025-07-24T03:52:39.2609310Z [145/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.c.o 2025-07-24T03:52:39.2646560Z [146/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.c.o 2025-07-24T03:52:39.2795730Z [147/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.c.o 2025-07-24T03:52:39.2814410Z [148/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.c.o 2025-07-24T03:52:39.2862240Z [149/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.c.o 2025-07-24T03:52:39.2865090Z [150/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-07-24T03:52:39.3057450Z [151/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.c.o 2025-07-24T03:52:39.3421090Z [152/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.c.o 2025-07-24T03:52:39.3648390Z [153/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.c.o 2025-07-24T03:52:39.3976040Z [154/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.c.o 2025-07-24T03:52:39.3986870Z [155/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.c.o 2025-07-24T03:52:39.4045090Z [156/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.c.o 2025-07-24T03:52:39.4159570Z [157/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.c.o 2025-07-24T03:52:39.4230780Z [158/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.c.o 2025-07-24T03:52:39.4233900Z [159/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.c.o 2025-07-24T03:52:39.4727670Z [160/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.c.o 2025-07-24T03:52:39.4951380Z [161/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.c.o 2025-07-24T03:52:39.4983530Z [162/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.c.o 2025-07-24T03:52:39.5292800Z [163/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.c.o 2025-07-24T03:52:39.5440340Z [164/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.c.o 2025-07-24T03:52:39.5511880Z [165/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.c.o 2025-07-24T03:52:39.5531620Z [166/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.c.o 2025-07-24T03:52:39.5654530Z [167/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.c.o 2025-07-24T03:52:39.5685050Z [168/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.c.o 2025-07-24T03:52:39.6301130Z [169/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.c.o 2025-07-24T03:52:39.6337270Z [170/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.c.o 2025-07-24T03:52:39.6390750Z [171/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.c.o 2025-07-24T03:52:39.7512680Z [172/5147] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/os.cc.o 2025-07-24T03:52:39.7685920Z [173/5147] Building CXX object third_party/fmt/CMakeFiles/fmt.dir/src/format.cc.o 2025-07-24T03:52:39.7899850Z [174/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/ThreadUtil.cpp.o 2025-07-24T03:52:39.7901200Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/kineto/libkineto/src/ThreadUtil.cpp:86:23: warning: 'syscall' is deprecated: first deprecated in macOS 10.12 - syscall(2) is unsupported; please switch to a supported interface. For SYS_kdebug_trace use kdebug_signpost(). [-Wdeprecated-declarations] 2025-07-24T03:52:39.7902330Z sysTid = (int32_t)syscall(SYS_thread_selfid); 2025-07-24T03:52:39.7902550Z ^ 2025-07-24T03:52:39.7902980Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/unistd.h:748:6: note: 'syscall' has been explicitly marked deprecated here 2025-07-24T03:52:39.7903440Z int syscall(int, ...); 2025-07-24T03:52:39.7903580Z ^ 2025-07-24T03:52:39.7903690Z 1 warning generated. 2025-07-24T03:52:39.8130790Z [175/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_api.dir/src/libkineto_api.cpp.o 2025-07-24T03:52:39.8300120Z [176/5147] Linking CXX static library lib/libfmt.a 2025-07-24T03:52:39.8356400Z [177/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/AbstractConfig.cpp.o 2025-07-24T03:52:39.8654010Z [178/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Config.cpp.o 2025-07-24T03:52:39.9537910Z [179/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ApproximateClock.cpp.o 2025-07-24T03:52:39.9786230Z [180/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DaemonConfigLoader.cpp.o 2025-07-24T03:52:39.9846070Z [181/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerController.cpp.o 2025-07-24T03:52:39.9976800Z [182/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityProfilerProxy.cpp.o 2025-07-24T03:52:40.0192380Z [183/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityProfiler.cpp.o 2025-07-24T03:52:40.0215230Z [184/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ActivityType.cpp.o 2025-07-24T03:52:40.0483680Z [185/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ConfigLoader.cpp.o 2025-07-24T03:52:40.0718510Z [186/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceProperties.cpp.o 2025-07-24T03:52:40.0939820Z [187/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/CuptiActivityApi.cpp.o 2025-07-24T03:52:40.1209240Z [188/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/IpcFabricConfigClient.cpp.o 2025-07-24T03:52:40.1653340Z [189/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Demangle.cpp.o 2025-07-24T03:52:40.2033850Z [190/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/DeviceUtil.cpp.o 2025-07-24T03:52:40.2726660Z [191/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/GenericTraceActivity.cpp.o 2025-07-24T03:52:40.2858020Z [192/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/LoggingAPI.cpp.o 2025-07-24T03:52:40.3034400Z [193/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/ILoggerObserver.cpp.o 2025-07-24T03:52:40.3457260Z [194/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/init.cpp.o 2025-07-24T03:52:40.3498050Z [195/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_csv.cpp.o 2025-07-24T03:52:40.3683840Z [196/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/output_json.cpp.o 2025-07-24T03:52:40.3700850Z [197/5147] Building CXX object third_party/kineto/libkineto/CMakeFiles/kineto_base.dir/src/Logger.cpp.o 2025-07-24T03:52:40.3747840Z [198/5147] Building CXX object c10/CMakeFiles/c10.dir/core/AutogradState.cpp.o 2025-07-24T03:52:40.4025150Z [199/5147] Building CXX object c10/CMakeFiles/c10.dir/core/Allocator.cpp.o 2025-07-24T03:52:40.5407010Z [200/5147] Building CXX object c10/CMakeFiles/c10.dir/core/CopyBytes.cpp.o 2025-07-24T03:52:40.5472860Z [201/5147] Building CXX object c10/CMakeFiles/c10.dir/core/CPUAllocator.cpp.o 2025-07-24T03:52:40.5515260Z [202/5147] Building CXX object c10/CMakeFiles/c10.dir/core/ConstantSymNodeImpl.cpp.o 2025-07-24T03:52:40.5620450Z [203/5147] Linking CXX static library lib/libkineto.a 2025-07-24T03:52:40.6191240Z [204/5147] Building CXX object c10/CMakeFiles/c10.dir/core/Device.cpp.o 2025-07-24T03:52:40.6281880Z [205/5147] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKey.cpp.o 2025-07-24T03:52:40.6368190Z [206/5147] Building CXX object c10/CMakeFiles/c10.dir/core/DispatchKeySet.cpp.o 2025-07-24T03:52:40.6405800Z [207/5147] Building CXX object c10/CMakeFiles/c10.dir/core/DeviceType.cpp.o 2025-07-24T03:52:40.6448170Z [208/5147] Building CXX object c10/CMakeFiles/c10.dir/core/DefaultDtype.cpp.o 2025-07-24T03:52:40.6573360Z [209/5147] Building CXX object c10/CMakeFiles/c10.dir/core/GradMode.cpp.o 2025-07-24T03:52:40.7967570Z [210/5147] Building CXX object c10/CMakeFiles/c10.dir/core/InferenceMode.cpp.o 2025-07-24T03:52:40.8170610Z [211/5147] Building CXX object c10/CMakeFiles/c10.dir/core/RefcountedDeleter.cpp.o 2025-07-24T03:52:40.8538250Z [212/5147] Building CXX object c10/CMakeFiles/c10.dir/core/GeneratorImpl.cpp.o 2025-07-24T03:52:40.9117710Z [213/5147] Building CXX object c10/CMakeFiles/c10.dir/core/SafePyObject.cpp.o 2025-07-24T03:52:40.9413750Z [214/5147] Building CXX object c10/CMakeFiles/c10.dir/core/StorageImpl.cpp.o 2025-07-24T03:52:40.9486420Z [215/5147] Building CXX object c10/CMakeFiles/c10.dir/core/Stream.cpp.o 2025-07-24T03:52:40.9517750Z [216/5147] Building CXX object c10/CMakeFiles/c10.dir/core/Scalar.cpp.o 2025-07-24T03:52:40.9747430Z [217/5147] Building CXX object c10/CMakeFiles/c10.dir/core/Storage.cpp.o 2025-07-24T03:52:40.9783110Z [218/5147] Building CXX object c10/CMakeFiles/c10.dir/core/ScalarType.cpp.o 2025-07-24T03:52:41.0548890Z [219/5147] Building CXX object c10/CMakeFiles/c10.dir/core/SymFloat.cpp.o 2025-07-24T03:52:41.0986520Z [220/5147] Building CXX object c10/CMakeFiles/c10.dir/core/SymBool.cpp.o 2025-07-24T03:52:41.1192340Z [221/5147] Building CXX object c10/CMakeFiles/c10.dir/core/SymInt.cpp.o 2025-07-24T03:52:41.1787960Z [222/5147] Building CXX object c10/CMakeFiles/c10.dir/core/SymbolicShapeMeta.cpp.o 2025-07-24T03:52:41.1906210Z [223/5147] Building CXX object c10/CMakeFiles/c10.dir/core/SymNodeImpl.cpp.o 2025-07-24T03:52:41.1943330Z [224/5147] Building CXX object c10/CMakeFiles/c10.dir/core/SymIntArrayRef.cpp.o 2025-07-24T03:52:41.2180130Z [225/5147] Building CXX object c10/CMakeFiles/c10.dir/core/TensorImpl.cpp.o 2025-07-24T03:52:41.2548120Z [226/5147] Building CXX object c10/CMakeFiles/c10.dir/core/TensorOptions.cpp.o 2025-07-24T03:52:41.3006620Z [227/5147] Building CXX object c10/CMakeFiles/c10.dir/core/UndefinedTensorImpl.cpp.o 2025-07-24T03:52:41.3114820Z [228/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/HermeticPyObjectTLS.cpp.o 2025-07-24T03:52:41.3290610Z [229/5147] Building CXX object c10/CMakeFiles/c10.dir/core/WrapDimMinimal.cpp.o 2025-07-24T03:52:41.3422380Z [230/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COW.cpp.o 2025-07-24T03:52:41.3572080Z [231/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/COWDeleter.cpp.o 2025-07-24T03:52:41.4368390Z [232/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/LocalDispatchKeySet.cpp.o 2025-07-24T03:52:41.4395290Z [233/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/DeviceGuardImplInterface.cpp.o 2025-07-24T03:52:41.4515850Z [234/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/GPUTrace.cpp.o 2025-07-24T03:52:41.5523500Z [235/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PythonDispatcherTLS.cpp.o 2025-07-24T03:52:41.5550970Z [236/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/SizesAndStrides.cpp.o 2025-07-24T03:52:41.5589250Z [237/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyObjectSlot.cpp.o 2025-07-24T03:52:41.5789430Z [238/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/TorchDispatchModeTLS.cpp.o 2025-07-24T03:52:41.5920490Z [239/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/alloc_cpu.cpp.o 2025-07-24T03:52:41.5940160Z [240/5147] Building CXX object c10/CMakeFiles/c10.dir/core/impl/PyInterpreter.cpp.o 2025-07-24T03:52:41.6951780Z [241/5147] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUCachingAllocator.cpp.o 2025-07-24T03:52:41.7152200Z [242/5147] Building CXX object c10/CMakeFiles/c10.dir/core/thread_pool.cpp.o 2025-07-24T03:52:41.7744020Z [243/5147] Building CXX object c10/CMakeFiles/c10.dir/mobile/CPUProfilingAllocator.cpp.o 2025-07-24T03:52:41.7845010Z [244/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Bfloat16.cpp.o 2025-07-24T03:52:41.8026900Z [245/5147] Building CXX object c10/CMakeFiles/c10.dir/util/C++17.cpp.o 2025-07-24T03:52:41.8044510Z [246/5147] Building CXX object c10/CMakeFiles/c10.dir/util/DeadlockDetection.cpp.o 2025-07-24T03:52:41.8045610Z [247/5147] Building CXX object c10/CMakeFiles/c10.dir/util/ApproximateClock.cpp.o 2025-07-24T03:52:41.8058580Z [248/5147] Building CXX object c10/CMakeFiles/c10.dir/util/DynamicCounter.cpp.o 2025-07-24T03:52:41.8162120Z [249/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Backtrace.cpp.o 2025-07-24T03:52:41.9620570Z [250/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fn.cpp.o 2025-07-24T03:52:41.9738480Z [251/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Exception.cpp.o 2025-07-24T03:52:41.9897390Z [252/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e4m3fnuz.cpp.o 2025-07-24T03:52:42.0340720Z [253/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2.cpp.o 2025-07-24T03:52:42.0349050Z [254/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e5m2fnuz.cpp.o 2025-07-24T03:52:42.0556160Z [255/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Half.cpp.o 2025-07-24T03:52:42.0704380Z [256/5147] Building CXX object c10/CMakeFiles/c10.dir/util/LeftRight.cpp.o 2025-07-24T03:52:42.0719300Z [257/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Gauge.cpp.o 2025-07-24T03:52:42.0947270Z [258/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Float8_e8m0fnu.cpp.o 2025-07-24T03:52:42.1837620Z [259/5147] Building CXX object c10/CMakeFiles/c10.dir/util/ParallelGuard.cpp.o 2025-07-24T03:52:42.1976760Z [260/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Optional.cpp.o 2025-07-24T03:52:42.2235180Z [261/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Metaprogramming.cpp.o 2025-07-24T03:52:42.2816810Z [262/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Logging.cpp.o 2025-07-24T03:52:42.2841900Z [263/5147] Building CXX object c10/CMakeFiles/c10.dir/util/MathConstants.cpp.o 2025-07-24T03:52:42.3029470Z [264/5147] Building CXX object c10/CMakeFiles/c10.dir/util/SmallVector.cpp.o 2025-07-24T03:52:42.3301460Z [265/5147] Building CXX object c10/CMakeFiles/c10.dir/util/ThreadLocalDebugInfo.cpp.o 2025-07-24T03:52:42.3350400Z [266/5147] Building CXX object c10/CMakeFiles/c10.dir/util/StringUtil.cpp.o 2025-07-24T03:52:42.3406810Z [267/5147] Building CXX object c10/CMakeFiles/c10.dir/util/NetworkFlow.cpp.o 2025-07-24T03:52:42.4010680Z [268/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Unicode.cpp.o 2025-07-24T03:52:42.4191090Z [269/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Type_no_demangle.cpp.o 2025-07-24T03:52:42.4325190Z [270/5147] Building CXX object c10/CMakeFiles/c10.dir/util/TypeList.cpp.o 2025-07-24T03:52:42.4476110Z [271/5147] Building CXX object c10/CMakeFiles/c10.dir/util/TypeCast.cpp.o 2025-07-24T03:52:42.4883070Z [272/5147] Building CXX object c10/CMakeFiles/c10.dir/util/UniqueVoidPtr.cpp.o 2025-07-24T03:52:42.4936620Z [273/5147] Building CXX object c10/CMakeFiles/c10.dir/util/TypeTraits.cpp.o 2025-07-24T03:52:42.5288540Z [274/5147] Building CXX object c10/CMakeFiles/c10.dir/util/Type_demangle.cpp.o 2025-07-24T03:52:42.5302040Z [275/5147] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_gflags.cpp.o 2025-07-24T03:52:42.5523740Z [276/5147] Building CXX object c10/CMakeFiles/c10.dir/util/WaitCounter.cpp.o 2025-07-24T03:52:42.5595370Z [277/5147] Building CXX object c10/CMakeFiles/c10.dir/util/complex_math.cpp.o 2025-07-24T03:52:42.6153910Z [278/5147] Building CXX object c10/CMakeFiles/c10.dir/util/error.cpp.o 2025-07-24T03:52:42.6396100Z [279/5147] Building CXX object c10/CMakeFiles/c10.dir/util/env.cpp.o 2025-07-24T03:52:42.7065520Z [280/5147] Building CXX object c10/CMakeFiles/c10.dir/util/flags_use_no_gflags.cpp.o 2025-07-24T03:52:42.7743820Z [281/5147] Building CXX object c10/CMakeFiles/c10.dir/util/thread_name.cpp.o 2025-07-24T03:52:42.7844940Z [282/5147] Building CXX object c10/CMakeFiles/c10.dir/util/int128.cpp.o 2025-07-24T03:52:42.7863370Z [283/5147] Building CXX object c10/CMakeFiles/c10.dir/util/intrusive_ptr.cpp.o 2025-07-24T03:52:42.7980990Z [284/5147] Building CXX object c10/CMakeFiles/c10.dir/util/numa.cpp.o 2025-07-24T03:52:42.7997390Z [285/5147] Building CXX object c10/CMakeFiles/c10.dir/util/tempfile.cpp.o 2025-07-24T03:52:42.8064430Z [286/5147] Building C object caffe2/CMakeFiles/torch_global_deps.dir/__/torch/csrc/empty.c.o 2025-07-24T03:52:42.8084570Z [287/5147] Building CXX object c10/CMakeFiles/c10.dir/util/signal_handler.cpp.o 2025-07-24T03:52:42.9211860Z [288/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:42.9335700Z [289/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:42.9337760Z [290/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma.c.o 2025-07-24T03:52:42.9340410Z [291/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma.c.o 2025-07-24T03:52:42.9423830Z [292/5147] Linking C shared library lib/libtorch_global_deps.dylib 2025-07-24T03:52:42.9534250Z [293/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:42.9595540Z [294/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:43.0508320Z [295/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-07-24T03:52:43.0563820Z [296/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.0654110Z [297/5147] Building CXX object c10/CMakeFiles/c10.dir/util/typeid.cpp.o 2025-07-24T03:52:43.0670310Z [298/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-07-24T03:52:43.0815200Z [299/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neonfma.c.o 2025-07-24T03:52:43.0819920Z [300/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.0954220Z [301/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neonfma-dup-ld128.c.o 2025-07-24T03:52:43.0956830Z [302/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neonfma.c.o 2025-07-24T03:52:43.1909280Z [303/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.1933470Z [304/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neonfma.c.o 2025-07-24T03:52:43.1936250Z [305/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.1992470Z [306/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neonfma-dup-ld128.c.o 2025-07-24T03:52:43.2094330Z [307/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p4.c.o 2025-07-24T03:52:43.2096500Z [308/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p16.c.o 2025-07-24T03:52:43.2117820Z [309/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neonfma.c.o 2025-07-24T03:52:43.2150800Z [310/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neonfma.c.o 2025-07-24T03:52:43.3257000Z [311/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld128.c.o 2025-07-24T03:52:43.3294660Z [312/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.3303380Z [313/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neonfma.c.o 2025-07-24T03:52:43.3373900Z [314/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.3414250Z [315/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld128.c.o 2025-07-24T03:52:43.3448300Z [316/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c4.c.o 2025-07-24T03:52:43.3451240Z [317/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.3533950Z [318/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.4633680Z [319/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.4637220Z [320/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u8-acc2.c.o 2025-07-24T03:52:43.4663500Z [321/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.4670570Z [322/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u4.c.o 2025-07-24T03:52:43.4677890Z [323/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8s4-minmax-neonfma.c.o 2025-07-24T03:52:43.4753020Z [324/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.4777820Z [325/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8s4-minmax-neonfma.c.o 2025-07-24T03:52:43.4946140Z [326/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neonfma-dup-ld64.c.o 2025-07-24T03:52:43.5822920Z [327/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc2.c.o 2025-07-24T03:52:43.5919860Z [328/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u16-acc4.c.o 2025-07-24T03:52:43.5925620Z [329/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u4.c.o 2025-07-24T03:52:43.6069690Z [330/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-pipelined.c.o 2025-07-24T03:52:43.6074250Z [331/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8s4-minmax-neonfma.c.o 2025-07-24T03:52:43.6080380Z [332/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma-x2.c.o 2025-07-24T03:52:43.6159220Z [333/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16-acc4.c.o 2025-07-24T03:52:43.6403460Z [334/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-p5-u8-acc2.c.o 2025-07-24T03:52:43.7057670Z [335/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neonfma.c.o 2025-07-24T03:52:43.7170480Z [336/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-pipelined.c.o 2025-07-24T03:52:43.7305710Z [337/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma-x2.c.o 2025-07-24T03:52:43.7606080Z [338/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neonfma.c.o 2025-07-24T03:52:43.7630150Z [339/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neonfma.c.o 2025-07-24T03:52:43.7648380Z [340/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-pipelined.c.o 2025-07-24T03:52:43.7863320Z [341/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma.c.o 2025-07-24T03:52:43.8153190Z [342/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neonfma-x2.c.o 2025-07-24T03:52:43.8341560Z [343/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma.c.o 2025-07-24T03:52:43.8345110Z [344/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-x2.c.o 2025-07-24T03:52:43.8801460Z [345/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u4.c.o 2025-07-24T03:52:43.8882900Z [346/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u8.c.o 2025-07-24T03:52:43.8889470Z [347/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u4.c.o 2025-07-24T03:52:43.9036880Z [348/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u12.c.o 2025-07-24T03:52:43.9093960Z [349/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neonfma-2x.c.o 2025-07-24T03:52:43.9241430Z [350/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u8.c.o 2025-07-24T03:52:43.9697260Z [351/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u4.c.o 2025-07-24T03:52:43.9797340Z [352/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u12.c.o 2025-07-24T03:52:44.0050280Z [353/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u16.c.o 2025-07-24T03:52:44.0093850Z [354/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u12.c.o 2025-07-24T03:52:44.0160900Z [355/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-24T03:52:44.0264240Z [356/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-24T03:52:44.0450360Z [357/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u4.c.o 2025-07-24T03:52:44.0550650Z [358/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-neon-ld4lane-u8.c.o 2025-07-24T03:52:44.1037690Z [359/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4.c.o 2025-07-24T03:52:44.1077900Z [360/5147] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/_C/__init__.pyi, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/_C/_VariableFunctions.pyi, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/nn/functional.pyi 2025-07-24T03:52:44.1147630Z [361/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8.c.o 2025-07-24T03:52:44.1263660Z [362/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u8-prfm.c.o 2025-07-24T03:52:44.1330580Z [363/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-4x-neon-st4-u4-prfm.c.o 2025-07-24T03:52:44.1433410Z [364/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-mov-zip-neon.c.o 2025-07-24T03:52:44.1630400Z [365/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8-prfm.c.o 2025-07-24T03:52:44.2105700Z [366/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4-prfm.c.o 2025-07-24T03:52:44.2152220Z [367/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u8.c.o 2025-07-24T03:52:44.2231240Z [368/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-multi-zip-neon.c.o 2025-07-24T03:52:44.2334400Z [369/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-dec-zip-neon.c.o 2025-07-24T03:52:44.2338900Z [370/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/gen/x32-packx-8x-neon-st4-u4.c.o 2025-07-24T03:52:44.2508040Z [371/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-dec-zip-neon.c.o 2025-07-24T03:52:44.2537400Z [372/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-mov-zip-neon.c.o 2025-07-24T03:52:44.3038260Z [373/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-multi-switch-zip-neon.c.o 2025-07-24T03:52:44.3270150Z [374/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-multi-zip-neon.c.o 2025-07-24T03:52:44.3390260Z [375/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-mov-zip-neon.c.o 2025-07-24T03:52:44.3424830Z [376/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-switch-zip-neon.c.o 2025-07-24T03:52:44.3647900Z [377/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-reuse-switch-zip-neon.c.o 2025-07-24T03:52:44.3657790Z [378/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-multi-zip-neon.c.o 2025-07-24T03:52:44.3768700Z [379/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-multi-dec-zip-neon.c.o 2025-07-24T03:52:44.3864970Z [380/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-multi-zip-neon.c.o 2025-07-24T03:52:44.4305600Z [381/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-switch-zip-neon.c.o 2025-07-24T03:52:44.4384420Z [382/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-mov-zip-neon.c.o 2025-07-24T03:52:44.4459690Z [383/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-mov-zip-neon.c.o 2025-07-24T03:52:44.4487660Z [384/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-multi-zip-neon.c.o 2025-07-24T03:52:44.4757670Z [385/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-switch-zip-neon.c.o 2025-07-24T03:52:44.4998520Z [386/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-switch-zip-neon.c.o 2025-07-24T03:52:44.5026960Z [387/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-multi-zip-neon.c.o 2025-07-24T03:52:44.5193670Z [388/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma-acc2.c.o 2025-07-24T03:52:44.5241160Z [389/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-mov-zip-neon.c.o 2025-07-24T03:52:44.5868610Z [390/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u8.c.o 2025-07-24T03:52:44.5884310Z [391/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-zip.c.o 2025-07-24T03:52:44.5945680Z [392/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u8.c.o 2025-07-24T03:52:44.5973240Z [393/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-1x4c8-minmax-neonfma-shland.c.o 2025-07-24T03:52:44.6187750Z [394/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-shland.c.o 2025-07-24T03:52:44.6261390Z [395/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-shland.c.o 2025-07-24T03:52:44.6314190Z [396/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-2x4c8-minmax-neonfma-zip.c.o 2025-07-24T03:52:44.6774710Z [397/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-shland.c.o 2025-07-24T03:52:44.6904900Z [398/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-3x4c8-minmax-neonfma-zip.c.o 2025-07-24T03:52:44.7450780Z [399/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma.c.o 2025-07-24T03:52:44.7466220Z [400/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:44.7559820Z [401/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-zip.c.o 2025-07-24T03:52:44.7586740Z [402/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-4x4c8-minmax-neonfma-zip.c.o 2025-07-24T03:52:44.7587490Z [403/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:44.7621770Z [404/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/bf16-gemm/gen/bf16-gemm-5x4c8-minmax-neonfma-shland.c.o 2025-07-24T03:52:44.7647340Z [405/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:44.8446750Z [406/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neonfma.c.o 2025-07-24T03:52:44.8547070Z [407/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:44.8818550Z [408/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma.c.o 2025-07-24T03:52:44.8820610Z [409/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:44.8880480Z [410/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:44.8977540Z [411/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neonfma.c.o 2025-07-24T03:52:44.8981630Z [412/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma.c.o 2025-07-24T03:52:44.9642990Z [413/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma-acc2.c.o 2025-07-24T03:52:44.9708610Z [414/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma-acc2.c.o 2025-07-24T03:52:44.9720260Z [415/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neonfma.c.o 2025-07-24T03:52:44.9827120Z [416/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neonfma.c.o 2025-07-24T03:52:45.0036000Z [417/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neonfma.c.o 2025-07-24T03:52:45.0192830Z [418/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma.c.o 2025-07-24T03:52:45.0347660Z [419/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma.c.o 2025-07-24T03:52:45.0461270Z [420/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neonfma-acc2.c.o 2025-07-24T03:52:45.0617200Z [421/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neonfma-acc2.c.o 2025-07-24T03:52:45.0916060Z [422/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma.c.o 2025-07-24T03:52:45.0979500Z [423/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr1recps1fma-u16.c.o 2025-07-24T03:52:45.1215900Z [424/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:45.1275090Z [425/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:45.1285190Z [426/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:45.1480140Z [427/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neonfma.c.o 2025-07-24T03:52:45.1561170Z [428/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma-acc2.c.o 2025-07-24T03:52:45.1753770Z [429/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u4.c.o 2025-07-24T03:52:45.1797360Z [430/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neonfma.c.o 2025-07-24T03:52:45.2654970Z [431/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:45.2665250Z [432/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:45.2669470Z [433/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:45.2730750Z [434/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:45.2833860Z [435/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-6x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:45.2894350Z [436/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:45.2966790Z [437/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:45.3632010Z [438/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:45.3752570Z [439/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:45.3859030Z [440/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:45.3929730Z [441/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:45.3944460Z [442/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:45.3956180Z [443/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:45.4118400Z [444/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:45.4127710Z [445/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u16.c.o 2025-07-24T03:52:45.4279460Z [446/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-6x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:45.4992410Z [447/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u64.c.o 2025-07-24T03:52:45.5008920Z [448/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc2.c.o 2025-07-24T03:52:45.5193960Z [449/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-neon-u64-acc4.c.o 2025-07-24T03:52:45.5249350Z [450/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u8.c.o 2025-07-24T03:52:45.5434230Z [451/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u16.c.o 2025-07-24T03:52:45.5514440Z [452/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u8.c.o 2025-07-24T03:52:45.5644000Z [453/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u8.c.o 2025-07-24T03:52:45.5647950Z [454/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld128-u16.c.o 2025-07-24T03:52:45.5658200Z [455/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld128-u16.c.o 2025-07-24T03:52:45.6262340Z [456/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u8.c.o 2025-07-24T03:52:45.6322460Z [457/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-07-24T03:52:45.6344860Z [458/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u16.c.o 2025-07-24T03:52:45.6472370Z [459/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-dec-zip-neon.c.o 2025-07-24T03:52:45.6697840Z [460/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-07-24T03:52:45.6799610Z [461/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-07-24T03:52:45.6891490Z [462/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-07-24T03:52:45.6991710Z [463/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-07-24T03:52:45.7005040Z [464/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-07-24T03:52:45.7597750Z [465/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-07-24T03:52:45.7723250Z [466/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-07-24T03:52:45.7813300Z [467/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-07-24T03:52:45.7816760Z [468/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-07-24T03:52:45.7956550Z [469/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-2p2x-minmax-neon-c16.c.o 2025-07-24T03:52:45.8115700Z [470/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-maxpool/s8-maxpool-4p3x-minmax-neon-c16.c.o 2025-07-24T03:52:45.8285370Z [471/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-switch-zip-neon.c.o 2025-07-24T03:52:45.8333800Z [472/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-multi-mov-zip-neon.c.o 2025-07-24T03:52:45.8354530Z [473/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-dec-zip-neon.c.o 2025-07-24T03:52:45.8984960Z [474/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-multi-zip-neon.c.o 2025-07-24T03:52:45.8992510Z [475/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-mov-zip-neon.c.o 2025-07-24T03:52:45.9084110Z [476/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-switch-zip-neon.c.o 2025-07-24T03:52:45.9235790Z [477/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-24T03:52:45.9237290Z [478/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-8x8-reuse-switch-zip-neon.c.o 2025-07-24T03:52:45.9399830Z [479/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u12-prfm.c.o 2025-07-24T03:52:45.9570700Z [480/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u16-prfm.c.o 2025-07-24T03:52:45.9598930Z [481/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u4.c.o 2025-07-24T03:52:45.9795110Z [482/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-mov-zip-neon.c.o 2025-07-24T03:52:46.0297950Z [483/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u12-prfm.c.o 2025-07-24T03:52:46.0309210Z [484/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u12.c.o 2025-07-24T03:52:46.0318480Z [485/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-24T03:52:46.0385450Z [486/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u8.c.o 2025-07-24T03:52:46.0487110Z [487/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u16.c.o 2025-07-24T03:52:46.0520140Z [488/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u12.c.o 2025-07-24T03:52:46.0816330Z [489/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u4.c.o 2025-07-24T03:52:46.0955970Z [490/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u8.c.o 2025-07-24T03:52:46.1343480Z [491/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u16-prfm.c.o 2025-07-24T03:52:46.1488960Z [492/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-mov-zip-neon.c.o 2025-07-24T03:52:46.1612340Z [493/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-dec-zip-neon.c.o 2025-07-24T03:52:46.1629560Z [494/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u16.c.o 2025-07-24T03:52:46.1638720Z [495/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-multi-zip-neon.c.o 2025-07-24T03:52:46.1649530Z [496/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-multi-switch-zip-neon.c.o 2025-07-24T03:52:46.1677670Z [497/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-dec-zip-neon.c.o 2025-07-24T03:52:46.1895580Z [498/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-mov-zip-neon.c.o 2025-07-24T03:52:46.2320700Z [499/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-multi-zip-neon.c.o 2025-07-24T03:52:46.2594910Z [500/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-reuse-switch-zip-neon.c.o 2025-07-24T03:52:46.2703790Z [501/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-dec-zip-neon.c.o 2025-07-24T03:52:46.2834220Z [502/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-mov-zip-neon.c.o 2025-07-24T03:52:46.2888360Z [503/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-multi-switch-zip-neon.c.o 2025-07-24T03:52:46.2937970Z [504/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-mov-zip-neon.c.o 2025-07-24T03:52:46.3058210Z [505/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-multi-zip-neon.c.o 2025-07-24T03:52:46.3116350Z [506/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-switch-zip-neon.c.o 2025-07-24T03:52:46.3179280Z [507/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u4.c.o 2025-07-24T03:52:46.3593650Z [508/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-24T03:52:46.3890530Z [509/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-gio-neon-u2.c.o 2025-07-24T03:52:46.3921250Z [510/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-neon-ld2lane-u2.c.o 2025-07-24T03:52:46.4111750Z [511/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u8.c.o 2025-07-24T03:52:46.4163340Z [512/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u4.c.o 2025-07-24T03:52:46.4354870Z [513/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-24T03:52:46.4362840Z [514/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-24T03:52:46.4393100Z [515/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-24T03:52:46.4579830Z [516/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u8.c.o 2025-07-24T03:52:46.4834920Z [517/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u8.c.o 2025-07-24T03:52:46.4987530Z [518/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u4.c.o 2025-07-24T03:52:46.5161380Z [519/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x12-gemm-goi-neon-ld4lane-u8.c.o 2025-07-24T03:52:46.5397470Z [520/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:46.5528300Z [521/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:52:46.5830590Z [522/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:46.5906410Z [523/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:52:46.6020390Z [524/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:46.6046740Z [525/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:52:46.6216670Z [526/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:52:46.6527250Z [527/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:52:46.6548380Z [528/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:46.6815290Z [529/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:46.7072260Z [530/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u16.c.o 2025-07-24T03:52:46.7225220Z [531/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c16.c.o 2025-07-24T03:52:46.7266380Z [532/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u8.c.o 2025-07-24T03:52:46.7286140Z [533/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc2.c.o 2025-07-24T03:52:46.7307730Z [534/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neon-u64-acc4.c.o 2025-07-24T03:52:46.7539730Z [535/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c64.c.o 2025-07-24T03:52:46.7980820Z [536/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u8.c.o 2025-07-24T03:52:46.8195970Z [537/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u24.c.o 2025-07-24T03:52:46.8206030Z [538/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u16.c.o 2025-07-24T03:52:46.8224930Z [539/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld128-u32.c.o 2025-07-24T03:52:46.8815550Z [540/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u8.c.o 2025-07-24T03:52:46.8827170Z [541/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u16.c.o 2025-07-24T03:52:46.8845640Z [542/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u24.c.o 2025-07-24T03:52:46.8954950Z [543/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u32.c.o 2025-07-24T03:52:46.9108300Z [544/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld128-u16.c.o 2025-07-24T03:52:46.9356970Z [545/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u8.c.o 2025-07-24T03:52:46.9506110Z [546/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:46.9552190Z [547/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u8.c.o 2025-07-24T03:52:46.9600090Z [548/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u16.c.o 2025-07-24T03:52:47.0171890Z [549/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld64-u16.c.o 2025-07-24T03:52:47.0221470Z [550/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld128-u16.c.o 2025-07-24T03:52:47.0229640Z [551/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neon-ld128-u16.c.o 2025-07-24T03:52:47.0315510Z [552/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u8.c.o 2025-07-24T03:52:47.0697670Z [553/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u8.c.o 2025-07-24T03:52:47.1067140Z [554/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld128-u16.c.o 2025-07-24T03:52:47.1113240Z [555/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u8.c.o 2025-07-24T03:52:47.1133500Z [556/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neon-ld64-u16.c.o 2025-07-24T03:52:47.1237470Z [557/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.1324870Z [558/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld128-u16.c.o 2025-07-24T03:52:47.1447850Z [559/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.1505030Z [560/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.1663160Z [561/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.2207990Z [562/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.2449680Z [563/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.2660240Z [564/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.2670630Z [565/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.2713090Z [566/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.2723500Z [567/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.2922140Z [568/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.3042610Z [569/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.3180260Z [570/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.3618680Z [571/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.3753940Z [572/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.3996080Z [573/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.4080280Z [574/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.4113800Z [575/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.4256930Z [576/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.4296260Z [577/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.4523030Z [578/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.4750730Z [579/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.4879300Z [580/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.5089750Z [581/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.5318930Z [582/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.5380300Z [583/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.5468550Z [584/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.5644760Z [585/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.5924520Z [586/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.5956350Z [587/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.6248420Z [588/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.6363150Z [589/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.6565440Z [590/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.6758280Z [591/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.6787350Z [592/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.6815020Z [593/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.7024400Z [594/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.7488510Z [595/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.7541680Z [596/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.7704780Z [597/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:52:47.7909080Z [598/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:52:47.8233780Z [599/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u8.c.o 2025-07-24T03:52:47.8236620Z [600/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:52:47.8280250Z [601/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u16.c.o 2025-07-24T03:52:47.8421920Z [602/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:47.8533360Z [603/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:47.8866220Z [604/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u24.c.o 2025-07-24T03:52:47.9118400Z [605/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:47.9386560Z [606/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:52:47.9396740Z [607/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:52:47.9679680Z [608/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u4.c.o 2025-07-24T03:52:47.9732320Z [609/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u1.c.o 2025-07-24T03:52:47.9781190Z [610/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u4.c.o 2025-07-24T03:52:47.9894450Z [611/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u1.c.o 2025-07-24T03:52:48.0065690Z [612/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u4.c.o 2025-07-24T03:52:48.0083210Z [613/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-fp16arith-u2.c.o 2025-07-24T03:52:48.0362340Z [614/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u1.c.o 2025-07-24T03:52:48.0565430Z [615/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u4.c.o 2025-07-24T03:52:48.0759390Z [616/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-fp16arith-u2.c.o 2025-07-24T03:52:48.1089060Z [617/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u1.c.o 2025-07-24T03:52:48.1178590Z [618/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u4.c.o 2025-07-24T03:52:48.1246680Z [619/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-fp16arith-u2.c.o 2025-07-24T03:52:48.1259950Z [620/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u1.c.o 2025-07-24T03:52:48.1372730Z [621/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u4.c.o 2025-07-24T03:52:48.1381170Z [622/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-fp16arith-u2.c.o 2025-07-24T03:52:48.2018130Z [623/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u4.c.o 2025-07-24T03:52:48.2119540Z [624/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u2.c.o 2025-07-24T03:52:48.2121850Z [625/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-fp16arith-u1.c.o 2025-07-24T03:52:48.2353340Z [626/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u1.c.o 2025-07-24T03:52:48.2366890Z [627/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u2.c.o 2025-07-24T03:52:48.2523580Z [628/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-fp16arith-u4.c.o 2025-07-24T03:52:48.2575380Z [629/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u1.c.o 2025-07-24T03:52:48.2577260Z [630/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u1.c.o 2025-07-24T03:52:48.2832660Z [631/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u4.c.o 2025-07-24T03:52:48.3519160Z [632/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u2.c.o 2025-07-24T03:52:48.3590990Z [633/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u1.c.o 2025-07-24T03:52:48.3591840Z [634/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-fp16arith-u4.c.o 2025-07-24T03:52:48.3707130Z [635/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u4.c.o 2025-07-24T03:52:48.3731980Z [636/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-fp16arith-u2.c.o 2025-07-24T03:52:48.3774690Z [637/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u4.c.o 2025-07-24T03:52:48.3778090Z [638/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u2.c.o 2025-07-24T03:52:48.3924860Z [639/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-fp16arith-u1.c.o 2025-07-24T03:52:48.4385120Z [640/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u1.c.o 2025-07-24T03:52:48.5015890Z [641/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u2.c.o 2025-07-24T03:52:48.5026310Z [642/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-fp16arith-u4.c.o 2025-07-24T03:52:48.5077850Z [643/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u1.c.o 2025-07-24T03:52:48.5159040Z [644/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u2.c.o 2025-07-24T03:52:48.5161110Z [645/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:48.5270170Z [646/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-3x4.c.o 2025-07-24T03:52:48.5281800Z [647/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-fp16arith-u4.c.o 2025-07-24T03:52:48.5346960Z [648/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-4x4.c.o 2025-07-24T03:52:48.6137360Z [649/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-07-24T03:52:48.6406770Z [650/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-07-24T03:52:48.6495480Z [651/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-07-24T03:52:48.6541280Z [652/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4.c.o 2025-07-24T03:52:48.6545090Z [653/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-1x4-acc5.c.o 2025-07-24T03:52:48.6549190Z [654/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-07-24T03:52:48.6686140Z [655/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-2x4-acc3.c.o 2025-07-24T03:52:48.6691220Z [656/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-3x4-acc2.c.o 2025-07-24T03:52:48.6765840Z [657/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-2x4.c.o 2025-07-24T03:52:48.7687480Z [658/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-4x4-acc2.c.o 2025-07-24T03:52:48.7715420Z [659/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-3x4.c.o 2025-07-24T03:52:48.7834560Z [660/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-5x4.c.o 2025-07-24T03:52:48.7858070Z [661/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-07-24T03:52:48.7871400Z [662/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-07-24T03:52:48.7989340Z [663/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-07-24T03:52:48.7992010Z [664/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc5.c.o 2025-07-24T03:52:48.7999430Z [665/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4.c.o 2025-07-24T03:52:48.8495360Z [666/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-2x4-acc3.c.o 2025-07-24T03:52:48.9344470Z [667/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-3x4.c.o 2025-07-24T03:52:48.9367990Z [668/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:48.9370570Z [669/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-3x4-acc2.c.o 2025-07-24T03:52:48.9390800Z [670/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:48.9471310Z [671/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:48.9485140Z [672/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-2x4.c.o 2025-07-24T03:52:48.9508080Z [673/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:48.9979160Z [674/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.0505570Z [675/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.0788620Z [676/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.0837930Z [677/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.0839490Z [678/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.0950990Z [679/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.0955990Z [680/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.0972920Z [681/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.1021370Z [682/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.1661740Z [683/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.1767480Z [684/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.2237400Z [685/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.2239830Z [686/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.2297810Z [687/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.2424270Z [688/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.2434160Z [689/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.2463420Z [690/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.2508000Z [691/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.2943620Z [692/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.3130280Z [693/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.3809100Z [694/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.3826760Z [695/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.3830260Z [696/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.3888520Z [697/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.3991180Z [698/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.4018720Z [699/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.4054030Z [700/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.4555150Z [701/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma-prfm.c.o 2025-07-24T03:52:49.4758240Z [702/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma-prfm.c.o 2025-07-24T03:52:49.5153750Z [703/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.5202850Z [704/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.5208480Z [705/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.5213810Z [706/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.5231940Z [707/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.5432050Z [708/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.5449920Z [709/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-aarch64-neonfma-prfm.c.o 2025-07-24T03:52:49.6323320Z [710/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.6424040Z [711/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.6628220Z [712/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.6710090Z [713/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.6747210Z [714/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.6753560Z [715/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x16-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.6876680Z [716/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.6909020Z [717/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.6971400Z [718/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:52:49.7625270Z [719/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:52:49.7727180Z [720/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u4.c.o 2025-07-24T03:52:49.7931190Z [721/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x2-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.8037920Z [722/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x4-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.8102880Z [723/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x2-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.8105990Z [724/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.8180830Z [725/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.8283160Z [726/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x2-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.8300920Z [727/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x4-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.9113600Z [728/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u8.c.o 2025-07-24T03:52:49.9214760Z [729/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u12.c.o 2025-07-24T03:52:49.9232610Z [730/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x4-minmax-aarch64-neonfma.c.o 2025-07-24T03:52:49.9346890Z [731/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut64-p2-div-u16.c.o 2025-07-24T03:52:49.9353150Z [732/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u12.c.o 2025-07-24T03:52:49.9357300Z [733/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u4.c.o 2025-07-24T03:52:49.9385120Z [734/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u16.c.o 2025-07-24T03:52:49.9654560Z [735/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u8.c.o 2025-07-24T03:52:49.9927140Z [736/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-lut2048-p1-div-u4.c.o 2025-07-24T03:52:50.0326300Z [737/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u16.c.o 2025-07-24T03:52:50.0569570Z [738/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u4.c.o 2025-07-24T03:52:50.0604860Z [739/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u8.c.o 2025-07-24T03:52:50.0613160Z [740/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u2.c.o 2025-07-24T03:52:50.0734630Z [741/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-aarch64-neonfma-rr1-p5-div-u12.c.o 2025-07-24T03:52:50.0742680Z [742/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-fp16arith-u1.c.o 2025-07-24T03:52:50.0820880Z [743/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u1.c.o 2025-07-24T03:52:50.0997570Z [744/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u2.c.o 2025-07-24T03:52:50.1434460Z [745/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:50.1659050Z [746/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-fp16arith-u4.c.o 2025-07-24T03:52:50.2016600Z [747/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u1.c.o 2025-07-24T03:52:50.2024000Z [748/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:50.2270120Z [749/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.2333590Z [750/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.2362930Z [751/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.2410220Z [752/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.2536290Z [753/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.3170530Z [754/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.3181320Z [755/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.3329200Z [756/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.3491110Z [757/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.3692480Z [758/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.3818320Z [759/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.3954560Z [760/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.4013060Z [761/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.4203990Z [762/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-24T03:52:50.4731400Z [763/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-24T03:52:50.4863420Z [764/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-24T03:52:50.4965450Z [765/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-07-24T03:52:50.4983810Z [766/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-24T03:52:50.5113660Z [767/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-24T03:52:50.5149750Z [768/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-24T03:52:50.5232510Z [769/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:52:50.5398940Z [770/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:52:50.5733260Z [771/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.6301560Z [772/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.6480390Z [773/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.6532560Z [774/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-24T03:52:50.6601800Z [775/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-07-24T03:52:50.6691270Z [776/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-24T03:52:50.6693680Z [777/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-24T03:52:50.6798300Z [778/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-24T03:52:50.6924460Z [779/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-24T03:52:50.7618460Z [780/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-24T03:52:50.7723650Z [781/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:52:50.7869560Z [782/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:52:50.7989110Z [783/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.8001660Z [784/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.8007160Z [785/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.8147200Z [786/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.8236540Z [787/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.8258850Z [788/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.9019500Z [789/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.9119380Z [790/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.9265220Z [791/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.9612780Z [792/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.9634430Z [793/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:50.9791910Z [794/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.9812180Z [795/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:50.9816510Z [796/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:50.9819530Z [797/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:51.0476850Z [798/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-07-24T03:52:51.0713410Z [799/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-07-24T03:52:51.0908570Z [800/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-07-24T03:52:51.1006460Z [801/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-07-24T03:52:51.1009220Z [802/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-07-24T03:52:51.1011290Z [803/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.1068350Z [804/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.1248020Z [805/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-07-24T03:52:51.1783780Z [806/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.1857490Z [807/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.2015840Z [808/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.2039790Z [809/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.2171980Z [810/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.2329930Z [811/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.2534150Z [812/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.2668010Z [813/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.2931910Z [814/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.3135350Z [815/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.3405280Z [816/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.3441230Z [817/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:51.3487980Z [818/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:51.3542370Z [819/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:51.3708600Z [820/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:51.3943530Z [821/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u8.c.o 2025-07-24T03:52:51.4080980Z [822/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:51.4179100Z [823/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld128-u16.c.o 2025-07-24T03:52:51.4629870Z [824/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-neonv8-ld64-u16.c.o 2025-07-24T03:52:51.4650590Z [825/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u8.c.o 2025-07-24T03:52:51.4798560Z [826/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u4.c.o 2025-07-24T03:52:51.4891210Z [827/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld64-u16.c.o 2025-07-24T03:52:51.4900700Z [828/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-aarch64-neonfma-2x1.c.o 2025-07-24T03:52:51.4981940Z [829/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-neonv8-ld128-u16.c.o 2025-07-24T03:52:51.5400830Z [830/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u4.c.o 2025-07-24T03:52:51.5572980Z [831/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u4.c.o 2025-07-24T03:52:51.5702890Z [832/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u8.c.o 2025-07-24T03:52:51.6063050Z [833/5147] Generating /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_3.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType_4.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_3.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/TraceType_4.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/RegisterLazy.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/Functions.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/variable_factories.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/ViewFuncs.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/VariableType.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyIr.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNonNativeIr.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/lazy/generated/LazyNativeFunctions.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_3.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions_4.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_variable_methods.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_0.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_1.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_torch_functions_2.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nn_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_fft_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_linalg_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_nested_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_sparse_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_special_functions.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_enum_tag.cpp, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_functions.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/autograd/generated/python_return_types.h, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/testing/_internal/generated/annotated_fn_args.py, /Users/ec2-user/runner/_work/pytorch/pytorch/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.cpp 2025-07-24T03:52:51.6088540Z [834/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u32.c.o 2025-07-24T03:52:51.6127510Z [835/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u16.c.o 2025-07-24T03:52:51.6218360Z [836/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-aarch64-neonfma-2x1.c.o 2025-07-24T03:52:51.6330920Z [837/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u48.c.o 2025-07-24T03:52:51.6436130Z [838/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-aarch64-neonfma-2x2.c.o 2025-07-24T03:52:51.6892420Z [839/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-aarch64-neonfma-2x2.c.o 2025-07-24T03:52:51.6936790Z [840/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u16.c.o 2025-07-24T03:52:51.6959760Z [841/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-07-24T03:52:51.7191380Z [842/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-aarch64-neonfma-2x1.c.o 2025-07-24T03:52:51.7292550Z [843/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-aarch64-neonfma-2x2.c.o 2025-07-24T03:52:51.7400250Z [844/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-aarch64-neonfma-2x1.c.o 2025-07-24T03:52:51.7435350Z [845/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-07-24T03:52:51.7507520Z [846/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-07-24T03:52:51.7629840Z [847/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-07-24T03:52:51.8047720Z [848/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-1x4.c.o 2025-07-24T03:52:51.8270290Z [849/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-4x4.c.o 2025-07-24T03:52:51.8293200Z [850/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-07-24T03:52:51.8359960Z [851/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-2x4.c.o 2025-07-24T03:52:51.8446840Z [852/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-5x4.c.o 2025-07-24T03:52:51.8578540Z [853/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-6x4.c.o 2025-07-24T03:52:51.8763420Z [854/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-07-24T03:52:51.8901500Z [855/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4-acc3.c.o 2025-07-24T03:52:51.8957120Z [856/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4-acc4.c.o 2025-07-24T03:52:51.9126720Z [857/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-1x4.c.o 2025-07-24T03:52:51.9384460Z [858/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-2x4.c.o 2025-07-24T03:52:51.9669190Z [859/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u4.c.o 2025-07-24T03:52:51.9855300Z [860/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u12.c.o 2025-07-24T03:52:51.9868490Z [861/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u12.c.o 2025-07-24T03:52:51.9902080Z [862/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u8.c.o 2025-07-24T03:52:51.9930350Z [863/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2fma-u16.c.o 2025-07-24T03:52:52.0117520Z [864/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u4.c.o 2025-07-24T03:52:52.0247950Z [865/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u12.c.o 2025-07-24T03:52:52.0253600Z [866/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u8.c.o 2025-07-24T03:52:52.0402070Z [867/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr1recps1fma-u16.c.o 2025-07-24T03:52:52.0489470Z [868/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u4.c.o 2025-07-24T03:52:52.1092660Z [869/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u8.c.o 2025-07-24T03:52:52.1173810Z [870/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u4.c.o 2025-07-24T03:52:52.1180640Z [871/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u12.c.o 2025-07-24T03:52:52.1210580Z [872/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2fma-u16.c.o 2025-07-24T03:52:52.1381820Z [873/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u8.c.o 2025-07-24T03:52:52.1433850Z [874/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u12.c.o 2025-07-24T03:52:52.1542690Z [875/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut2048-p1-nr2recps-u16.c.o 2025-07-24T03:52:52.1656020Z [876/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u4.c.o 2025-07-24T03:52:52.1812550Z [877/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u8.c.o 2025-07-24T03:52:52.1916270Z [878/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u12.c.o 2025-07-24T03:52:52.2559530Z [879/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u8.c.o 2025-07-24T03:52:52.2563370Z [880/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u4.c.o 2025-07-24T03:52:52.2584430Z [881/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u12.c.o 2025-07-24T03:52:52.2781820Z [882/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr1recps1fma-u16.c.o 2025-07-24T03:52:52.2848130Z [883/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u8.c.o 2025-07-24T03:52:52.2868950Z [884/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u4.c.o 2025-07-24T03:52:52.3046040Z [885/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2fma-u16.c.o 2025-07-24T03:52:52.3097350Z [886/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u12.c.o 2025-07-24T03:52:52.3179160Z [887/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u4.c.o 2025-07-24T03:52:52.3331320Z [888/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-p5-nr2recps-u16.c.o 2025-07-24T03:52:52.3774120Z [889/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u8.c.o 2025-07-24T03:52:52.3907610Z [890/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u16.c.o 2025-07-24T03:52:52.4075100Z [891/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u24.c.o 2025-07-24T03:52:52.4184310Z [892/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u8.c.o 2025-07-24T03:52:52.4195170Z [893/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.4331490Z [894/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u16.c.o 2025-07-24T03:52:52.4377680Z [895/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u24.c.o 2025-07-24T03:52:52.4539150Z [896/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u4.c.o 2025-07-24T03:52:52.4570240Z [897/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u4.c.o 2025-07-24T03:52:52.4924300Z [898/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u4.c.o 2025-07-24T03:52:52.5129670Z [899/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.5366820Z [900/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.5375480Z [901/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.5417750Z [902/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.5592240Z [903/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.5703280Z [904/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.5756680Z [905/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.5918300Z [906/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.6491040Z [907/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.6550770Z [908/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.6665360Z [909/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.6701810Z [910/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.6720710Z [911/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.6855840Z [912/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:52:52.6995940Z [913/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:52:52.7024330Z [914/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:52:52.7144130Z [915/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.7293200Z [916/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:52.8108700Z [917/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:52:52.8207970Z [918/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-24T03:52:52.8312840Z [919/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.8417940Z [920/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-24T03:52:52.8419900Z [921/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:52.8423140Z [922/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.8425600Z [923/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.8427390Z [924/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:52:52.8580250Z [925/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:52.9044070Z [926/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.9486920Z [927/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-24T03:52:52.9630210Z [928/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:52:52.9644500Z [929/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:52.9665910Z [930/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:52:52.9684240Z [931/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:52.9848040Z [932/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:52.9851910Z [933/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-24T03:52:52.9854810Z [934/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.0018110Z [935/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.0417400Z [936/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:52:53.1060570Z [937/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:53.1075390Z [938/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:52:53.1185380Z [939/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.1282430Z [940/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-24T03:52:53.1306460Z [941/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l32c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.1309380Z [942/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-24T03:52:53.1475230Z [943/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-24T03:52:53.1556700Z [944/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:53.1681280Z [945/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.2086760Z [946/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:53.2369150Z [947/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-24T03:52:53.2410560Z [948/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.2415940Z [949/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.2618900Z [950/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.2768740Z [951/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-24T03:52:53.2803950Z [952/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:53.2831460Z [953/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mul8-ld64.c.o 2025-07-24T03:52:53.2986970Z [954/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mul8-ld128.c.o 2025-07-24T03:52:53.3053260Z [955/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.3693610Z [956/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-neonv8-mul16.c.o 2025-07-24T03:52:53.3853270Z [957/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-24T03:52:53.3873410Z [958/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:53.3931460Z [959/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:53.3937230Z [960/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-24T03:52:53.4101980Z [961/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-24T03:52:53.4126140Z [962/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-24T03:52:53.4588710Z [963/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-07-24T03:52:53.4990560Z [964/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-24T03:52:53.4994420Z [965/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-24T03:52:53.5282600Z [966/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:52:53.5363320Z [967/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-24T03:52:53.5365830Z [968/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:53.5369440Z [969/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-24T03:52:53.5374150Z [970/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:52:53.5577210Z [971/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:53.6013280Z [972/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:53.6217690Z [973/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-24T03:52:53.6517480Z [974/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neonv8-mlal-dup.c.o 2025-07-24T03:52:53.6584570Z [975/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neonv8-mlal-ld1r.c.o 2025-07-24T03:52:53.6725020Z [976/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neonv8-mlal-ld4r.c.o 2025-07-24T03:52:53.6747150Z [977/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4s2-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:52:53.6784070Z [978/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:53.6959240Z [979/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neonv8-mlal-ld2r.c.o 2025-07-24T03:52:53.7023030Z [980/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:52:53.7228160Z [981/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:52:53.7396810Z [982/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u8.c.o 2025-07-24T03:52:53.7433990Z [983/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neonv8-mlal-lane-prfm.c.o 2025-07-24T03:52:53.7875130Z [984/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:53.8172550Z [985/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:52:53.8269770Z [986/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:53.8371790Z [987/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:53.8385940Z [988/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:52:53.8498290Z [989/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:53.8607270Z [990/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:52:53.8914990Z [991/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:53.8917570Z [992/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:53.9149110Z [993/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:53.9734450Z [994/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:53.9788800Z [995/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u8.c.o 2025-07-24T03:52:53.9863390Z [996/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:52:53.9871610Z [997/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:53.9889660Z [998/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x16-minmax-neonfp16arith-mlal-lane-prfm.c.o 2025-07-24T03:52:54.0055880Z [999/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:52:54.0172060Z [1000/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u8.c.o 2025-07-24T03:52:54.0436190Z [1001/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u16.c.o 2025-07-24T03:52:54.0444330Z [1002/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u24.c.o 2025-07-24T03:52:54.0549060Z [1003/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:52:54.0928470Z [1004/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u16.c.o 2025-07-24T03:52:54.1048280Z [1005/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u16.c.o 2025-07-24T03:52:54.1074050Z [1006/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u16.c.o 2025-07-24T03:52:54.1112580Z [1007/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u16.c.o 2025-07-24T03:52:54.1326810Z [1008/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u24.c.o 2025-07-24T03:52:54.1336520Z [1009/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-aarch64-neonfp16arith-rr2-p2-div-u32.c.o 2025-07-24T03:52:54.1425750Z [1010/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u16.c.o 2025-07-24T03:52:54.1758840Z [1011/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u16.c.o 2025-07-24T03:52:54.1923860Z [1012/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u8.c.o 2025-07-24T03:52:54.2059500Z [1013/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u32.c.o 2025-07-24T03:52:54.2426640Z [1014/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u24.c.o 2025-07-24T03:52:54.2600460Z [1015/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.2626710Z [1016/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.2790090Z [1017/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.2817440Z [1018/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.2880810Z [1019/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.3013910Z [1020/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.3202840Z [1021/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-5x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.3402150Z [1022/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.3870730Z [1023/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.3982120Z [1024/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.4053340Z [1025/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.4159480Z [1026/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-5x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.4177220Z [1027/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.4321070Z [1028/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.4347810Z [1029/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.4500060Z [1030/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-3x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.5233600Z [1031/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-neondot-ld64.c.o 2025-07-24T03:52:54.5286420Z [1032/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.5299900Z [1033/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-neondot-ld64.c.o 2025-07-24T03:52:54.5356670Z [1034/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.5363840Z [1035/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.5478510Z [1036/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.5479920Z [1037/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.6090630Z [1038/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.6291170Z [1039/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-5x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.6560030Z [1040/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x32c4-minmax-neondot.c.o 2025-07-24T03:52:54.6562070Z [1041/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-5x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.6606350Z [1042/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.6737670Z [1043/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-neondot-ld64.c.o 2025-07-24T03:52:54.6740090Z [1044/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-neondot-ld64.c.o 2025-07-24T03:52:54.6794750Z [1045/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x32c4-minmax-neondot.c.o 2025-07-24T03:52:54.6904310Z [1046/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.6910180Z [1047/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.7477620Z [1048/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.7671490Z [1049/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x32c4-minmax-neondot.c.o 2025-07-24T03:52:54.7925190Z [1050/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.8077820Z [1051/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x32c4-minmax-neondot.c.o 2025-07-24T03:52:54.8082680Z [1052/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x8c4-minmax-neondot.c.o 2025-07-24T03:52:54.8198240Z [1053/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x32c4-minmax-neondot.c.o 2025-07-24T03:52:54.8233820Z [1054/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-neondot-ld64.c.o 2025-07-24T03:52:54.8246950Z [1055/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-8x16c4-minmax-neondot.c.o 2025-07-24T03:52:54.8379690Z [1056/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8c4-minmax-fp32-neondot.c.o 2025-07-24T03:52:54.8451390Z [1057/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-neondot-ld64.c.o 2025-07-24T03:52:54.9053340Z [1058/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16c4-minmax-fp32-neondot.c.o 2025-07-24T03:52:54.9154200Z [1059/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-8x8c4-minmax-fp32-neondot.c.o 2025-07-24T03:52:54.9330620Z [1060/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-8x16c4-minmax-fp32-neondot.c.o 2025-07-24T03:52:54.9566650Z [1061/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-neondot-ld64.c.o 2025-07-24T03:52:54.9671130Z [1062/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-neondot-ld64.c.o 2025-07-24T03:52:54.9673890Z [1063/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x16c4-minmax-fp32-neondot.c.o 2025-07-24T03:52:54.9677840Z [1064/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-8x16c4-minmax-fp32-neondot.c.o 2025-07-24T03:52:54.9820730Z [1065/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u16.c.o 2025-07-24T03:52:54.9873840Z [1066/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-6x8c4-minmax-fp32-neondot.c.o 2025-07-24T03:52:54.9882350Z [1067/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-8x8c4-minmax-fp32-neondot.c.o 2025-07-24T03:52:55.0512920Z [1068/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc2.c.o 2025-07-24T03:52:55.0605050Z [1069/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c8-minmax-aarch64-neondot-ld128.c.o 2025-07-24T03:52:55.0711560Z [1070/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c8-minmax-aarch64-neondot-ld128.c.o 2025-07-24T03:52:55.0828300Z [1071/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u64-acc4.c.o 2025-07-24T03:52:55.0893640Z [1072/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qp8-f32-qc4w-gemm/qp8-f32-qc4w-gemm-minmax-1x4c16s2-aarch64-neondot.c.o 2025-07-24T03:52:55.1031340Z [1073/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c8-minmax-aarch64-neondot-ld128.c.o 2025-07-24T03:52:55.1172310Z [1074/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c8-minmax-aarch64-neondot-ld128.c.o 2025-07-24T03:52:55.1329690Z [1075/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:52:55.1559390Z [1076/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-07-24T03:52:55.1570930Z [1077/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-24T03:52:55.1583750Z [1078/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-24T03:52:55.1609160Z [1079/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-07-24T03:52:55.1712360Z [1080/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:52:55.1760860Z [1081/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-07-24T03:52:55.1850280Z [1082/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c8-minmax-fp32-aarch64-neondot-ld128.c.o 2025-07-24T03:52:55.1858220Z [1083/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:52:55.1864020Z [1084/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-24T03:52:55.2187200Z [1085/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:52:55.2505480Z [1086/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:52:55.2525390Z [1087/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:52:55.2527240Z [1088/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-24T03:52:55.2532360Z [1089/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:52:55.2618250Z [1090/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-24T03:52:55.2753000Z [1091/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-07-24T03:52:55.2790260Z [1092/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-07-24T03:52:55.2812090Z [1093/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:52:55.2841680Z [1094/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-24T03:52:55.3164620Z [1095/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-24T03:52:55.3500740Z [1096/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-24T03:52:55.3528400Z [1097/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S.o 2025-07-24T03:52:55.3536640Z [1098/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S.o 2025-07-24T03:52:55.3552570Z [1099/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2025-07-24T03:52:55.3630530Z [1100/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2025-07-24T03:52:55.3664970Z [1101/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2025-07-24T03:52:55.3729430Z [1102/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2025-07-24T03:52:55.3806390Z [1103/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2025-07-24T03:52:55.3807280Z [1104/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2025-07-24T03:52:55.4077550Z [1105/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-07-24T03:52:55.4550660Z [1106/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:52:55.4588350Z [1107/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2025-07-24T03:52:55.4592770Z [1108/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2025-07-24T03:52:55.5128650Z [1109/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-pipelined.c.o 2025-07-24T03:52:55.5132510Z [1110/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-x2.c.o 2025-07-24T03:52:55.5143710Z [1111/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith-pipelined.c.o 2025-07-24T03:52:55.5148880Z [1112/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-x2.c.o 2025-07-24T03:52:55.5187010Z [1113/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith.c.o 2025-07-24T03:52:55.5337450Z [1114/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-16x1-minmax-neonfp16arith.c.o 2025-07-24T03:52:55.5403970Z [1115/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith-x2.c.o 2025-07-24T03:52:55.5682900Z [1116/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-24x1-minmax-neonfp16arith.c.o 2025-07-24T03:52:55.5906960Z [1117/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith.c.o 2025-07-24T03:52:55.6199570Z [1118/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-x2.c.o 2025-07-24T03:52:55.6464010Z [1119/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u8.c.o 2025-07-24T03:52:55.6487050Z [1120/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u8.c.o 2025-07-24T03:52:55.6583990Z [1121/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u8.c.o 2025-07-24T03:52:55.6651800Z [1122/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u8.c.o 2025-07-24T03:52:55.6717000Z [1123/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u8.c.o 2025-07-24T03:52:55.6930160Z [1124/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u8.c.o 2025-07-24T03:52:55.7071160Z [1125/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u8.c.o 2025-07-24T03:52:55.7266140Z [1126/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u8.c.o 2025-07-24T03:52:55.7362400Z [1127/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u8.c.o 2025-07-24T03:52:55.7725290Z [1128/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u8.c.o 2025-07-24T03:52:55.7763660Z [1129/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u8.c.o 2025-07-24T03:52:55.7773540Z [1130/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u8.c.o 2025-07-24T03:52:55.7834260Z [1131/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u8.c.o 2025-07-24T03:52:55.7850900Z [1132/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u8.c.o 2025-07-24T03:52:55.8012660Z [1133/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u8.c.o 2025-07-24T03:52:55.8097430Z [1134/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u8.c.o 2025-07-24T03:52:55.8455880Z [1135/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c16-minmax-neonfp16arith-2x.c.o 2025-07-24T03:52:55.8679850Z [1136/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u8.c.o 2025-07-24T03:52:55.8840340Z [1137/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u8.c.o 2025-07-24T03:52:55.9072170Z [1138/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u8.c.o 2025-07-24T03:52:55.9094130Z [1139/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u8.c.o 2025-07-24T03:52:55.9157160Z [1140/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u32.c.o 2025-07-24T03:52:55.9237890Z [1141/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u8.c.o 2025-07-24T03:52:55.9244090Z [1142/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u8.c.o 2025-07-24T03:52:55.9269830Z [1143/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u8.c.o 2025-07-24T03:52:55.9441740Z [1144/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u8.c.o 2025-07-24T03:52:55.9710610Z [1145/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u8.c.o 2025-07-24T03:52:55.9992460Z [1146/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u8.c.o 2025-07-24T03:52:56.0105010Z [1147/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u8.c.o 2025-07-24T03:52:56.0407880Z [1148/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u16.c.o 2025-07-24T03:52:56.0414530Z [1149/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u32.c.o 2025-07-24T03:52:56.0557020Z [1150/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u8.c.o 2025-07-24T03:52:56.0586150Z [1151/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u24.c.o 2025-07-24T03:52:56.0700040Z [1152/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u24.c.o 2025-07-24T03:52:56.0901130Z [1153/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u8.c.o 2025-07-24T03:52:56.1139200Z [1154/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u16.c.o 2025-07-24T03:52:56.1262560Z [1155/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u16.c.o 2025-07-24T03:52:56.1384600Z [1156/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u32.c.o 2025-07-24T03:52:56.1400120Z [1157/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u32.c.o 2025-07-24T03:52:56.1546000Z [1158/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u24.c.o 2025-07-24T03:52:56.1550070Z [1159/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u8.c.o 2025-07-24T03:52:56.1853390Z [1160/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u16.c.o 2025-07-24T03:52:56.2097080Z [1161/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u24.c.o 2025-07-24T03:52:56.2123830Z [1162/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1recps-u32.c.o 2025-07-24T03:52:56.2126270Z [1163/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u8.c.o 2025-07-24T03:52:56.2223950Z [1164/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-24T03:52:56.2234280Z [1165/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:52:56.2425520Z [1166/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u32.c.o 2025-07-24T03:52:56.2876490Z [1167/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u8.c.o 2025-07-24T03:52:56.2927660Z [1168/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u24.c.o 2025-07-24T03:52:56.3119250Z [1169/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u8.c.o 2025-07-24T03:52:56.3166020Z [1170/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-recpeadj-u16.c.o 2025-07-24T03:52:56.3547270Z [1171/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:56.3576130Z [1172/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p16.c.o 2025-07-24T03:52:56.3607500Z [1173/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:56.3617140Z [1174/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-6x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:56.3813850Z [1175/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p4.c.o 2025-07-24T03:52:56.4162250Z [1176/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c16.c.o 2025-07-24T03:52:56.4164860Z [1177/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:56.4173130Z [1178/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:56.4453760Z [1179/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-8x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:56.4459180Z [1180/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:56.4831150Z [1181/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc2.c.o 2025-07-24T03:52:56.4883460Z [1182/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u8.c.o 2025-07-24T03:52:56.4929830Z [1183/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-igemm/gen/f16-igemm-8x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:56.4956240Z [1184/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u16.c.o 2025-07-24T03:52:56.5087030Z [1185/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u24.c.o 2025-07-24T03:52:56.5531770Z [1186/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32-acc4.c.o 2025-07-24T03:52:56.5581040Z [1187/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc2.c.o 2025-07-24T03:52:56.5696470Z [1188/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40.c.o 2025-07-24T03:52:56.5765900Z [1189/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u40-acc5.c.o 2025-07-24T03:52:56.5859300Z [1190/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u64.c.o 2025-07-24T03:52:56.6181890Z [1191/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc2.c.o 2025-07-24T03:52:56.6261030Z [1192/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc4.c.o 2025-07-24T03:52:56.6327520Z [1193/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48-acc3.c.o 2025-07-24T03:52:56.6346380Z [1194/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64-acc2.c.o 2025-07-24T03:52:56.6376880Z [1195/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u48.c.o 2025-07-24T03:52:56.7097150Z [1196/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc5.c.o 2025-07-24T03:52:56.7109660Z [1197/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72-acc3.c.o 2025-07-24T03:52:56.7122360Z [1198/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u72.c.o 2025-07-24T03:52:56.7324950Z [1199/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80.c.o 2025-07-24T03:52:56.7365810Z [1200/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u64.c.o 2025-07-24T03:52:56.7375420Z [1201/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc2.c.o 2025-07-24T03:52:56.7506860Z [1202/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u80-acc2.c.o 2025-07-24T03:52:56.7528550Z [1203/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc3.c.o 2025-07-24T03:52:56.7611090Z [1204/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96.c.o 2025-07-24T03:52:56.7867640Z [1205/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u96-acc6.c.o 2025-07-24T03:52:56.8343220Z [1206/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u16-acc2.c.o 2025-07-24T03:52:56.8506140Z [1207/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u24-acc3.c.o 2025-07-24T03:52:56.8545970Z [1208/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc2.c.o 2025-07-24T03:52:56.8548320Z [1209/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u8.c.o 2025-07-24T03:52:56.8637920Z [1210/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc2.c.o 2025-07-24T03:52:56.8808340Z [1211/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u8.c.o 2025-07-24T03:52:56.8812300Z [1212/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc2.c.o 2025-07-24T03:52:56.8884420Z [1213/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u16-acc1.c.o 2025-07-24T03:52:56.9228180Z [1214/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24.c.o 2025-07-24T03:52:56.9279550Z [1215/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u24-acc3.c.o 2025-07-24T03:52:56.9543920Z [1216/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc2.c.o 2025-07-24T03:52:56.9754420Z [1217/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32.c.o 2025-07-24T03:52:56.9830790Z [1218/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc2.c.o 2025-07-24T03:52:56.9964580Z [1219/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64-acc4.c.o 2025-07-24T03:52:56.9996090Z [1220/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u32-acc4.c.o 2025-07-24T03:52:57.0055520Z [1221/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u8.c.o 2025-07-24T03:52:57.0230680Z [1222/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-neonfp16arith-u64.c.o 2025-07-24T03:52:57.0235030Z [1223/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc1.c.o 2025-07-24T03:52:57.0680390Z [1224/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u16-acc2.c.o 2025-07-24T03:52:57.0783330Z [1225/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc3.c.o 2025-07-24T03:52:57.0802520Z [1226/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24-acc2.c.o 2025-07-24T03:52:57.1098590Z [1227/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u24.c.o 2025-07-24T03:52:57.1124720Z [1228/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc2.c.o 2025-07-24T03:52:57.1321380Z [1229/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32.c.o 2025-07-24T03:52:57.1326110Z [1230/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc2.c.o 2025-07-24T03:52:57.1333660Z [1231/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64-acc4.c.o 2025-07-24T03:52:57.1525620Z [1232/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-spmm/gen/f16-spmm-8x1-minmax-neonfp16arith-pipelined.c.o 2025-07-24T03:52:57.1560250Z [1233/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u64.c.o 2025-07-24T03:52:57.1783900Z [1234/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:52:57.2186360Z [1235/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:52:57.2321180Z [1236/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u24-acc3.c.o 2025-07-24T03:52:57.2424240Z [1237/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u8.c.o 2025-07-24T03:52:57.2524660Z [1238/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc2.c.o 2025-07-24T03:52:57.2526630Z [1239/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u16-acc2.c.o 2025-07-24T03:52:57.2642600Z [1240/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rsum/gen/f16-rsum-neonfp16arith-u32-acc4.c.o 2025-07-24T03:52:57.2755170Z [1241/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u1.c.o 2025-07-24T03:52:57.2761580Z [1242/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u2.c.o 2025-07-24T03:52:57.2939490Z [1243/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.3104570Z [1244/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.3799590Z [1245/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.3949500Z [1246/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-vsqrt/gen/f16-vsqrt-fp16arith-sqrt-u4.c.o 2025-07-24T03:52:57.3978240Z [1247/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.3994610Z [1248/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-3x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.4010850Z [1249/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.4104940Z [1250/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-5x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.4188630Z [1251/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-5x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.4380420Z [1252/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.4716830Z [1253/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.4979020Z [1254/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.5353480Z [1255/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.5450300Z [1256/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.5467050Z [1257/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-3x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.5475610Z [1258/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-5x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.5484100Z [1259/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-5x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.5524190Z [1260/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-2x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.5706300Z [1261/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.5721480Z [1262/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.6187400Z [1263/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.6413930Z [1264/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.6697600Z [1265/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7025450Z [1266/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7056200Z [1267/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-5x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7091250Z [1268/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-3x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7183800Z [1269/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-5x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7202500Z [1270/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-6x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7314490Z [1271/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-6x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7341800Z [1272/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x32c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7743130Z [1273/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7780560Z [1274/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.7881260Z [1275/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x32c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.8514710Z [1276/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.8575340Z [1277/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-6x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.8630080Z [1278/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x32c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.8657480Z [1279/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x32c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.8662950Z [1280/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-6x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.8753600Z [1281/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-6x32c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.8794210Z [1282/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-8x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:52:57.9223430Z [1283/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:57.9451600Z [1284/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:57.9634950Z [1285/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:57.9866030Z [1286/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p8c-minmax-neonfp16arith.c.o 2025-07-24T03:52:57.9892230Z [1287/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-3p32c-minmax-neonfp16arith.c.o 2025-07-24T03:52:57.9989430Z [1288/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.0205300Z [1289/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.0256900Z [1290/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.0274630Z [1291/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.0276860Z [1292/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p8c-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.0752740Z [1293/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l8c8s4r-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.0787020Z [1294/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-4p32c-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.1002280Z [1295/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.1471610Z [1296/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.1546010Z [1297/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l16c8s4r-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.1594680Z [1298/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l16c8s4r-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.1605440Z [1299/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.1717660Z [1300/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-5f5m5l32c8s4r-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.1719980Z [1301/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.1723290Z [1302/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l8c8s4r-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.2433680Z [1303/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.2473640Z [1304/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.2537800Z [1305/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-6f6m7l32c8s4r-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.2676310Z [1306/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l8c8s4r-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.2819760Z [1307/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.2922830Z [1308/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l16c8s4r-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.2955010Z [1309/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.3102650Z [1310/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.3328440Z [1311/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-8f8m9l32c8s4r-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.3347400Z [1312/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.3729900Z [1313/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.3760010Z [1314/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.3779620Z [1315/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p16c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.3948900Z [1316/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-9p32c-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.4093230Z [1317/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.4392760Z [1318/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith.c.o 2025-07-24T03:52:58.4618610Z [1319/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8-acc3.c.o 2025-07-24T03:52:58.4760730Z [1320/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv/gen/f16-dwconv-25p32c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:52:58.4889300Z [1321/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8-acc2.c.o 2025-07-24T03:52:58.5022900Z [1322/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-3x8.c.o 2025-07-24T03:52:58.5085520Z [1323/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8-acc4.c.o 2025-07-24T03:52:58.5250210Z [1324/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-1x8.c.o 2025-07-24T03:52:58.5262140Z [1325/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-4x8.c.o 2025-07-24T03:52:58.5363580Z [1326/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-5x8.c.o 2025-07-24T03:52:58.5384110Z [1327/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-2x8-acc2.c.o 2025-07-24T03:52:58.5952310Z [1328/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-6x8.c.o 2025-07-24T03:52:58.6005940Z [1329/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8-acc3.c.o 2025-07-24T03:52:58.6057280Z [1330/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8-acc2.c.o 2025-07-24T03:52:58.6224890Z [1331/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8-acc4.c.o 2025-07-24T03:52:58.6412030Z [1332/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-2x8-acc2.c.o 2025-07-24T03:52:58.6447530Z [1333/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-2x8.c.o 2025-07-24T03:52:58.6599310Z [1334/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-3x8.c.o 2025-07-24T03:52:58.6624820Z [1335/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-4x8.c.o 2025-07-24T03:52:58.6656330Z [1336/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc3.c.o 2025-07-24T03:52:58.6952880Z [1337/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc2.c.o 2025-07-24T03:52:58.7483560Z [1338/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8-acc2.c.o 2025-07-24T03:52:58.7495500Z [1339/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8-acc3.c.o 2025-07-24T03:52:58.7536350Z [1340/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc4.c.o 2025-07-24T03:52:58.7545470Z [1341/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8-acc5.c.o 2025-07-24T03:52:58.7747230Z [1342/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-2x8.c.o 2025-07-24T03:52:58.7759000Z [1343/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-3x8-acc2.c.o 2025-07-24T03:52:58.8037170Z [1344/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-3x8.c.o 2025-07-24T03:52:58.8178190Z [1345/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-4x8.c.o 2025-07-24T03:52:58.8341940Z [1346/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-4x8-acc2.c.o 2025-07-24T03:52:58.8355920Z [1347/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-5x8.c.o 2025-07-24T03:52:58.8906710Z [1348/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc2.c.o 2025-07-24T03:52:58.8978050Z [1349/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc4.c.o 2025-07-24T03:52:58.9064770Z [1350/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc5.c.o 2025-07-24T03:52:58.9129630Z [1351/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8-acc3.c.o 2025-07-24T03:52:58.9209940Z [1352/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8-acc3.c.o 2025-07-24T03:52:58.9242960Z [1353/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8-acc2.c.o 2025-07-24T03:52:58.9468490Z [1354/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-2x8.c.o 2025-07-24T03:52:58.9827210Z [1355/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-3x8-acc2.c.o 2025-07-24T03:52:58.9923690Z [1356/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-3x8.c.o 2025-07-24T03:52:59.0113040Z [1357/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c64.c.o 2025-07-24T03:52:59.0114040Z [1358/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c32.c.o 2025-07-24T03:52:59.0285820Z [1359/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u4.c.o 2025-07-24T03:52:59.0400100Z [1360/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u24-acc3.c.o 2025-07-24T03:52:59.0402890Z [1361/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc2.c.o 2025-07-24T03:52:59.0481450Z [1362/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u16-acc2.c.o 2025-07-24T03:52:59.0497800Z [1363/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u8.c.o 2025-07-24T03:52:59.1055870Z [1364/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:59.1302360Z [1365/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:59.1358930Z [1366/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-8x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:59.1481290Z [1367/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla_asm.S.o 2025-07-24T03:52:59.1547320Z [1368/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.c.o 2025-07-24T03:52:59.1553550Z [1369/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemminc-1x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:59.1751590Z [1370/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-gemm/gen/f16-gemm-4x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:52:59.1792550Z [1371/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.c.o 2025-07-24T03:52:59.1806310Z [1372/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.c.o 2025-07-24T03:52:59.2030250Z [1373/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.c.o 2025-07-24T03:52:59.2430470Z [1374/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.c.o 2025-07-24T03:52:59.2533210Z [1375/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.c.o 2025-07-24T03:52:59.2622300Z [1376/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.c.o 2025-07-24T03:52:59.2777970Z [1377/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.c.o 2025-07-24T03:52:59.2916160Z [1378/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.c.o 2025-07-24T03:52:59.3071280Z [1379/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.c.o 2025-07-24T03:52:59.3141590Z [1380/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.c.o 2025-07-24T03:52:59.3149090Z [1381/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.c.o 2025-07-24T03:52:59.3179530Z [1382/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.c.o 2025-07-24T03:52:59.3221170Z [1383/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.3390680Z [1384/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.3427030Z [1385/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.c.o 2025-07-24T03:52:59.3659800Z [1386/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.3806940Z [1387/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.c.o 2025-07-24T03:52:59.4064400Z [1388/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.c.o 2025-07-24T03:52:59.4264970Z [1389/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.4304340Z [1390/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.4317180Z [1391/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.4501120Z [1392/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.c.o 2025-07-24T03:52:59.4550830Z [1393/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.c.o 2025-07-24T03:52:59.4622140Z [1394/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.c.o 2025-07-24T03:52:59.4711960Z [1395/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.5091880Z [1396/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.c.o 2025-07-24T03:52:59.5150820Z [1397/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm_asm.S.o 2025-07-24T03:52:59.5165300Z [1398/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm_asm.S.o 2025-07-24T03:52:59.5373380Z [1399/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.c.o 2025-07-24T03:52:59.5378300Z [1400/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.c.o 2025-07-24T03:52:59.5412090Z [1401/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm_asm.S.o 2025-07-24T03:52:59.5838060Z [1402/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.c.o 2025-07-24T03:52:59.5935930Z [1403/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.c.o 2025-07-24T03:52:59.6038940Z [1404/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.c.o 2025-07-24T03:52:59.6144440Z [1405/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.c.o 2025-07-24T03:52:59.6506970Z [1406/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.c.o 2025-07-24T03:52:59.6528340Z [1407/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.c.o 2025-07-24T03:52:59.6531120Z [1408/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.c.o 2025-07-24T03:52:59.6544330Z [1409/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.c.o 2025-07-24T03:52:59.6765320Z [1410/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.c.o 2025-07-24T03:52:59.6777670Z [1411/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.c.o 2025-07-24T03:52:59.6780870Z [1412/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.6815290Z [1413/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod_asm.S.o 2025-07-24T03:52:59.7296880Z [1414/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.c.o 2025-07-24T03:52:59.7374360Z [1415/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.c.o 2025-07-24T03:52:59.7539460Z [1416/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod_asm.S.o 2025-07-24T03:52:59.7618900Z [1417/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod_asm.S.o 2025-07-24T03:52:59.7650260Z [1418/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod_asm.S.o 2025-07-24T03:52:59.7831310Z [1419/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.7886310Z [1420/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.c.o 2025-07-24T03:52:59.7972330Z [1421/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.c.o 2025-07-24T03:52:59.8048590Z [1422/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.c.o 2025-07-24T03:52:59.8128430Z [1423/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.c.o 2025-07-24T03:52:59.8353420Z [1424/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod_asm.S.o 2025-07-24T03:52:59.8418440Z [1425/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod_asm.S.o 2025-07-24T03:52:59.8832410Z [1426/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.c.o 2025-07-24T03:52:59.8999920Z [1427/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.c.o 2025-07-24T03:52:59.9054920Z [1428/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.c.o 2025-07-24T03:52:59.9076340Z [1429/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.c.o 2025-07-24T03:52:59.9259870Z [1430/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.c.o 2025-07-24T03:52:59.9310540Z [1431/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.c.o 2025-07-24T03:52:59.9477670Z [1432/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.c.o 2025-07-24T03:52:59.9489020Z [1433/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.c.o 2025-07-24T03:52:59.9826560Z [1434/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.c.o 2025-07-24T03:53:00.0085310Z [1435/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.c.o 2025-07-24T03:53:00.0251160Z [1436/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.c.o 2025-07-24T03:53:00.0256610Z [1437/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.c.o 2025-07-24T03:53:00.0266790Z [1438/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm_asm.S.o 2025-07-24T03:53:00.0337210Z [1439/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.c.o 2025-07-24T03:53:00.0363720Z [1440/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm_asm.S.o 2025-07-24T03:53:00.0450400Z [1441/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.c.o 2025-07-24T03:53:00.0586260Z [1442/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.c.o 2025-07-24T03:53:00.0592700Z [1443/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm_asm.S.o 2025-07-24T03:53:00.0729620Z [1444/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.c.o 2025-07-24T03:53:00.1062640Z [1445/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm_asm.S.o 2025-07-24T03:53:00.1216630Z [1446/5147] Building ASM object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm_asm.S.o 2025-07-24T03:53:00.1256230Z [1447/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.1298770Z [1448/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.1320890Z [1449/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:00.1474540Z [1450/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.1526980Z [1451/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:00.1529180Z [1452/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.1691500Z [1453/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:00.1701410Z [1454/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.c.o 2025-07-24T03:53:00.2013780Z [1455/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.2234250Z [1456/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.2249620Z [1457/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-goi-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.2323260Z [1458/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.2334520Z [1459/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-goi-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-24T03:53:00.2354470Z [1460/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-goi-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.2547920Z [1461/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:00.2556590Z [1462/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:00.2629790Z [1463/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.2637870Z [1464/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.2926350Z [1465/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:00.3283020Z [1466/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:00.3285630Z [1467/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:00.3342490Z [1468/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-24T03:53:00.3385700Z [1469/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.3403840Z [1470/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.3567650Z [1471/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:00.3577390Z [1472/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.3588340Z [1473/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.3622210Z [1474/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:00.3911090Z [1475/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:00.4518750Z [1476/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-24T03:53:00.4538370Z [1477/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.4544660Z [1478/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.4545540Z [1479/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.4551800Z [1480/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-07-24T03:53:00.4555930Z [1481/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:00.4559640Z [1482/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-07-24T03:53:00.4565190Z [1483/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:00.4668620Z [1484/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/f32-igemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:00.4804320Z [1485/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.5462510Z [1486/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.5481670Z [1487/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.5487950Z [1488/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:00.5495570Z [1489/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.5509170Z [1490/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:00.5514500Z [1491/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.5520410Z [1492/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.5521240Z [1493/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.5575770Z [1494/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-24T03:53:00.5772560Z [1495/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.6483970Z [1496/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:00.6488290Z [1497/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-24T03:53:00.6492190Z [1498/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.6522310Z [1499/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2025-07-24T03:53:00.6530160Z [1500/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:00.6536730Z [1501/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2025-07-24T03:53:00.6547120Z [1502/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2025-07-24T03:53:00.6595160Z [1503/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2025-07-24T03:53:00.6666640Z [1504/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2025-07-24T03:53:00.6726640Z [1505/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2025-07-24T03:53:00.7466430Z [1506/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-07-24T03:53:00.7469820Z [1507/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2025-07-24T03:53:00.7489530Z [1508/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2025-07-24T03:53:00.7494760Z [1509/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-24T03:53:00.7499330Z [1510/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.7505900Z [1511/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-07-24T03:53:00.7552250Z [1512/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.7710540Z [1513/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-07-24T03:53:00.7756900Z [1514/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.7817460Z [1515/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.8437620Z [1516/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.8538780Z [1517/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.8540680Z [1518/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.8649700Z [1519/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2-prfm.S.o 2025-07-24T03:53:00.8664190Z [1520/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.8674210Z [1521/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.8682950Z [1522/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neon-ld128-acc2.S.o 2025-07-24T03:53:00.8690320Z [1523/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:00.8799710Z [1524/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2-prfm.S.o 2025-07-24T03:53:00.8802510Z [1525/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc2.S.o 2025-07-24T03:53:00.9315600Z [1526/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4-prfm.S.o 2025-07-24T03:53:00.9455130Z [1527/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2-prfm.S.o 2025-07-24T03:53:00.9481090Z [1528/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.9493380Z [1529/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S.o 2025-07-24T03:53:00.9534760Z [1530/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4-prfm.S.o 2025-07-24T03:53:00.9540400Z [1531/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld64-acc4.S.o 2025-07-24T03:53:00.9546160Z [1532/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-07-24T03:53:00.9549780Z [1533/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x1-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:00.9685440Z [1534/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-prfm.S.o 2025-07-24T03:53:00.9719890Z [1535/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x1-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:01.0402460Z [1536/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:01.0461770Z [1537/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld64.S.o 2025-07-24T03:53:01.0462770Z [1538/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:01.0468420Z [1539/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:01.0484120Z [1540/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-07-24T03:53:01.0490410Z [1541/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:01.0570060Z [1542/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2025-07-24T03:53:01.0671910Z [1543/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:01.0691500Z [1544/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-asm-aarch64-neondot-ld32.S.o 2025-07-24T03:53:01.0811370Z [1545/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-07-24T03:53:01.1414270Z [1546/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c16-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-24T03:53:01.1424140Z [1547/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-24T03:53:01.1460790Z [1548/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2025-07-24T03:53:01.1466070Z [1549/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-07-24T03:53:01.1468690Z [1550/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld32.S.o 2025-07-24T03:53:01.1489490Z [1551/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-07-24T03:53:01.1504680Z [1552/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mull.S.o 2025-07-24T03:53:01.1509910Z [1553/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53.S.o 2025-07-24T03:53:01.1520650Z [1554/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c16-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-24T03:53:01.1847620Z [1555/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-24T03:53:01.2476420Z [1556/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-07-24T03:53:01.2519730Z [1557/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-07-24T03:53:01.2636450Z [1558/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld64.S.o 2025-07-24T03:53:01.2639750Z [1559/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-07-24T03:53:01.2642590Z [1560/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64-prfm.S.o 2025-07-24T03:53:01.2645530Z [1561/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-24T03:53:01.2651310Z [1562/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-24T03:53:01.2653080Z [1563/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-24T03:53:01.2654050Z [1564/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-07-24T03:53:01.2672650Z [1565/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-24T03:53:01.3747790Z [1566/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.c.o 2025-07-24T03:53:01.3847550Z [1567/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.c.o 2025-07-24T03:53:01.3849920Z [1568/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc4.c.o 2025-07-24T03:53:01.3858250Z [1569/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.c.o 2025-07-24T03:53:01.3999570Z [1570/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.c.o 2025-07-24T03:53:01.4002390Z [1571/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.c.o 2025-07-24T03:53:01.4006110Z [1572/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.c.o 2025-07-24T03:53:01.4163580Z [1573/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u1.c.o 2025-07-24T03:53:01.4213060Z [1574/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.c.o 2025-07-24T03:53:01.4647570Z [1575/5147] Building C object third_party/kleidiai/CMakeFiles/kleidiai.dir/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.c.o 2025-07-24T03:53:01.4829440Z [1576/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u3-acc3.c.o 2025-07-24T03:53:01.4831580Z [1577/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc2.c.o 2025-07-24T03:53:01.4937780Z [1578/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u1.c.o 2025-07-24T03:53:01.4966280Z [1579/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u2-acc2.c.o 2025-07-24T03:53:01.5044860Z [1580/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar.c.o 2025-07-24T03:53:01.5061910Z [1581/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-1x1-minmax-scalar-pipelined.c.o 2025-07-24T03:53:01.5289830Z [1582/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u3-acc3.c.o 2025-07-24T03:53:01.5397630Z [1583/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc2.c.o 2025-07-24T03:53:01.5413690Z [1584/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-scalar-u2-acc2.c.o 2025-07-24T03:53:01.5642890Z [1585/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar.c.o 2025-07-24T03:53:01.5785060Z [1586/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-2x1-minmax-scalar-pipelined.c.o 2025-07-24T03:53:01.5839850Z [1587/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar-pipelined.c.o 2025-07-24T03:53:01.6023820Z [1588/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u1.c.o 2025-07-24T03:53:01.6190020Z [1589/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar-pipelined.c.o 2025-07-24T03:53:01.6312800Z [1590/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-scalar.c.o 2025-07-24T03:53:01.6317840Z [1591/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u2.c.o 2025-07-24T03:53:01.6335930Z [1592/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-scalar-u4.c.o 2025-07-24T03:53:01.6410010Z [1593/5147] Linking C static library lib/libkleidiai.a 2025-07-24T03:53:01.6851030Z [1594/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u2.c.o 2025-07-24T03:53:01.6954440Z [1595/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u1.c.o 2025-07-24T03:53:01.6956230Z [1596/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u4.c.o 2025-07-24T03:53:01.6963160Z [1597/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u4.c.o 2025-07-24T03:53:01.6995820Z [1598/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u1.c.o 2025-07-24T03:53:01.7195480Z [1599/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u8.c.o 2025-07-24T03:53:01.7199620Z [1600/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u1.c.o 2025-07-24T03:53:01.7356790Z [1601/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u4.c.o 2025-07-24T03:53:01.7556490Z [1602/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u1.c.o 2025-07-24T03:53:01.7887530Z [1603/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u4.c.o 2025-07-24T03:53:01.7996520Z [1604/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u1.c.o 2025-07-24T03:53:01.8003140Z [1605/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-scalar-u2.c.o 2025-07-24T03:53:01.8005750Z [1606/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u1.c.o 2025-07-24T03:53:01.8058300Z [1607/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u8.c.o 2025-07-24T03:53:01.8156370Z [1608/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u2.c.o 2025-07-24T03:53:01.8165240Z [1609/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u2.c.o 2025-07-24T03:53:01.8233590Z [1610/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u4.c.o 2025-07-24T03:53:01.8320800Z [1611/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-scalar-u4.c.o 2025-07-24T03:53:01.8940340Z [1612/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u1.c.o 2025-07-24T03:53:01.8993710Z [1613/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u1.c.o 2025-07-24T03:53:01.8999010Z [1614/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u4.c.o 2025-07-24T03:53:01.9071200Z [1615/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u2.c.o 2025-07-24T03:53:01.9143130Z [1616/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-scalar-u2.c.o 2025-07-24T03:53:01.9195080Z [1617/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u1.c.o 2025-07-24T03:53:01.9329490Z [1618/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u2.c.o 2025-07-24T03:53:01.9333910Z [1619/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u4.c.o 2025-07-24T03:53:01.9337020Z [1620/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u1.c.o 2025-07-24T03:53:01.9450340Z [1621/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-scalar-u4.c.o 2025-07-24T03:53:01.9965190Z [1622/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u2.c.o 2025-07-24T03:53:01.9975640Z [1623/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u4.c.o 2025-07-24T03:53:02.0048360Z [1624/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u4.c.o 2025-07-24T03:53:02.0215130Z [1625/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u2.c.o 2025-07-24T03:53:02.0301940Z [1626/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u1.c.o 2025-07-24T03:53:02.0318470Z [1627/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u1.c.o 2025-07-24T03:53:02.0591330Z [1628/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-07-24T03:53:02.0753610Z [1629/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-scalar.c.o 2025-07-24T03:53:02.0998680Z [1630/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-relu-scalar.c.o 2025-07-24T03:53:02.1111330Z [1631/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x2-minmax-scalar.c.o 2025-07-24T03:53:02.1121160Z [1632/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-relu-scalar.c.o 2025-07-24T03:53:02.1267300Z [1633/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-07-24T03:53:02.1276700Z [1634/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-scalar.c.o 2025-07-24T03:53:02.1342200Z [1635/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-relu-scalar.c.o 2025-07-24T03:53:02.1353530Z [1636/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-2x4-scalar.c.o 2025-07-24T03:53:02.1665720Z [1637/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-relu-scalar.c.o 2025-07-24T03:53:02.2024340Z [1638/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-scalar.c.o 2025-07-24T03:53:02.2089890Z [1639/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-1x1-minmax-scalar.c.o 2025-07-24T03:53:02.2145100Z [1640/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-scalar.c.o 2025-07-24T03:53:02.2197070Z [1641/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-4x1-minmax-scalar.c.o 2025-07-24T03:53:02.2199160Z [1642/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-2x1-minmax-scalar.c.o 2025-07-24T03:53:02.2322620Z [1643/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x2-minmax-scalar.c.o 2025-07-24T03:53:02.2330680Z [1644/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x1-minmax-scalar.c.o 2025-07-24T03:53:02.2488380Z [1645/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u1.c.o 2025-07-24T03:53:02.2580150Z [1646/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-spmm/gen/f32-qc8w-spmm-8x4-minmax-scalar.c.o 2025-07-24T03:53:02.2897120Z [1647/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u2.c.o 2025-07-24T03:53:02.3017240Z [1648/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u4.c.o 2025-07-24T03:53:02.3066410Z [1649/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u2.c.o 2025-07-24T03:53:02.3128970Z [1650/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u1.c.o 2025-07-24T03:53:02.3247640Z [1651/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u3.c.o 2025-07-24T03:53:02.3266350Z [1652/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u3.c.o 2025-07-24T03:53:02.3282180Z [1653/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u2.c.o 2025-07-24T03:53:02.3480820Z [1654/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u1.c.o 2025-07-24T03:53:02.3485230Z [1655/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-fmagic-u3.c.o 2025-07-24T03:53:02.3585240Z [1656/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u2.c.o 2025-07-24T03:53:02.4059760Z [1657/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u4.c.o 2025-07-24T03:53:02.4069010Z [1658/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u2.c.o 2025-07-24T03:53:02.4199900Z [1659/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-fmagic-u3.c.o 2025-07-24T03:53:02.4235200Z [1660/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u3.c.o 2025-07-24T03:53:02.4320920Z [1661/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u2-acc2.c.o 2025-07-24T03:53:02.4332320Z [1662/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u2.c.o 2025-07-24T03:53:02.4510850Z [1663/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u3.c.o 2025-07-24T03:53:02.4691990Z [1664/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u1.c.o 2025-07-24T03:53:02.4796300Z [1665/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc4.c.o 2025-07-24T03:53:02.4799700Z [1666/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-lut64-p2-u4-acc2.c.o 2025-07-24T03:53:02.4946290Z [1667/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u2-acc2.c.o 2025-07-24T03:53:02.4975860Z [1668/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc4.c.o 2025-07-24T03:53:02.5034340Z [1669/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u1.c.o 2025-07-24T03:53:02.5293530Z [1670/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u3-acc3.c.o 2025-07-24T03:53:02.5328140Z [1671/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u2-acc2.c.o 2025-07-24T03:53:02.5581120Z [1672/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u1.c.o 2025-07-24T03:53:02.5710430Z [1673/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc2.c.o 2025-07-24T03:53:02.5812560Z [1674/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u2-acc2.c.o 2025-07-24T03:53:02.5915420Z [1675/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u1.c.o 2025-07-24T03:53:02.6018780Z [1676/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u3-acc3.c.o 2025-07-24T03:53:02.6132320Z [1677/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-scalar-u4-acc2.c.o 2025-07-24T03:53:02.6141690Z [1678/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u4.c.o 2025-07-24T03:53:02.6321480Z [1679/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar-acc2.c.o 2025-07-24T03:53:02.6504040Z [1680/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar-acc2.c.o 2025-07-24T03:53:02.6560360Z [1681/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-minmax-scalar.c.o 2025-07-24T03:53:02.6772700Z [1682/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-scalar.c.o 2025-07-24T03:53:02.6836040Z [1683/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar-acc2.c.o 2025-07-24T03:53:02.6899920Z [1684/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar.c.o 2025-07-24T03:53:02.7129430Z [1685/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar.c.o 2025-07-24T03:53:02.7252240Z [1686/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar.c.o 2025-07-24T03:53:02.7262100Z [1687/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-minmax-scalar-acc2.c.o 2025-07-24T03:53:02.7331540Z [1688/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar-acc2.c.o 2025-07-24T03:53:02.7569180Z [1689/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p2c-scalar.c.o 2025-07-24T03:53:02.7616080Z [1690/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar.c.o 2025-07-24T03:53:02.7745850Z [1691/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc3.c.o 2025-07-24T03:53:02.7884480Z [1692/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar.c.o 2025-07-24T03:53:02.8011310Z [1693/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l1c1s1r-scalar.c.o 2025-07-24T03:53:02.8025080Z [1694/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar-acc2.c.o 2025-07-24T03:53:02.8207920Z [1695/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-minmax-scalar.c.o 2025-07-24T03:53:02.8324290Z [1696/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc4.c.o 2025-07-24T03:53:02.8520270Z [1697/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar-acc2.c.o 2025-07-24T03:53:02.8575160Z [1698/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1-acc2.c.o 2025-07-24T03:53:02.8651970Z [1699/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-1x1.c.o 2025-07-24T03:53:02.8676850Z [1700/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p2c-scalar.c.o 2025-07-24T03:53:02.8811830Z [1701/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1.c.o 2025-07-24T03:53:02.8861910Z [1702/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-3x1.c.o 2025-07-24T03:53:02.9144200Z [1703/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-5x1.c.o 2025-07-24T03:53:02.9245750Z [1704/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-6x1.c.o 2025-07-24T03:53:02.9487520Z [1705/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc3.c.o 2025-07-24T03:53:02.9501870Z [1706/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc4.c.o 2025-07-24T03:53:02.9694300Z [1707/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1.c.o 2025-07-24T03:53:02.9705920Z [1708/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1.c.o 2025-07-24T03:53:02.9716300Z [1709/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-3x1.c.o 2025-07-24T03:53:02.9873000Z [1710/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-4x1.c.o 2025-07-24T03:53:02.9966220Z [1711/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc3.c.o 2025-07-24T03:53:03.0004450Z [1712/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc2.c.o 2025-07-24T03:53:03.0307900Z [1713/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc4.c.o 2025-07-24T03:53:03.0311330Z [1714/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1.c.o 2025-07-24T03:53:03.0564850Z [1715/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc3.c.o 2025-07-24T03:53:03.0573490Z [1716/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1.c.o 2025-07-24T03:53:03.0834110Z [1717/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc2.c.o 2025-07-24T03:53:03.0862060Z [1718/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1-acc2.c.o 2025-07-24T03:53:03.1000970Z [1719/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc3.c.o 2025-07-24T03:53:03.1020650Z [1720/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-3x1.c.o 2025-07-24T03:53:03.1032440Z [1721/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1.c.o 2025-07-24T03:53:03.1109860Z [1722/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc4.c.o 2025-07-24T03:53:03.1391720Z [1723/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1.c.o 2025-07-24T03:53:03.1668210Z [1724/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1.c.o 2025-07-24T03:53:03.1687360Z [1725/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc3.c.o 2025-07-24T03:53:03.1842820Z [1726/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-3x1-acc2.c.o 2025-07-24T03:53:03.1857070Z [1727/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u2.c.o 2025-07-24T03:53:03.2013390Z [1728/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u4.c.o 2025-07-24T03:53:03.2023110Z [1729/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u3.c.o 2025-07-24T03:53:03.2077770Z [1730/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u3.c.o 2025-07-24T03:53:03.2206440Z [1731/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u1.c.o 2025-07-24T03:53:03.2215410Z [1732/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u1.c.o 2025-07-24T03:53:03.2530330Z [1733/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x2-relu-scalar.c.o 2025-07-24T03:53:03.2744850Z [1734/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p1.c.o 2025-07-24T03:53:03.2940070Z [1735/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x4-minmax-scalar.c.o 2025-07-24T03:53:03.3046710Z [1736/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x4-minmax-scalar.c.o 2025-07-24T03:53:03.3049370Z [1737/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c4.c.o 2025-07-24T03:53:03.3187060Z [1738/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p2.c.o 2025-07-24T03:53:03.3204150Z [1739/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c1.c.o 2025-07-24T03:53:03.3223070Z [1740/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-2x4-minmax-scalar.c.o 2025-07-24T03:53:03.3270530Z [1741/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x2-relu-scalar.c.o 2025-07-24T03:53:03.3589650Z [1742/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-2x4-minmax-scalar.c.o 2025-07-24T03:53:03.3703180Z [1743/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-3x3-minmax-scalar.c.o 2025-07-24T03:53:03.3757510Z [1744/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x4-minmax-scalar.c.o 2025-07-24T03:53:03.4061480Z [1745/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u3.c.o 2025-07-24T03:53:03.4067590Z [1746/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x2-minmax-scalar.c.o 2025-07-24T03:53:03.4107750Z [1747/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:03.4311580Z [1748/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u2.c.o 2025-07-24T03:53:03.4316910Z [1749/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u1.c.o 2025-07-24T03:53:03.4504140Z [1750/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u1.c.o 2025-07-24T03:53:03.4619020Z [1751/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u4.c.o 2025-07-24T03:53:03.4760080Z [1752/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u1.c.o 2025-07-24T03:53:03.4863640Z [1753/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u2.c.o 2025-07-24T03:53:03.5006990Z [1754/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u3.c.o 2025-07-24T03:53:03.5015350Z [1755/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u1.c.o 2025-07-24T03:53:03.5151690Z [1756/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u3.c.o 2025-07-24T03:53:03.5205220Z [1757/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-fmagic-u2.c.o 2025-07-24T03:53:03.5340470Z [1758/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar.c.o 2025-07-24T03:53:03.5584090Z [1759/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u2.c.o 2025-07-24T03:53:03.5753610Z [1760/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-minmax-scalar-acc2.c.o 2025-07-24T03:53:03.5853830Z [1761/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar.c.o 2025-07-24T03:53:03.5962890Z [1762/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar.c.o 2025-07-24T03:53:03.5965510Z [1763/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar.c.o 2025-07-24T03:53:03.6189520Z [1764/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar.c.o 2025-07-24T03:53:03.6210060Z [1765/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3f3m3l1c1s1r-scalar-acc2.c.o 2025-07-24T03:53:03.6265890Z [1766/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar-acc2.c.o 2025-07-24T03:53:03.6449070Z [1767/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-scalar.c.o 2025-07-24T03:53:03.6451880Z [1768/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar.c.o 2025-07-24T03:53:03.6699470Z [1769/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-scalar-acc2.c.o 2025-07-24T03:53:03.6740350Z [1770/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u3-acc3.c.o 2025-07-24T03:53:03.6890590Z [1771/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar.c.o 2025-07-24T03:53:03.7036660Z [1772/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc2.c.o 2025-07-24T03:53:03.7060050Z [1773/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u3.c.o 2025-07-24T03:53:03.7251750Z [1774/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u1.c.o 2025-07-24T03:53:03.7305570Z [1775/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u2-acc2.c.o 2025-07-24T03:53:03.7339320Z [1776/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc2.c.o 2025-07-24T03:53:03.7546800Z [1777/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmax-scalar-u4-acc4.c.o 2025-07-24T03:53:03.7568260Z [1778/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u3-acc3.c.o 2025-07-24T03:53:03.7783690Z [1779/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l1c1s1r-minmax-scalar-acc2.c.o 2025-07-24T03:53:03.7818740Z [1780/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rmin-scalar-u4-acc4.c.o 2025-07-24T03:53:03.7916100Z [1781/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u1.c.o 2025-07-24T03:53:03.8076340Z [1782/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc2.c.o 2025-07-24T03:53:03.8132540Z [1783/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u3-acc3.c.o 2025-07-24T03:53:03.8298970Z [1784/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u4-acc4.c.o 2025-07-24T03:53:03.8358540Z [1785/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p0p1c3x4-scalar-1x1.c.o 2025-07-24T03:53:03.8773160Z [1786/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/f32-conv-hwc-3x3s2p1c3x4-scalar-1x1.c.o 2025-07-24T03:53:03.8781850Z [1787/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar-acc2.c.o 2025-07-24T03:53:03.8831310Z [1788/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar.c.o 2025-07-24T03:53:03.8899780Z [1789/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar.c.o 2025-07-24T03:53:03.9017300Z [1790/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p2c-scalar-acc2.c.o 2025-07-24T03:53:03.9076310Z [1791/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar.c.o 2025-07-24T03:53:03.9086910Z [1792/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:03.9139630Z [1793/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:03.9531130Z [1794/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:03.9646270Z [1795/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:03.9994790Z [1796/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.0052610Z [1797/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.0069530Z [1798/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.0108170Z [1799/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.0130660Z [1800/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.0310730Z [1801/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.0533790Z [1802/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.0536670Z [1803/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.0733340Z [1804/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.0875020Z [1805/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.1110410Z [1806/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.1112510Z [1807/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.1199240Z [1808/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.1344070Z [1809/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.1347480Z [1810/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.1351180Z [1811/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.1606530Z [1812/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.1742820Z [1813/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.1907300Z [1814/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.2178040Z [1815/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u2.c.o 2025-07-24T03:53:04.2306920Z [1816/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u3.c.o 2025-07-24T03:53:04.2372310Z [1817/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.2425990Z [1818/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.2515810Z [1819/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.2537650Z [1820/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.2594380Z [1821/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.2712620Z [1822/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.2931940Z [1823/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.2997470Z [1824/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.3348650Z [1825/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.3539420Z [1826/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.3758970Z [1827/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.3893520Z [1828/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.3930470Z [1829/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.3950140Z [1830/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.4030070Z [1831/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.4113130Z [1832/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-2x4-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.4116000Z [1833/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.4120160Z [1834/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.4336280Z [1835/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x2-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.4615830Z [1836/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.4948930Z [1837/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.5250890Z [1838/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.5257640Z [1839/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.5371260Z [1840/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.5381630Z [1841/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.5382380Z [1842/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.5533770Z [1843/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.5609990Z [1844/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.5796510Z [1845/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.6045840Z [1846/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.6368590Z [1847/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-gemm/gen/qu8-gemm-4x4-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.6464190Z [1848/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.6496670Z [1849/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.6619620Z [1850/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.6626960Z [1851/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.6634580Z [1852/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.6695080Z [1853/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.6697150Z [1854/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.6906610Z [1855/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.7352070Z [1856/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.7546830Z [1857/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.7695440Z [1858/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.7788060Z [1859/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.7893120Z [1860/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.7914410Z [1861/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-2x4-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.7916470Z [1862/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.7938510Z [1863/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.8132390Z [1864/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x2-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.8525590Z [1865/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.8578220Z [1866/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.8799820Z [1867/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.8812860Z [1868/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.8908460Z [1869/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x2-scalar.c.o 2025-07-24T03:53:04.9062330Z [1870/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x8c8-gemm-goi-scalar.c.o 2025-07-24T03:53:04.9065650Z [1871/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:04.9074170Z [1872/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:04.9279390Z [1873/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:04.9287150Z [1874/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x2-minmax-rndnu-scalar.c.o 2025-07-24T03:53:04.9563080Z [1875/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x16c8-gemm-goi-scalar.c.o 2025-07-24T03:53:04.9737700Z [1876/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-gio-scalar.c.o 2025-07-24T03:53:04.9766260Z [1877/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc4w-packw/gen/qs8-qc4w-packw-x32c8-gemm-goi-scalar.c.o 2025-07-24T03:53:04.9890080Z [1878/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.0063160Z [1879/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-4p2c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.0221500Z [1880/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.0351020Z [1881/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.0372160Z [1882/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.0383720Z [1883/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.0627870Z [1884/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.0709950Z [1885/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.0845650Z [1886/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.0953940Z [1887/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.1060790Z [1888/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.1062910Z [1889/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.1410570Z [1890/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.1567220Z [1891/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.1624850Z [1892/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.1803810Z [1893/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.1853070Z [1894/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.1939600Z [1895/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.1947580Z [1896/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.2098150Z [1897/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.2159210Z [1898/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.2183400Z [1899/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.2325670Z [1900/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.2739580Z [1901/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.2841320Z [1902/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.2990520Z [1903/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.3027210Z [1904/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.3073920Z [1905/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.3228960Z [1906/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.3318980Z [1907/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.3391270Z [1908/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.3518260Z [1909/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.3528830Z [1910/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.3870230Z [1911/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.3933180Z [1912/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.4154280Z [1913/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.4170400Z [1914/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.4390590Z [1915/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.4514010Z [1916/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.4574130Z [1917/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.4586460Z [1918/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.4750190Z [1919/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.5074730Z [1920/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.5101570Z [1921/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.5300740Z [1922/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.5311000Z [1923/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.5453210Z [1924/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.5491760Z [1925/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.5653830Z [1926/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.5657980Z [1927/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.5748890Z [1928/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.6153490Z [1929/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.6322000Z [1930/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.6349410Z [1931/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.6390460Z [1932/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.6505360Z [1933/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.6565220Z [1934/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.6657110Z [1935/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.6921070Z [1936/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.7274450Z [1937/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.7385150Z [1938/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.7397870Z [1939/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.7479750Z [1940/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.7496130Z [1941/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.7498900Z [1942/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.7672210Z [1943/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.7674480Z [1944/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.8050210Z [1945/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.8483090Z [1946/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.8608030Z [1947/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.8710690Z [1948/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.8718710Z [1949/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.8724350Z [1950/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x2-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.8767600Z [1951/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.8868660Z [1952/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x2-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.8972130Z [1953/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.9265150Z [1954/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:05.9472590Z [1955/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x4-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:05.9595210Z [1956/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x4-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:05.9632000Z [1957/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u1.c.o 2025-07-24T03:53:05.9707560Z [1958/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-gio-scalar.c.o 2025-07-24T03:53:05.9779400Z [1959/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x8c8-gemm-goi-scalar.c.o 2025-07-24T03:53:05.9783940Z [1960/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u2.c.o 2025-07-24T03:53:05.9955080Z [1961/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.0000210Z [1962/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x8c8-gemm-gio-scalar.c.o 2025-07-24T03:53:06.0136230Z [1963/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.0314940Z [1964/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u2.c.o 2025-07-24T03:53:06.0373220Z [1965/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u2.c.o 2025-07-24T03:53:06.0565240Z [1966/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u2.c.o 2025-07-24T03:53:06.0836640Z [1967/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u1.c.o 2025-07-24T03:53:06.0859530Z [1968/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u2.c.o 2025-07-24T03:53:06.0964150Z [1969/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u1.c.o 2025-07-24T03:53:06.1097260Z [1970/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u2.c.o 2025-07-24T03:53:06.1124780Z [1971/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u2.c.o 2025-07-24T03:53:06.1279750Z [1972/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u1.c.o 2025-07-24T03:53:06.1388910Z [1973/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u1.c.o 2025-07-24T03:53:06.1427140Z [1974/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u2.c.o 2025-07-24T03:53:06.1584480Z [1975/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.1601700Z [1976/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.1907080Z [1977/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.2114990Z [1978/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.2185210Z [1979/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.2320480Z [1980/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.2423710Z [1981/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.2526730Z [1982/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.2637160Z [1983/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.2639610Z [1984/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.2643600Z [1985/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.2698180Z [1986/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.3053010Z [1987/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.3230700Z [1988/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.3365940Z [1989/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.3377470Z [1990/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u2.c.o 2025-07-24T03:53:06.3539610Z [1991/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u4.c.o 2025-07-24T03:53:06.3638540Z [1992/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u1.c.o 2025-07-24T03:53:06.3695230Z [1993/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u2.c.o 2025-07-24T03:53:06.3700450Z [1994/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u2.c.o 2025-07-24T03:53:06.4018170Z [1995/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u2.c.o 2025-07-24T03:53:06.4044970Z [1996/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u2.c.o 2025-07-24T03:53:06.4053120Z [1997/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u1.c.o 2025-07-24T03:53:06.4315940Z [1998/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u4.c.o 2025-07-24T03:53:06.4330610Z [1999/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u1.c.o 2025-07-24T03:53:06.4556430Z [2000/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u2.c.o 2025-07-24T03:53:06.4664470Z [2001/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut2048-p1-div-u2.c.o 2025-07-24T03:53:06.4827730Z [2002/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x8-minmax-scalar.c.o 2025-07-24T03:53:06.4834160Z [2003/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x4-minmax-scalar.c.o 2025-07-24T03:53:06.4878930Z [2004/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-p5-div-u4.c.o 2025-07-24T03:53:06.5045020Z [2005/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u4.c.o 2025-07-24T03:53:06.5187200Z [2006/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u2.c.o 2025-07-24T03:53:06.5372920Z [2007/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x2-minmax-scalar.c.o 2025-07-24T03:53:06.5412340Z [2008/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x4-minmax-scalar.c.o 2025-07-24T03:53:06.5772440Z [2009/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x8-minmax-scalar.c.o 2025-07-24T03:53:06.5914840Z [2010/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-2x2-minmax-scalar.c.o 2025-07-24T03:53:06.6054360Z [2011/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x8-minmax-scalar.c.o 2025-07-24T03:53:06.6155730Z [2012/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x4-minmax-scalar.c.o 2025-07-24T03:53:06.6250400Z [2013/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x2-minmax-scalar.c.o 2025-07-24T03:53:06.6290410Z [2014/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x4-minmax-scalar.c.o 2025-07-24T03:53:06.6452570Z [2015/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x2-minmax-scalar.c.o 2025-07-24T03:53:06.6459420Z [2016/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x1-minmax-scalar.c.o 2025-07-24T03:53:06.6625220Z [2017/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x2-minmax-scalar.c.o 2025-07-24T03:53:06.6674200Z [2018/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x8-minmax-scalar.c.o 2025-07-24T03:53:06.6872720Z [2019/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x8-minmax-scalar.c.o 2025-07-24T03:53:06.7106140Z [2020/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x4-minmax-scalar.c.o 2025-07-24T03:53:06.7210720Z [2021/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x2-minmax-scalar.c.o 2025-07-24T03:53:06.7311660Z [2022/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x8-minmax-scalar.c.o 2025-07-24T03:53:06.7382980Z [2023/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8-minmax-scalar.c.o 2025-07-24T03:53:06.7665180Z [2024/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x4-minmax-scalar.c.o 2025-07-24T03:53:06.7732330Z [2025/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8-minmax-scalar.c.o 2025-07-24T03:53:06.7839560Z [2026/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8-minmax-scalar.c.o 2025-07-24T03:53:06.7859720Z [2027/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8-minmax-scalar.c.o 2025-07-24T03:53:06.7972880Z [2028/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x4-minmax-scalar.c.o 2025-07-24T03:53:06.7995790Z [2029/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.8156090Z [2030/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.8345290Z [2031/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.8515420Z [2032/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.8534030Z [2033/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.8856760Z [2034/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.8888510Z [2035/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.8961170Z [2036/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.9065170Z [2037/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.9108470Z [2038/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.9110860Z [2039/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.9372350Z [2040/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:06.9505100Z [2041/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:06.9864770Z [2042/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:06.9974960Z [2043/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:07.0083640Z [2044/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:07.0101880Z [2045/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:07.0108200Z [2046/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:07.0115510Z [2047/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l1c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:07.0315410Z [2048/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:07.0319620Z [2049/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:07.0321850Z [2050/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:07.0498870Z [2051/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:07.0775590Z [2052/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l2c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:07.1062780Z [2053/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:07.1252240Z [2054/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:07.1262390Z [2055/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:07.1325480Z [2056/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:07.1399100Z [2057/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l4c1s1r-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:07.1528220Z [2058/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:07.1628610Z [2059/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:07.1629880Z [2060/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:07.1770590Z [2061/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-rndnu-scalar.c.o 2025-07-24T03:53:07.1892470Z [2062/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-rndnu-scalar.c.o 2025-07-24T03:53:07.2156930Z [2063/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:07.2485090Z [2064/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:07.2530640Z [2065/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p4c-minmax-rndnu-scalar.c.o 2025-07-24T03:53:07.2574710Z [2066/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:07.2581970Z [2067/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:07.2612200Z [2068/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:07.2719950Z [2069/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:07.2772430Z [2070/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u3.c.o 2025-07-24T03:53:07.2926040Z [2071/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-gio-scalar.c.o 2025-07-24T03:53:07.3225140Z [2072/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p4c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:07.3280310Z [2073/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u2.c.o 2025-07-24T03:53:07.3445330Z [2074/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c4-gemm-goi-scalar.c.o 2025-07-24T03:53:07.3586260Z [2075/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-goi-scalar.c.o 2025-07-24T03:53:07.3595240Z [2076/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-goi-scalar.c.o 2025-07-24T03:53:07.3665710Z [2077/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c4-gemm-gio-scalar.c.o 2025-07-24T03:53:07.3752180Z [2078/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-gio-scalar.c.o 2025-07-24T03:53:07.3765450Z [2079/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-dwconv/gen/qu8-dwconv-6f6m7l4c1s1r-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:07.3924030Z [2080/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-gio-scalar.c.o 2025-07-24T03:53:07.4194650Z [2081/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x8c8-gemm-gio-scalar.c.o 2025-07-24T03:53:07.4242200Z [2082/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u4.c.o 2025-07-24T03:53:07.4440460Z [2083/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u8.c.o 2025-07-24T03:53:07.4450480Z [2084/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u1.c.o 2025-07-24T03:53:07.4611730Z [2085/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u2.c.o 2025-07-24T03:53:07.4711460Z [2086/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u4.c.o 2025-07-24T03:53:07.5013520Z [2087/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u2.c.o 2025-07-24T03:53:07.5127460Z [2088/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u4.c.o 2025-07-24T03:53:07.5134160Z [2089/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u1.c.o 2025-07-24T03:53:07.5205490Z [2090/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u2.c.o 2025-07-24T03:53:07.5338850Z [2091/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u4.c.o 2025-07-24T03:53:07.5441000Z [2092/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u1.c.o 2025-07-24T03:53:07.5474490Z [2093/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u2.c.o 2025-07-24T03:53:07.5509560Z [2094/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u1.c.o 2025-07-24T03:53:07.5744230Z [2095/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u1.c.o 2025-07-24T03:53:07.5772160Z [2096/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u2.c.o 2025-07-24T03:53:07.6014370Z [2097/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u1.c.o 2025-07-24T03:53:07.6053050Z [2098/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u4.c.o 2025-07-24T03:53:07.6083710Z [2099/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u1.c.o 2025-07-24T03:53:07.6265490Z [2100/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-scalar-u4.c.o 2025-07-24T03:53:07.6421710Z [2101/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u2.c.o 2025-07-24T03:53:07.6765910Z [2102/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u2.c.o 2025-07-24T03:53:07.6779230Z [2103/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u1.c.o 2025-07-24T03:53:07.6884230Z [2104/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u2.c.o 2025-07-24T03:53:07.6975220Z [2105/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u1.c.o 2025-07-24T03:53:07.6991360Z [2106/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u3.c.o 2025-07-24T03:53:07.6994250Z [2107/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u1.c.o 2025-07-24T03:53:07.7149550Z [2108/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u8.c.o 2025-07-24T03:53:07.7166200Z [2109/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u4.c.o 2025-07-24T03:53:07.7438700Z [2110/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u6.c.o 2025-07-24T03:53:07.7604580Z [2111/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u5.c.o 2025-07-24T03:53:07.7688900Z [2112/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u2.c.o 2025-07-24T03:53:07.7863760Z [2113/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u1.c.o 2025-07-24T03:53:07.7866770Z [2114/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u3.c.o 2025-07-24T03:53:07.7992680Z [2115/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u4.c.o 2025-07-24T03:53:07.8086650Z [2116/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vgelu/gen/f32-vgelu-scalar.c.o 2025-07-24T03:53:07.8145830Z [2117/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u5.c.o 2025-07-24T03:53:07.8227590Z [2118/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-scalar-rr2-p6-u6.c.o 2025-07-24T03:53:07.8451110Z [2119/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u1.c.o 2025-07-24T03:53:07.8610990Z [2120/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlog/gen/f32-vlog-scalar-log.c.o 2025-07-24T03:53:07.8637720Z [2121/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u2.c.o 2025-07-24T03:53:07.8737350Z [2122/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u1.c.o 2025-07-24T03:53:07.8933370Z [2123/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u2.c.o 2025-07-24T03:53:07.8954640Z [2124/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u1.c.o 2025-07-24T03:53:07.9109730Z [2125/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c2-minmax-scalar-2x.c.o 2025-07-24T03:53:07.9303850Z [2126/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u2.c.o 2025-07-24T03:53:07.9506580Z [2127/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-scalar-2x.c.o 2025-07-24T03:53:07.9708930Z [2128/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon.c.o 2025-07-24T03:53:07.9826280Z [2129/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4-acc3.c.o 2025-07-24T03:53:07.9926420Z [2130/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4-acc2.c.o 2025-07-24T03:53:08.0058560Z [2131/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4-acc4.c.o 2025-07-24T03:53:08.0061730Z [2132/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-1x4.c.o 2025-07-24T03:53:08.0218690Z [2133/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-2x4-acc2.c.o 2025-07-24T03:53:08.0392080Z [2134/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-3x4.c.o 2025-07-24T03:53:08.0430980Z [2135/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-packw/gen/qs8-packw-x32c4-gemm-goi-scalar.c.o 2025-07-24T03:53:08.0586320Z [2136/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-4x4.c.o 2025-07-24T03:53:08.1034930Z [2137/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-5x4.c.o 2025-07-24T03:53:08.1241840Z [2138/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-6x4.c.o 2025-07-24T03:53:08.1287530Z [2139/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4-acc2.c.o 2025-07-24T03:53:08.1407100Z [2140/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4-acc4.c.o 2025-07-24T03:53:08.1410480Z [2141/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-2x4-acc2.c.o 2025-07-24T03:53:08.1421050Z [2142/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4-acc3.c.o 2025-07-24T03:53:08.1592320Z [2143/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-4x4.c.o 2025-07-24T03:53:08.1803400Z [2144/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-2x4.c.o 2025-07-24T03:53:08.2002620Z [2145/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc2.c.o 2025-07-24T03:53:08.2109600Z [2146/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-3x4.c.o 2025-07-24T03:53:08.2545150Z [2147/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc3.c.o 2025-07-24T03:53:08.2655790Z [2148/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc4.c.o 2025-07-24T03:53:08.2835900Z [2149/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-3x4-acc2.c.o 2025-07-24T03:53:08.2938860Z [2150/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4-acc2.c.o 2025-07-24T03:53:08.3019720Z [2151/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4-acc3.c.o 2025-07-24T03:53:08.3081270Z [2152/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-2x4.c.o 2025-07-24T03:53:08.3233250Z [2153/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-3x4.c.o 2025-07-24T03:53:08.3366080Z [2154/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-4x4-acc2.c.o 2025-07-24T03:53:08.3519450Z [2155/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-4x4.c.o 2025-07-24T03:53:08.3981970Z [2156/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-5x4.c.o 2025-07-24T03:53:08.4089940Z [2157/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc2.c.o 2025-07-24T03:53:08.4296250Z [2158/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc4.c.o 2025-07-24T03:53:08.4372210Z [2159/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4-acc5.c.o 2025-07-24T03:53:08.4385330Z [2160/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc3.c.o 2025-07-24T03:53:08.4400840Z [2161/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4-acc5.c.o 2025-07-24T03:53:08.4403720Z [2162/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4-acc2.c.o 2025-07-24T03:53:08.4664730Z [2163/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4.c.o 2025-07-24T03:53:08.4673450Z [2164/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-2x4-acc3.c.o 2025-07-24T03:53:08.5387770Z [2165/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-3x4.c.o 2025-07-24T03:53:08.5393230Z [2166/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u16.c.o 2025-07-24T03:53:08.5594130Z [2167/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u24.c.o 2025-07-24T03:53:08.5712290Z [2168/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-3x4-acc2.c.o 2025-07-24T03:53:08.5791240Z [2169/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:08.5851240Z [2170/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:08.5875040Z [2171/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u32.c.o 2025-07-24T03:53:08.5889090Z [2172/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neon.c.o 2025-07-24T03:53:08.6121660Z [2173/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-2x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:08.6247570Z [2174/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-1x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:08.6724320Z [2175/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:08.7035150Z [2176/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-3x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:08.7197780Z [2177/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:08.7212490Z [2178/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:08.7215620Z [2179/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:08.7389130Z [2180/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neon.c.o 2025-07-24T03:53:08.7398030Z [2181/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-dup-ld128.c.o 2025-07-24T03:53:08.7406340Z [2182/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-5x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:08.7963100Z [2183/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:08.8202180Z [2184/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:08.8344690Z [2185/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-dup-ld128.c.o 2025-07-24T03:53:08.8404670Z [2186/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:08.8585030Z [2187/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:08.8784010Z [2188/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:08.8857560Z [2189/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:08.9076200Z [2190/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:08.9108360Z [2191/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:08.9113860Z [2192/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neon.c.o 2025-07-24T03:53:08.9589970Z [2193/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld128.c.o 2025-07-24T03:53:08.9706640Z [2194/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemm/gen/f32-gemm-8x8s4-minmax-neon.c.o 2025-07-24T03:53:08.9929930Z [2195/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-1x8s4-minmax-neon.c.o 2025-07-24T03:53:09.0009750Z [2196/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:09.0272680Z [2197/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:09.0353150Z [2198/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-5x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:09.0396280Z [2199/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:09.0441590Z [2200/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:09.0484900Z [2201/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-4x8s4-minmax-neon.c.o 2025-07-24T03:53:09.0669220Z [2202/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld128.c.o 2025-07-24T03:53:09.1148260Z [2203/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:09.1168870Z [2204/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:09.1181330Z [2205/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:09.1263240Z [2206/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-6x8s4-minmax-neon.c.o 2025-07-24T03:53:09.1456650Z [2207/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-int.c.o 2025-07-24T03:53:09.1529490Z [2208/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-int.c.o 2025-07-24T03:53:09.1602070Z [2209/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-int.c.o 2025-07-24T03:53:09.1694780Z [2210/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon-acc2.c.o 2025-07-24T03:53:09.1799380Z [2211/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x1-scalar-float.c.o 2025-07-24T03:53:09.1833340Z [2212/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-2x2-scalar-float.c.o 2025-07-24T03:53:09.2084210Z [2213/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-float.c.o 2025-07-24T03:53:09.2091620Z [2214/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-int.c.o 2025-07-24T03:53:09.2277510Z [2215/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-4x1-scalar-float.c.o 2025-07-24T03:53:09.2448130Z [2216/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u8.c.o 2025-07-24T03:53:09.2656300Z [2217/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u24.c.o 2025-07-24T03:53:09.2932720Z [2218/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u32.c.o 2025-07-24T03:53:09.2958190Z [2219/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u16.c.o 2025-07-24T03:53:09.3168000Z [2220/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u24.c.o 2025-07-24T03:53:09.3189570Z [2221/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u8.c.o 2025-07-24T03:53:09.3200300Z [2222/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int32-u32.c.o 2025-07-24T03:53:09.3479220Z [2223/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x1.c.o 2025-07-24T03:53:09.3556410Z [2224/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x2.c.o 2025-07-24T03:53:09.3769820Z [2225/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x4-neon-2x1.c.o 2025-07-24T03:53:09.4049060Z [2226/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x1.c.o 2025-07-24T03:53:09.4072690Z [2227/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p0p1c3x8-neon-2x2.c.o 2025-07-24T03:53:09.4300800Z [2228/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x4-neon-2x2.c.o 2025-07-24T03:53:09.4456910Z [2229/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.4504400Z [2230/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x1.c.o 2025-07-24T03:53:09.4640740Z [2231/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p4c-minmax-neon.c.o 2025-07-24T03:53:09.4691000Z [2232/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.4835380Z [2233/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.5073520Z [2234/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-3p16c-minmax-neon.c.o 2025-07-24T03:53:09.5272410Z [2235/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.5326700Z [2236/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p4c-minmax-neon.c.o 2025-07-24T03:53:09.5854890Z [2237/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon-acc2.c.o 2025-07-24T03:53:09.5947310Z [2238/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon.c.o 2025-07-24T03:53:09.5954240Z [2239/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.6062310Z [2240/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-conv-hwc/gen/f32-conv-hwc-3x3s2p1c3x8-neon-2x2.c.o 2025-07-24T03:53:09.6073710Z [2241/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p16c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.6104250Z [2242/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon-acc2.c.o 2025-07-24T03:53:09.6153530Z [2243/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l4c4s4r-minmax-neon.c.o 2025-07-24T03:53:09.6314410Z [2244/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon-acc2.c.o 2025-07-24T03:53:09.7012130Z [2245/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neon.c.o 2025-07-24T03:53:09.7214850Z [2246/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon-acc2.c.o 2025-07-24T03:53:09.7315710Z [2247/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l4c4s4r-minmax-neon.c.o 2025-07-24T03:53:09.7333040Z [2248/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-gemminc/gen/f32-gemminc-8x8s4-minmax-neon.c.o 2025-07-24T03:53:09.7439130Z [2249/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l8c4s4r-minmax-neon.c.o 2025-07-24T03:53:09.7546660Z [2250/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l8c4s4r-minmax-neon.c.o 2025-07-24T03:53:09.7552180Z [2251/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon.c.o 2025-07-24T03:53:09.7554020Z [2252/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.7591440Z [2253/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.8037410Z [2254/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p4c-minmax-neon.c.o 2025-07-24T03:53:09.8462760Z [2255/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.8495570Z [2256/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x4-scalar.c.o 2025-07-24T03:53:09.8497490Z [2257/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-9p16c-minmax-neon.c.o 2025-07-24T03:53:09.8605170Z [2258/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x1-scalar.c.o 2025-07-24T03:53:09.8634820Z [2259/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon-acc2.c.o 2025-07-24T03:53:09.8725660Z [2260/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x2-scalar.c.o 2025-07-24T03:53:09.8756100Z [2261/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon.c.o 2025-07-24T03:53:09.8784760Z [2262/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p4c-minmax-neon.c.o 2025-07-24T03:53:09.9005920Z [2263/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-2x-scalar.c.o 2025-07-24T03:53:09.9352650Z [2264/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-4x4-scalar.c.o 2025-07-24T03:53:09.9620720Z [2265/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-int.c.o 2025-07-24T03:53:09.9622840Z [2266/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c1s1r-gemm-scalar-float.c.o 2025-07-24T03:53:09.9631510Z [2267/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-int.c.o 2025-07-24T03:53:09.9742440Z [2268/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-2c2s1r-gemm-scalar-float.c.o 2025-07-24T03:53:09.9787970Z [2269/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-int.c.o 2025-07-24T03:53:09.9822330Z [2270/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-int.c.o 2025-07-24T03:53:09.9974570Z [2271/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c1s1r-gemm-scalar-float.c.o 2025-07-24T03:53:10.0133150Z [2272/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-int-u4.c.o 2025-07-24T03:53:10.0182430Z [2273/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packb/gen/x32-packb-4c4s1r-gemm-scalar-float.c.o 2025-07-24T03:53:10.0313530Z [2274/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x3-gemm-goi-scalar-float-u4.c.o 2025-07-24T03:53:10.0572370Z [2275/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-int-u4.c.o 2025-07-24T03:53:10.0676900Z [2276/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x3-gemm-goi-scalar-int-u4.c.o 2025-07-24T03:53:10.0716550Z [2277/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x4-gemm-gio-scalar.c.o 2025-07-24T03:53:10.0783910Z [2278/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-gio-scalar.c.o 2025-07-24T03:53:10.0899440Z [2279/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-scalar-int-u4.c.o 2025-07-24T03:53:10.0945650Z [2280/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-gio-scalar.c.o 2025-07-24T03:53:10.1130800Z [2281/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-scalar-float-u4.c.o 2025-07-24T03:53:10.1134560Z [2282/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-scalar-float-u4.c.o 2025-07-24T03:53:10.1192940Z [2283/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x16-gemm-goi-scalar-int-u4.c.o 2025-07-24T03:53:10.1347470Z [2284/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packw/gen/x32-packw-x32-gemm-gio-scalar.c.o 2025-07-24T03:53:10.1505820Z [2285/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-3x-scalar.c.o 2025-07-24T03:53:10.1643150Z [2286/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-float.c.o 2025-07-24T03:53:10.1770750Z [2287/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-packx/x32-packx-4x-scalar.c.o 2025-07-24T03:53:10.1862840Z [2288/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x2-scalar-int.c.o 2025-07-24T03:53:10.1972380Z [2289/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-float.c.o 2025-07-24T03:53:10.2140100Z [2290/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-float.c.o 2025-07-24T03:53:10.2246400Z [2291/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-float.c.o 2025-07-24T03:53:10.2248930Z [2292/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x2-scalar-int.c.o 2025-07-24T03:53:10.2310420Z [2293/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-1x4-scalar-int.c.o 2025-07-24T03:53:10.2478940Z [2294/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-float.c.o 2025-07-24T03:53:10.2543760Z [2295/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-2x1-scalar-int.c.o 2025-07-24T03:53:10.2624460Z [2296/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-float.c.o 2025-07-24T03:53:10.2771590Z [2297/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-float.c.o 2025-07-24T03:53:10.2815120Z [2298/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x2-scalar-int.c.o 2025-07-24T03:53:10.3062230Z [2299/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-float.c.o 2025-07-24T03:53:10.3269170Z [2300/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-int.c.o 2025-07-24T03:53:10.3310950Z [2301/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x4-scalar-int.c.o 2025-07-24T03:53:10.3391400Z [2302/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-transposec/gen/x32-transposec-4x1-scalar-int.c.o 2025-07-24T03:53:10.3406200Z [2303/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c1s1r-gemm-scalar-float.c.o 2025-07-24T03:53:10.3504060Z [2304/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-int.c.o 2025-07-24T03:53:10.3576250Z [2305/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-float.c.o 2025-07-24T03:53:10.3738690Z [2306/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-2c2s1r-gemm-scalar-float.c.o 2025-07-24T03:53:10.3761500Z [2307/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c1s1r-gemm-scalar-int.c.o 2025-07-24T03:53:10.3778040Z [2308/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-float.c.o 2025-07-24T03:53:10.4022750Z [2309/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x32-zerob/gen/x32-zerob-4c4s1r-gemm-scalar-int.c.o 2025-07-24T03:53:10.4334980Z [2310/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x64-transposec/gen/x64-transposec-1x2-scalar-float.c.o 2025-07-24T03:53:10.4489600Z [2311/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u2.c.o 2025-07-24T03:53:10.4527690Z [2312/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u2.c.o 2025-07-24T03:53:10.4600880Z [2313/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u2.c.o 2025-07-24T03:53:10.4603170Z [2314/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-igemm/gen/qu8-igemm-4x4-minmax-rndnu-scalar.c.o 2025-07-24T03:53:10.4770750Z [2315/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u2.c.o 2025-07-24T03:53:10.4771760Z [2316/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u1.c.o 2025-07-24T03:53:10.4872110Z [2317/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u1.c.o 2025-07-24T03:53:10.5056650Z [2318/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u2.c.o 2025-07-24T03:53:10.5141290Z [2319/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u1.c.o 2025-07-24T03:53:10.5354740Z [2320/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u2.c.o 2025-07-24T03:53:10.5580890Z [2321/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u2.c.o 2025-07-24T03:53:10.5597400Z [2322/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u1.c.o 2025-07-24T03:53:10.5620200Z [2323/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u2.c.o 2025-07-24T03:53:10.5809110Z [2324/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u1.c.o 2025-07-24T03:53:10.5809960Z [2325/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c4.c.o 2025-07-24T03:53:10.5921540Z [2326/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u2.c.o 2025-07-24T03:53:10.5931910Z [2327/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c2.c.o 2025-07-24T03:53:10.6119280Z [2328/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c2.c.o 2025-07-24T03:53:10.6227160Z [2329/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u1.c.o 2025-07-24T03:53:10.6402220Z [2330/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c4.c.o 2025-07-24T03:53:10.6605060Z [2331/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u16.c.o 2025-07-24T03:53:10.6615830Z [2332/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-lut/gen/x8-lut-scalar-u8.c.o 2025-07-24T03:53:10.6644550Z [2333/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u2.c.o 2025-07-24T03:53:10.6933520Z [2334/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u4.c.o 2025-07-24T03:53:10.7026560Z [2335/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x2-gemm-goi-scalar-u4.c.o 2025-07-24T03:53:10.7238130Z [2336/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x8c8-gemm-gio-scalar.c.o 2025-07-24T03:53:10.7241960Z [2337/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u4.c.o 2025-07-24T03:53:10.7243400Z [2338/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u4.c.o 2025-07-24T03:53:10.7244220Z [2339/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u4.c.o 2025-07-24T03:53:10.7462620Z [2340/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x2-scalar-int.c.o 2025-07-24T03:53:10.7537140Z [2341/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x2-scalar-int.c.o 2025-07-24T03:53:10.7588150Z [2342/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-2x1-scalar-int.c.o 2025-07-24T03:53:10.7806250Z [2343/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-1x4-scalar-int.c.o 2025-07-24T03:53:10.8144390Z [2344/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x1-scalar-int.c.o 2025-07-24T03:53:10.8161890Z [2345/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x2-scalar-int.c.o 2025-07-24T03:53:10.8227950Z [2346/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x32-gemm-goi-scalar-int-u4.c.o 2025-07-24T03:53:10.8337690Z [2347/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-scalar-int-u4.c.o 2025-07-24T03:53:10.8385950Z [2348/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x8-transposec/gen/x8-transposec-4x4-scalar-int.c.o 2025-07-24T03:53:10.8435580Z [2349/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-scalar-int-u4.c.o 2025-07-24T03:53:10.8580340Z [2350/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x2-scalar-int.c.o 2025-07-24T03:53:10.8607940Z [2351/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x4-scalar-int.c.o 2025-07-24T03:53:10.8711070Z [2352/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-2x1-scalar-int.c.o 2025-07-24T03:53:10.8775890Z [2353/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-1x2-scalar-int.c.o 2025-07-24T03:53:10.9158690Z [2354/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x2-scalar-int.c.o 2025-07-24T03:53:10.9326450Z [2355/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x4-scalar-int.c.o 2025-07-24T03:53:10.9345460Z [2356/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-1x4-scalar.c.o 2025-07-24T03:53:10.9355820Z [2357/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x24-transposec/gen/x24-transposec-2x1-scalar.c.o 2025-07-24T03:53:10.9503970Z [2358/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/x16-transposec/gen/x16-transposec-4x1-scalar-int.c.o 2025-07-24T03:53:10.9951530Z [2359/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:11.0004130Z [2360/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-25p16c-minmax-neon-acc2.c.o 2025-07-24T03:53:11.0207000Z [2361/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:11.0251830Z [2362/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:11.0353330Z [2363/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.0536020Z [2364/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:11.0678760Z [2365/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p8c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:11.0745130Z [2366/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.0755550Z [2367/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-24T03:53:11.0957820Z [2368/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-24T03:53:11.1203400Z [2369/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:11.1485660Z [2370/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.1553570Z [2371/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:11.1567400Z [2372/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.1577830Z [2373/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-9p32c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:11.2118080Z [2374/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.2142230Z [2375/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-24T03:53:11.2179980Z [2376/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:11.2192100Z [2377/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-24T03:53:11.2355780Z [2378/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:11.2869510Z [2379/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:11.2992110Z [2380/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u8.c.o 2025-07-24T03:53:11.3070670Z [2381/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.3188200Z [2382/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-25p32c-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:11.3497020Z [2383/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u24.c.o 2025-07-24T03:53:11.3595630Z [2384/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.3664710Z [2385/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u16.c.o 2025-07-24T03:53:11.3698490Z [2386/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.3701210Z [2387/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.3941920Z [2388/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.4008590Z [2389/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-4p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.4310780Z [2390/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.4359100Z [2391/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.4686430Z [2392/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mla8-ld128.c.o 2025-07-24T03:53:11.4938460Z [2393/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul8-ld128.c.o 2025-07-24T03:53:11.5070380Z [2394/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.5117510Z [2395/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.5177640Z [2396/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.5287520Z [2397/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.5412830Z [2398/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.5549900Z [2399/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.5696830Z [2400/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mla8-ld128.c.o 2025-07-24T03:53:11.5786400Z [2401/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.5894130Z [2402/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.6234640Z [2403/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul8-ld128.c.o 2025-07-24T03:53:11.6376590Z [2404/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.6618860Z [2405/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.6756550Z [2406/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.6874320Z [2407/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.6880690Z [2408/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.6943360Z [2409/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.7486550Z [2410/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul8-ld128.c.o 2025-07-24T03:53:11.7561910Z [2411/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mla8-ld128.c.o 2025-07-24T03:53:11.7581140Z [2412/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.7763450Z [2413/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.7805040Z [2414/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-8f8m9l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.7932770Z [2415/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.8051570Z [2416/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.8061750Z [2417/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:11.8449580Z [2418/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-07-24T03:53:11.8536250Z [2419/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.9010970Z [2420/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mul8-ld128.c.o 2025-07-24T03:53:11.9130950Z [2421/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.9156570Z [2422/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.9182400Z [2423/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.9332580Z [2424/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mul8-ld64.c.o 2025-07-24T03:53:11.9366930Z [2425/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p32c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:11.9399060Z [2426/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-07-24T03:53:11.9597170Z [2427/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:12.0078180Z [2428/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mul8-ld128.c.o 2025-07-24T03:53:12.0174580Z [2429/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:12.0357690Z [2430/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.0452510Z [2431/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p32c-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:12.0591790Z [2432/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-07-24T03:53:12.0768600Z [2433/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-24T03:53:12.0904180Z [2434/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-07-24T03:53:12.0933340Z [2435/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.1044450Z [2436/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-24T03:53:12.1170250Z [2437/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-07-24T03:53:12.1715160Z [2438/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-24T03:53:12.1785930Z [2439/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-24T03:53:12.1881280Z [2440/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4s2-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:12.1905320Z [2441/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:12.2041480Z [2442/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.2088390Z [2443/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.2446270Z [2444/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.2536520Z [2445/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.2792190Z [2446/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-07-24T03:53:12.2848010Z [2447/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-24T03:53:12.3105500Z [2448/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-24T03:53:12.3260240Z [2449/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-07-24T03:53:12.3289750Z [2450/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-24T03:53:12.3510930Z [2451/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-07-24T03:53:12.3553000Z [2452/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-24T03:53:12.3981340Z [2453/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c4s2-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:12.4005310Z [2454/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:12.4062000Z [2455/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.4164830Z [2456/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.4396900Z [2457/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.4802730Z [2458/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.4852320Z [2459/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.5003470Z [2460/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.5118450Z [2461/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.5126740Z [2462/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.5281440Z [2463/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.5560150Z [2464/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.5868790Z [2465/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.5971910Z [2466/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.5990760Z [2467/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.6159210Z [2468/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.6387880Z [2469/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.6457840Z [2470/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-6x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.6636210Z [2471/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-24T03:53:12.6651360Z [2472/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-24T03:53:12.7001330Z [2473/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-07-24T03:53:12.7284320Z [2474/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-07-24T03:53:12.7335670Z [2475/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-07-24T03:53:12.7381930Z [2476/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-24T03:53:12.7614210Z [2477/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-24T03:53:12.7715470Z [2478/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4s2-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:12.7784080Z [2479/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.8108090Z [2480/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.8210620Z [2481/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.8267530Z [2482/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:12.8478250Z [2483/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:12.8714090Z [2484/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-dup.c.o 2025-07-24T03:53:12.8732680Z [2485/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-24T03:53:12.8767840Z [2486/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-24T03:53:12.9114340Z [2487/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2-minmax-fp32-neon-mlal-ld4r.c.o 2025-07-24T03:53:12.9188140Z [2488/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neon-mlal-dup.c.o 2025-07-24T03:53:12.9381680Z [2489/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:12.9732940Z [2490/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neon-mlal-ld2r.c.o 2025-07-24T03:53:12.9843480Z [2491/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4s2-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:12.9951260Z [2492/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:12.9953910Z [2493/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c4-minmax-fp32-neon-mlal-ld1r.c.o 2025-07-24T03:53:13.0094770Z [2494/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x16-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:13.0244750Z [2495/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neon-mlal-lane.c.o 2025-07-24T03:53:13.0410720Z [2496/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x8-minmax-fp32-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.0444080Z [2497/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u8.c.o 2025-07-24T03:53:13.0459400Z [2498/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u12.c.o 2025-07-24T03:53:13.0653690Z [2499/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u16.c.o 2025-07-24T03:53:13.1163030Z [2500/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u4.c.o 2025-07-24T03:53:13.1181890Z [2501/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u4.c.o 2025-07-24T03:53:13.1231420Z [2502/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vhswish/gen/f32-vhswish-neon-u8.c.o 2025-07-24T03:53:13.1421050Z [2503/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c8-minmax-neon-2x.c.o 2025-07-24T03:53:13.1424730Z [2504/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u8.c.o 2025-07-24T03:53:13.1548250Z [2505/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrelu/gen/f32-vrelu-neon-u4.c.o 2025-07-24T03:53:13.1625790Z [2506/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndne-neon-u4.c.o 2025-07-24T03:53:13.1759710Z [2507/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndu-neon-u4.c.o 2025-07-24T03:53:13.2184410Z [2508/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndz-neon-u4.c.o 2025-07-24T03:53:13.2410170Z [2509/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrnd/gen/f32-vrndd-neon-u4.c.o 2025-07-24T03:53:13.2642110Z [2510/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u4.c.o 2025-07-24T03:53:13.2683410Z [2511/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u4.c.o 2025-07-24T03:53:13.2694850Z [2512/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u16.c.o 2025-07-24T03:53:13.2876310Z [2513/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u8.c.o 2025-07-24T03:53:13.3010810Z [2514/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u12.c.o 2025-07-24T03:53:13.3013000Z [2515/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u12.c.o 2025-07-24T03:53:13.3015170Z [2516/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u4.c.o 2025-07-24T03:53:13.3495670Z [2517/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u16.c.o 2025-07-24T03:53:13.3535830Z [2518/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u4.c.o 2025-07-24T03:53:13.3708880Z [2519/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut2048-p1-nr2recps-u8.c.o 2025-07-24T03:53:13.3801420Z [2520/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u8.c.o 2025-07-24T03:53:13.4056630Z [2521/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u12.c.o 2025-07-24T03:53:13.4124440Z [2522/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-p5-nr2recps-u16.c.o 2025-07-24T03:53:13.4138080Z [2523/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.4374940Z [2524/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.4588500Z [2525/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-nr.c.o 2025-07-24T03:53:13.4860160Z [2526/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.4880160Z [2527/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.5079970Z [2528/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.5266140Z [2529/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.5412770Z [2530/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-3x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.5475130Z [2531/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.5556120Z [2532/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.5743500Z [2533/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.5747830Z [2534/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.6321050Z [2535/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.6396730Z [2536/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.6524670Z [2537/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-3x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.6587150Z [2538/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.6742510Z [2539/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.7057670Z [2540/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.7112200Z [2541/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.7160180Z [2542/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.7311570Z [2543/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.7312450Z [2544/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.8000310Z [2545/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.8205370Z [2546/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.8208570Z [2547/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.8216180Z [2548/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.8395390Z [2549/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.8500420Z [2550/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.8627780Z [2551/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.8645640Z [2552/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.8834940Z [2553/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.8881540Z [2554/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.9647730Z [2555/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.9859460Z [2556/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.9887550Z [2557/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.9919090Z [2558/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:13.9923370Z [2559/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.9951900Z [2560/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:13.9971640Z [2561/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.0157420Z [2562/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.0300110Z [2563/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:14.1067140Z [2564/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:14.1070920Z [2565/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.1155190Z [2566/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.1211970Z [2567/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:14.1225680Z [2568/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.1255120Z [2569/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:14.1423200Z [2570/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.1427460Z [2571/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-3x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:14.1431030Z [2572/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.2048840Z [2573/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:14.2434210Z [2574/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:14.2436280Z [2575/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.2575100Z [2576/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x8-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.2631560Z [2577/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x16-minmax-neon-mlal-lane-prfm.c.o 2025-07-24T03:53:14.2787500Z [2578/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x8-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:14.2788520Z [2579/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:14.2972360Z [2580/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:14.3143270Z [2581/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-6x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:14.3402720Z [2582/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:14.3509380Z [2583/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:14.3686940Z [2584/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:14.3871810Z [2585/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:14.3994850Z [2586/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:14.3997780Z [2587/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:14.4187590Z [2588/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-24T03:53:14.4348410Z [2589/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-24T03:53:14.4656390Z [2590/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:14.4660350Z [2591/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-5f5m5l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:14.4860760Z [2592/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:14.4923170Z [2593/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:14.5069330Z [2594/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:14.5176610Z [2595/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:14.5316990Z [2596/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:14.5521980Z [2597/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:14.5805080Z [2598/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-24T03:53:14.5816170Z [2599/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:14.5999320Z [2600/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:14.6073410Z [2601/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-24T03:53:14.6171840Z [2602/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:14.6266190Z [2603/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-6f6m7l32c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:14.6295640Z [2604/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:14.6370170Z [2605/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:14.7158790Z [2606/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:14.7252270Z [2607/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-fp32-neon-mul16.c.o 2025-07-24T03:53:14.7340720Z [2608/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mla8-ld128.c.o 2025-07-24T03:53:14.7367580Z [2609/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:14.7442740Z [2610/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u4.c.o 2025-07-24T03:53:14.7448960Z [2611/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:14.7586320Z [2612/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l8c8s8r-minmax-rndnu-neon-mul8-ld64.c.o 2025-07-24T03:53:14.7589910Z [2613/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc2.c.o 2025-07-24T03:53:14.7598020Z [2614/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u8-acc2.c.o 2025-07-24T03:53:14.7659600Z [2615/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul8-ld128.c.o 2025-07-24T03:53:14.8355470Z [2616/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u12-acc3.c.o 2025-07-24T03:53:14.8674270Z [2617/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u4.c.o 2025-07-24T03:53:14.8762060Z [2618/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u4.c.o 2025-07-24T03:53:14.8768520Z [2619/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u8-acc2.c.o 2025-07-24T03:53:14.8775120Z [2620/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc2.c.o 2025-07-24T03:53:14.8924360Z [2621/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc2.c.o 2025-07-24T03:53:14.8931750Z [2622/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u8-acc2.c.o 2025-07-24T03:53:14.8983180Z [2623/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u12-acc3.c.o 2025-07-24T03:53:14.9091570Z [2624/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmin-neon-u16-acc4.c.o 2025-07-24T03:53:14.9122220Z [2625/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rminmax-neon-u12-acc3.c.o 2025-07-24T03:53:14.9874710Z [2626/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-pipelined.c.o 2025-07-24T03:53:14.9968550Z [2627/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc2.c.o 2025-07-24T03:53:15.0009320Z [2628/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon.c.o 2025-07-24T03:53:15.0015590Z [2629/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-pipelined.c.o 2025-07-24T03:53:15.0079650Z [2630/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-4x1-minmax-neon-x2.c.o 2025-07-24T03:53:15.0165370Z [2631/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon-x2.c.o 2025-07-24T03:53:15.0536770Z [2632/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-12x1-minmax-neon.c.o 2025-07-24T03:53:15.0583290Z [2633/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-x2.c.o 2025-07-24T03:53:15.0830200Z [2634/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-neon.c.o 2025-07-24T03:53:15.0853110Z [2635/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon-pipelined.c.o 2025-07-24T03:53:15.1013220Z [2636/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-16x1-minmax-neon.c.o 2025-07-24T03:53:15.1035530Z [2637/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vadd-neon-u4.c.o 2025-07-24T03:53:15.1172120Z [2638/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-pipelined.c.o 2025-07-24T03:53:15.1178860Z [2639/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon-x2.c.o 2025-07-24T03:53:15.1376610Z [2640/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmax-neon-u4.c.o 2025-07-24T03:53:15.1965600Z [2641/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vaddc-neon-u4.c.o 2025-07-24T03:53:15.1966450Z [2642/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u4.c.o 2025-07-24T03:53:15.2186000Z [2643/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmin-neon-u4.c.o 2025-07-24T03:53:15.2225960Z [2644/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vminc-neon-u4.c.o 2025-07-24T03:53:15.2228010Z [2645/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vprelu-neon-u4.c.o 2025-07-24T03:53:15.2243650Z [2646/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmulc-neon-u4.c.o 2025-07-24T03:53:15.2400640Z [2647/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vmul-neon-u4.c.o 2025-07-24T03:53:15.2556380Z [2648/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u4.c.o 2025-07-24T03:53:15.2810750Z [2649/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u4.c.o 2025-07-24T03:53:15.2877510Z [2650/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u4.c.o 2025-07-24T03:53:15.3071010Z [2651/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u4.c.o 2025-07-24T03:53:15.3157840Z [2652/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsubc-neon-u4.c.o 2025-07-24T03:53:15.3593740Z [2653/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u4.c.o 2025-07-24T03:53:15.3635260Z [2654/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u4.c.o 2025-07-24T03:53:15.3748500Z [2655/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vclamp/gen/f32-vclamp-neon-u8.c.o 2025-07-24T03:53:15.3861500Z [2656/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsub-neon-u4.c.o 2025-07-24T03:53:15.3880480Z [2657/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u4.c.o 2025-07-24T03:53:15.3922860Z [2658/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u12.c.o 2025-07-24T03:53:15.4042670Z [2659/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-vcmul/gen/f32-vcmul-neon-u16.c.o 2025-07-24T03:53:15.4055990Z [2660/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/qs8-dwconv/gen/qs8-dwconv-8f8m9l16c8s8r-minmax-rndnu-neon-mul16.c.o 2025-07-24T03:53:15.4257660Z [2661/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u4.c.o 2025-07-24T03:53:15.4381090Z [2662/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u12.c.o 2025-07-24T03:53:15.5017650Z [2663/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p4.c.o 2025-07-24T03:53:15.5027190Z [2664/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p16.c.o 2025-07-24T03:53:15.5127720Z [2665/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u16.c.o 2025-07-24T03:53:15.5196140Z [2666/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c4.c.o 2025-07-24T03:53:15.5349210Z [2667/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neon.c.o 2025-07-24T03:53:15.5371800Z [2668/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:15.5441910Z [2669/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:15.5615300Z [2670/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:15.6037540Z [2671/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-2x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:15.6316630Z [2672/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-3x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:15.6371890Z [2673/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:15.6511670Z [2674/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-dup-ld128.c.o 2025-07-24T03:53:15.6522300Z [2675/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:15.6600700Z [2676/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neon.c.o 2025-07-24T03:53:15.6800590Z [2677/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:15.6946440Z [2678/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-5x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:15.6959070Z [2679/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x2-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:15.6959890Z [2680/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-4x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:15.7423820Z [2681/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:15.7708510Z [2682/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-dup-ld128.c.o 2025-07-24T03:53:15.7828790Z [2683/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:15.7949210Z [2684/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:15.7951500Z [2685/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neon.c.o 2025-07-24T03:53:15.7956780Z [2686/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-6x16-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:15.8106870Z [2687/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon-prfm.c.o 2025-07-24T03:53:15.8159920Z [2688/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon.c.o 2025-07-24T03:53:15.8319470Z [2689/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x8-minmax-neon-prfm.c.o 2025-07-24T03:53:15.8357470Z [2690/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-igemm/gen/f32-igemm-8x8s4-minmax-neon.c.o 2025-07-24T03:53:15.8911320Z [2691/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-4x16-minmax-neon.c.o 2025-07-24T03:53:15.9215140Z [2692/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:15.9298510Z [2693/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon-prfm.c.o 2025-07-24T03:53:15.9345290Z [2694/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-ppmm/gen/f32-ppmm-8x8-minmax-neon.c.o 2025-07-24T03:53:15.9402120Z [2695/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:15.9453680Z [2696/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:15.9656920Z [2697/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:15.9731360Z [2698/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:15.9871880Z [2699/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:16.0067540Z [2700/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:16.0553330Z [2701/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-5x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:16.0665420Z [2702/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:16.0771810Z [2703/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:16.0773370Z [2704/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-neon-dup-ld64.c.o 2025-07-24T03:53:16.0858190Z [2705/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x2-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:16.0861420Z [2706/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u16-acc2.c.o 2025-07-24T03:53:16.0921090Z [2707/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u16.c.o 2025-07-24T03:53:16.1151320Z [2708/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u24.c.o 2025-07-24T03:53:16.1343750Z [2709/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u8.c.o 2025-07-24T03:53:16.1409970Z [2710/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u8.c.o 2025-07-24T03:53:16.1852450Z [2711/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u8-acc2.c.o 2025-07-24T03:53:16.1877830Z [2712/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u24.c.o 2025-07-24T03:53:16.2026950Z [2713/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u16.c.o 2025-07-24T03:53:16.2130470Z [2714/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u4.c.o 2025-07-24T03:53:16.2230600Z [2715/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-lut64-p2-u16-acc4.c.o 2025-07-24T03:53:16.2240490Z [2716/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u8-acc2.c.o 2025-07-24T03:53:16.2252480Z [2717/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u4.c.o 2025-07-24T03:53:16.2521050Z [2718/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc2.c.o 2025-07-24T03:53:16.2865030Z [2719/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neon-rr2-p5-u16-acc4.c.o 2025-07-24T03:53:16.3134390Z [2720/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u12-acc3.c.o 2025-07-24T03:53:16.3143100Z [2721/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c64.c.o 2025-07-24T03:53:16.3197080Z [2722/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u4.c.o 2025-07-24T03:53:16.3336960Z [2723/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c32.c.o 2025-07-24T03:53:16.3341060Z [2724/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-rminmax/gen/f32-rmax-neon-u8-acc2.c.o 2025-07-24T03:53:16.3444360Z [2725/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-velu/gen/f32-velu-neon-rr2-p6-u4.c.o 2025-07-24T03:53:16.5678830Z [2726/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_oneof.cc.o 2025-07-24T03:53:16.5688230Z [2727/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_map_field.cc.o 2025-07-24T03:53:16.5727330Z [2728/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_file.cc.o 2025-07-24T03:53:16.5746020Z [2729/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_extension.cc.o 2025-07-24T03:53:16.5849480Z [2730/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_field.cc.o 2025-07-24T03:53:16.5851950Z [2731/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message.cc.o 2025-07-24T03:53:16.5936200Z [2732/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_generator.cc.o 2025-07-24T03:53:16.6255580Z [2733/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_helpers.cc.o 2025-07-24T03:53:16.7689310Z [2734/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_primitive_field.cc.o 2025-07-24T03:53:16.7837630Z [2735/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_message_field.cc.o 2025-07-24T03:53:16.8370740Z [2736/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/python/python_generator.cc.o 2025-07-24T03:53:16.8462310Z [2737/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/subprocess.cc.o 2025-07-24T03:53:16.8476660Z [2738/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/mach/topology.c.o 2025-07-24T03:53:16.8569070Z [2739/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.pb.cc.o 2025-07-24T03:53:16.8862830Z [2740/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/php/php_generator.cc.o 2025-07-24T03:53:16.8870130Z [2741/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/plugin.cc.o 2025-07-24T03:53:16.9035830Z [2742/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/ruby/ruby_generator.cc.o 2025-07-24T03:53:16.9038850Z [2743/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/api.c.o 2025-07-24T03:53:16.9040860Z [2744/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/mach/init.c.o 2025-07-24T03:53:16.9199830Z [2745/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/zip_writer.cc.o 2025-07-24T03:53:16.9201070Z [2746/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/uarch.c.o 2025-07-24T03:53:16.9490380Z [2747/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/log.c.o 2025-07-24T03:53:16.9670800Z [2748/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/arm/cache.c.o 2025-07-24T03:53:16.9673620Z [2749/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/init.c.o 2025-07-24T03:53:16.9983840Z [2750/5147] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/legacy-api.c.o 2025-07-24T03:53:17.0115450Z [2751/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/api.c.o 2025-07-24T03:53:17.0351620Z [2752/5147] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/memory.c.o 2025-07-24T03:53:17.0356230Z [2753/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/cache.c.o 2025-07-24T03:53:17.0489400Z [2754/5147] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/gcd.c.o 2025-07-24T03:53:17.0536060Z [2755/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo.dir/src/cache.c.o 2025-07-24T03:53:17.0550400Z [2756/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/log.c.o 2025-07-24T03:53:17.0665540Z [2757/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/init.c.o 2025-07-24T03:53:17.0857720Z [2758/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/uarch.c.o 2025-07-24T03:53:17.1066360Z [2759/5147] Building C object confu-deps/pthreadpool/CMakeFiles/pthreadpool.dir/src/portable-api.c.o 2025-07-24T03:53:17.1078620Z [2760/5147] Linking C static library lib/libcpuinfo.a 2025-07-24T03:53:17.1105310Z [2761/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/cache.c.o 2025-07-24T03:53:17.1405630Z [2762/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/mach/topology.c.o 2025-07-24T03:53:17.1413590Z [2763/5147] Building C object confu-deps/cpuinfo/CMakeFiles/cpuinfo_internals.dir/src/arm/mach/init.c.o 2025-07-24T03:53:17.1496390Z [2764/5147] Linking C static library lib/libpthreadpool.a 2025-07-24T03:53:17.1539810Z [2765/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/add.c.o 2025-07-24T03:53:17.1549070Z [2766/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/protoc.dir/__/src/google/protobuf/compiler/main.cc.o 2025-07-24T03:53:17.1788780Z [2767/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/channel-shuffle.c.o 2025-07-24T03:53:17.1884840Z [2768/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/init.c.o 2025-07-24T03:53:17.1937140Z [2769/5147] Linking C static library lib/libcpuinfo_internals.a 2025-07-24T03:53:17.2421940Z [2770/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/average-pooling.c.o 2025-07-24T03:53:17.2438910Z [2771/5147] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-aarch64-neon.S.o 2025-07-24T03:53:17.2645040Z [2772/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/clamp.c.o 2025-07-24T03:53:17.2766800Z [2773/5147] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-prepack.cc.o 2025-07-24T03:53:17.2847820Z [2774/5147] Linking CXX shared library lib/libc10.dylib 2025-07-24T03:53:17.2911590Z [2775/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/convolution.c.o 2025-07-24T03:53:17.4628550Z [2776/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/json_util.cc.o 2025-07-24T03:53:17.4652070Z [2777/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format.cc.o 2025-07-24T03:53:17.4851310Z [2778/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_helpers.cc.o 2025-07-24T03:53:17.4903610Z [2779/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/time_util.cc.o 2025-07-24T03:53:17.5125030Z [2780/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_generator.cc.o 2025-07-24T03:53:17.5249360Z [2781/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/message_differencer.cc.o 2025-07-24T03:53:17.5251790Z [2782/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wrappers.pb.cc.o 2025-07-24T03:53:17.5256220Z [2783/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/type_resolver_util.cc.o 2025-07-24T03:53:17.6675380Z [2784/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_reflection_class.cc.o 2025-07-24T03:53:17.6782050Z [2785/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message.cc.o 2025-07-24T03:53:17.7639630Z [2786/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_message_field.cc.o 2025-07-24T03:53:17.7665190Z [2787/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum_field.cc.o 2025-07-24T03:53:17.7795810Z [2788/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_primitive_field.cc.o 2025-07-24T03:53:17.7914560Z [2789/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_service.cc.o 2025-07-24T03:53:17.7956540Z [2790/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_enum.cc.o 2025-07-24T03:53:17.8034100Z [2791/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_string_field.cc.o 2025-07-24T03:53:17.8263200Z [2792/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_field_base.cc.o 2025-07-24T03:53:17.8302470Z [2793/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_map_field.cc.o 2025-07-24T03:53:17.9279900Z [2794/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_doc_comment.cc.o 2025-07-24T03:53:17.9991720Z [2795/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message_field.cc.o 2025-07-24T03:53:18.0652710Z [2796/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_generator.cc.o 2025-07-24T03:53:18.0827300Z [2797/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_map_field.cc.o 2025-07-24T03:53:18.0935820Z [2798/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_primitive_field.cc.o 2025-07-24T03:53:18.0954530Z [2799/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_file.cc.o 2025-07-24T03:53:18.0966570Z [2800/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_padding_optimizer.cc.o 2025-07-24T03:53:18.1147220Z [2801/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_helpers.cc.o 2025-07-24T03:53:18.1307890Z [2802/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_message.cc.o 2025-07-24T03:53:18.1381750Z [2803/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_field.cc.o 2025-07-24T03:53:18.3162120Z [2804/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum_field.cc.o 2025-07-24T03:53:18.3180860Z [2805/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/code_generator.cc.o 2025-07-24T03:53:18.3362630Z [2806/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_enum.cc.o 2025-07-24T03:53:18.3385100Z [2807/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/cpp/cpp_extension.cc.o 2025-07-24T03:53:18.3497780Z [2808/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_enum_field.cc.o 2025-07-24T03:53:18.3684250Z [2809/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_message_field.cc.o 2025-07-24T03:53:18.3714180Z [2810/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_repeated_primitive_field.cc.o 2025-07-24T03:53:18.3811570Z [2811/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/command_line_interface.cc.o 2025-07-24T03:53:18.5544830Z [2812/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_wrapper_field.cc.o 2025-07-24T03:53:18.5597980Z [2813/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/csharp/csharp_source_generator_base.cc.o 2025-07-24T03:53:18.5760600Z [2814/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_doc_comment.cc.o 2025-07-24T03:53:18.5784500Z [2815/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_context.cc.o 2025-07-24T03:53:18.5869860Z [2816/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension_lite.cc.o 2025-07-24T03:53:18.5979130Z [2817/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum.cc.o 2025-07-24T03:53:18.6062430Z [2818/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field_lite.cc.o 2025-07-24T03:53:18.6103100Z [2819/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_lite.cc.o 2025-07-24T03:53:18.8090840Z [2820/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_file.cc.o 2025-07-24T03:53:18.8188680Z [2821/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator_factory.cc.o 2025-07-24T03:53:18.8239420Z [2822/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_enum_field.cc.o 2025-07-24T03:53:18.8293090Z [2823/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_field.cc.o 2025-07-24T03:53:18.8301730Z [2824/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_extension.cc.o 2025-07-24T03:53:18.8311020Z [2825/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_generator.cc.o 2025-07-24T03:53:18.8415690Z [2826/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_helpers.cc.o 2025-07-24T03:53:18.8622420Z [2827/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field_lite.cc.o 2025-07-24T03:53:19.0095570Z [2828/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder.cc.o 2025-07-24T03:53:19.0499350Z [2829/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_map_field.cc.o 2025-07-24T03:53:19.0735470Z [2830/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message.cc.o 2025-07-24T03:53:19.0956620Z [2831/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_builder_lite.cc.o 2025-07-24T03:53:19.1039470Z [2832/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field.cc.o 2025-07-24T03:53:19.1247270Z [2833/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_name_resolver.cc.o 2025-07-24T03:53:19.1286910Z [2834/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field.cc.o 2025-07-24T03:53:19.1438750Z [2835/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_field_lite.cc.o 2025-07-24T03:53:19.2205860Z [2836/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/well_known_types_embed.cc.o 2025-07-24T03:53:19.3151680Z [2837/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_message_lite.cc.o 2025-07-24T03:53:19.3336720Z [2838/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/repeated_field.cc.o 2025-07-24T03:53:19.3379380Z [2839/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_primitive_field_lite.cc.o 2025-07-24T03:53:19.3392960Z [2840/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_service.cc.o 2025-07-24T03:53:19.3402350Z [2841/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum.cc.o 2025-07-24T03:53:19.3585700Z [2842/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field_lite.cc.o 2025-07-24T03:53:19.3609330Z [2843/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_shared_code_generator.cc.o 2025-07-24T03:53:19.3726400Z [2844/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/java/java_string_field.cc.o 2025-07-24T03:53:19.5357210Z [2845/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/status.cc.o 2025-07-24T03:53:19.5364050Z [2846/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-07-24T03:53:19.5371130Z [2847/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-07-24T03:53:19.5507660Z [2848/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-07-24T03:53:19.5565460Z [2849/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-07-24T03:53:19.5797170Z [2850/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-07-24T03:53:19.6100810Z [2851/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/common.cc.o 2025-07-24T03:53:19.6234490Z [2852/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-07-24T03:53:19.7138490Z [2853/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/time.cc.o 2025-07-24T03:53:19.7465160Z [2854/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-07-24T03:53:19.7473040Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/src/google/protobuf/stubs/strutil.cc:507:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations] 2025-07-24T03:53:19.7474060Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-07-24T03:53:19.7474270Z ^ 2025-07-24T03:53:19.7474670Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-07-24T03:53:19.7475500Z __deprecated_msg("This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.") 2025-07-24T03:53:19.7476020Z ^ 2025-07-24T03:53:19.7476390Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-07-24T03:53:19.7477150Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-07-24T03:53:19.7477420Z ^ 2025-07-24T03:53:19.7477600Z 1 warning generated. 2025-07-24T03:53:19.7770740Z [2855/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-07-24T03:53:19.8074050Z [2856/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.cc.o 2025-07-24T03:53:19.8194200Z [2857/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/api.pb.cc.o 2025-07-24T03:53:19.8298260Z [2858/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any.pb.cc.o 2025-07-24T03:53:19.8312210Z [2859/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/importer.cc.o 2025-07-24T03:53:19.9060330Z [2860/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.cc.o 2025-07-24T03:53:19.9325580Z [2861/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/compiler/parser.cc.o 2025-07-24T03:53:20.0334610Z [2862/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/duration.pb.cc.o 2025-07-24T03:53:20.0406770Z [2863/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven.cc.o 2025-07-24T03:53:20.0494400Z [2864/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/empty.pb.cc.o 2025-07-24T03:53:20.0593320Z [2865/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set_heavy.cc.o 2025-07-24T03:53:20.0778680Z [2866/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/dynamic_message.cc.o 2025-07-24T03:53:20.1085180Z [2867/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor_database.cc.o 2025-07-24T03:53:20.1210280Z [2868/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/field_mask.pb.cc.o 2025-07-24T03:53:20.1240260Z [2869/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/descriptor.pb.cc.o 2025-07-24T03:53:20.1866550Z [2870/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/gzip_stream.cc.o 2025-07-24T03:53:20.1908300Z [2871/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/printer.cc.o 2025-07-24T03:53:20.2368430Z [2872/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_reflection.cc.o 2025-07-24T03:53:20.2905180Z [2873/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/tokenizer.cc.o 2025-07-24T03:53:20.3081880Z [2874/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/service.cc.o 2025-07-24T03:53:20.3337580Z [2875/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message.cc.o 2025-07-24T03:53:20.3551900Z [2876/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/map_field.cc.o 2025-07-24T03:53:20.3731600Z [2877/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/struct.pb.cc.o 2025-07-24T03:53:20.3931300Z [2878/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/reflection_ops.cc.o 2025-07-24T03:53:20.4248220Z [2879/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/source_context.pb.cc.o 2025-07-24T03:53:20.4357370Z [2880/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/stubs/substitute.cc.o 2025-07-24T03:53:20.5236310Z [2881/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/type.pb.cc.o 2025-07-24T03:53:20.5268420Z [2882/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/text_format.cc.o 2025-07-24T03:53:20.5721760Z [2883/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/unknown_field_set.cc.o 2025-07-24T03:53:20.5803540Z [2884/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/delimited_message_util.cc.o 2025-07-24T03:53:20.5935550Z [2885/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/timestamp.pb.cc.o 2025-07-24T03:53:20.6641480Z [2886/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/field_mask_utility.cc.o 2025-07-24T03:53:20.6740820Z [2887/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_comparator.cc.o 2025-07-24T03:53:20.7168590Z [2888/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/default_value_objectwriter.cc.o 2025-07-24T03:53:20.7502990Z [2889/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/datapiece.cc.o 2025-07-24T03:53:20.7600140Z [2890/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/field_mask_util.cc.o 2025-07-24T03:53:20.7703850Z [2891/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/error_listener.cc.o 2025-07-24T03:53:20.7901420Z [2892/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_objectwriter.cc.o 2025-07-24T03:53:20.8154620Z [2893/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_escaping.cc.o 2025-07-24T03:53:20.8396170Z [2894/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/json_stream_parser.cc.o 2025-07-24T03:53:20.8519280Z [2895/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectsource.cc.o 2025-07-24T03:53:20.9398200Z [2896/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/object_writer.cc.o 2025-07-24T03:53:20.9697060Z [2897/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/protostream_objectwriter.cc.o 2025-07-24T03:53:20.9873770Z [2898/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/proto_writer.cc.o 2025-07-24T03:53:21.0667720Z [2899/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info_test_helper.cc.o 2025-07-24T03:53:21.0698670Z [2900/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/arena.cc.o 2025-07-24T03:53:21.0835560Z [2901/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/type_info.cc.o 2025-07-24T03:53:21.0894970Z [2902/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/any_lite.cc.o 2025-07-24T03:53:21.1035770Z [2903/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/objectivec/objectivec_enum_field.cc.o 2025-07-24T03:53:21.1175280Z [2904/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/util/internal/utility.cc.o 2025-07-24T03:53:21.1511220Z [2905/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotoc.dir/__/src/google/protobuf/compiler/js/js_generator.cc.o 2025-07-24T03:53:21.1856520Z [2906/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-07-24T03:53:21.2795990Z [2907/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-07-24T03:53:21.2805510Z [2908/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/extension_set.cc.o 2025-07-24T03:53:21.2820090Z [2909/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-07-24T03:53:21.2839860Z [2910/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-07-24T03:53:21.2848530Z [2911/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-07-24T03:53:21.3084970Z [2912/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-07-24T03:53:21.3148110Z [2913/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-07-24T03:53:21.3834800Z [2914/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/strtod.cc.o 2025-07-24T03:53:21.4903360Z [2915/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/structurally_valid.cc.o 2025-07-24T03:53:21.4983110Z [2916/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-07-24T03:53:21.5084290Z [2917/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/parse_context.cc.o 2025-07-24T03:53:21.5117380Z [2918/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/bytestream.cc.o 2025-07-24T03:53:21.5140440Z [2919/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-07-24T03:53:21.5206600Z [2920/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/repeated_field.cc.o 2025-07-24T03:53:21.5257600Z [2921/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/common.cc.o 2025-07-24T03:53:21.5403750Z [2922/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/message_lite.cc.o 2025-07-24T03:53:21.6015210Z [2923/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/io_win32.cc.o 2025-07-24T03:53:21.7115730Z [2924/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringpiece.cc.o 2025-07-24T03:53:21.7138610Z [2925/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/statusor.cc.o 2025-07-24T03:53:21.7159670Z [2926/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/status.cc.o 2025-07-24T03:53:21.7310520Z [2927/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/int128.cc.o 2025-07-24T03:53:21.7333290Z [2928/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/strutil.cc.o 2025-07-24T03:53:21.7334620Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/protobuf/src/google/protobuf/stubs/strutil.cc:507:11: warning: 'sprintf' is deprecated: This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead. [-Wdeprecated-declarations] 2025-07-24T03:53:21.7335650Z sprintf(dest + used, (use_hex ? "\\x%02x" : "\\%03o"), 2025-07-24T03:53:21.7336380Z ^ 2025-07-24T03:53:21.7338750Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/stdio.h:180:1: note: 'sprintf' has been explicitly marked deprecated here 2025-07-24T03:53:21.7343270Z __deprecated_msg("This function is provided for compatibility reasons only. Due to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snprintf(3) instead.") 2025-07-24T03:53:21.7353130Z ^ 2025-07-24T03:53:21.7356220Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:218:48: note: expanded from macro '__deprecated_msg' 2025-07-24T03:53:21.7363600Z #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) 2025-07-24T03:53:21.7366970Z ^ 2025-07-24T03:53:21.7372100Z 1 warning generated. 2025-07-24T03:53:21.7383670Z [2929/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/stringprintf.cc.o 2025-07-24T03:53:21.7524670Z [2930/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/stubs/time.cc.o 2025-07-24T03:53:21.8187900Z [2931/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf-lite.dir/__/src/google/protobuf/wire_format_lite.cc.o 2025-07-24T03:53:21.9253800Z [2932/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/implicit_weak_message.cc.o 2025-07-24T03:53:21.9359350Z [2933/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_enum_util.cc.o 2025-07-24T03:53:21.9461090Z [2934/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/strtod.cc.o 2025-07-24T03:53:21.9475630Z [2935/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/arena.cc.o 2025-07-24T03:53:21.9491570Z [2936/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/extension_set.cc.o 2025-07-24T03:53:21.9505800Z [2937/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_util.cc.o 2025-07-24T03:53:21.9651840Z [2938/5147] Linking CXX static library lib/libprotobuf-lite.a 2025-07-24T03:53:21.9699760Z [2939/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/generated_message_table_driven_lite.cc.o 2025-07-24T03:53:21.9858290Z [2940/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/coded_stream.cc.o 2025-07-24T03:53:22.0859140Z [2941/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/any_lite.cc.o 2025-07-24T03:53:22.0956690Z [2942/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vmulcaddc/gen/f16-vmulcaddc-c8-minmax-neonfp16arith-2x.c.o 2025-07-24T03:53:22.1109570Z [2943/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-fp16arith-u2.c.o 2025-07-24T03:53:22.1491880Z [2944/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrsubc-neonfp16arith-u16.c.o 2025-07-24T03:53:22.1739640Z [2945/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream.cc.o 2025-07-24T03:53:22.1844480Z [2946/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl_lite.cc.o 2025-07-24T03:53:22.1924790Z [2947/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/io/zero_copy_stream_impl.cc.o 2025-07-24T03:53:22.2036160Z [2948/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrpreluc-neonfp16arith-u16.c.o 2025-07-24T03:53:22.2163360Z [2949/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/parse_context.cc.o 2025-07-24T03:53:22.2185780Z [2950/5147] Building CXX object third_party/protobuf/cmake/CMakeFiles/libprotobuf.dir/__/src/google/protobuf/message_lite.cc.o 2025-07-24T03:53:22.2305520Z [2951/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsub-neonfp16arith-u16.c.o 2025-07-24T03:53:22.2474750Z [2952/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiffc-neonfp16arith-u16.c.o 2025-07-24T03:53:22.2656310Z [2953/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsqrdiff-neonfp16arith-u16.c.o 2025-07-24T03:53:22.2715670Z [2954/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vsubc-neonfp16arith-u16.c.o 2025-07-24T03:53:22.2910500Z [2955/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vclamp/gen/f16-vclamp-neonfp16arith-u16.c.o 2025-07-24T03:53:22.3172860Z [2956/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vcmul/gen/f16-vcmul-neonfp16arith-u16.c.o 2025-07-24T03:53:22.3230980Z [2957/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-velu/gen/f16-velu-neonfp16arith-rr1-p3-u16.c.o 2025-07-24T03:53:22.3379660Z [2958/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vlrelu/gen/f16-vlrelu-neonfp16arith-u16.c.o 2025-07-24T03:53:22.3399710Z [2959/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vhswish/gen/f16-vhswish-neonfp16arith-u16.c.o 2025-07-24T03:53:22.3610120Z [2960/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndne-neonfp16arith-u16.c.o 2025-07-24T03:53:22.3900350Z [2961/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1recps-u16.c.o 2025-07-24T03:53:22.3932110Z [2962/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndu-neonfp16arith-u16.c.o 2025-07-24T03:53:22.4036680Z [2963/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndd-neonfp16arith-u16.c.o 2025-07-24T03:53:22.4433510Z [2964/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrnd/gen/f16-vrndz-neonfp16arith-u16.c.o 2025-07-24T03:53:22.4474200Z [2965/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-aarch64-neonfp16arith-expm1minus-rr1-p3h2ts-div-u32.c.o 2025-07-24T03:53:22.4560610Z [2966/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-aarch64-neonfp16arith-sqrt-u8.c.o 2025-07-24T03:53:22.4736780Z [2967/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsigmoid/gen/f16-vsigmoid-neonfp16arith-rr2-p2-nr1fma-u32.c.o 2025-07-24T03:53:22.4740830Z [2968/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vrsqrt/gen/f16-vrsqrt-neonfp16arith-rsqrt-u16.c.o 2025-07-24T03:53:22.5026350Z [2969/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vtanh/gen/f16-vtanh-neonfp16arith-expm1minus-rr1-p3h2ts-nr1fma-u32.c.o 2025-07-24T03:53:22.5029910Z [2970/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vabs-neonfp16arith-u16.c.o 2025-07-24T03:53:22.5217690Z [2971/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vneg-neonfp16arith-u16.c.o 2025-07-24T03:53:22.5220640Z [2972/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vsqrt/gen/f16-vsqrt-neonfp16arith-nr1fma1adj-u8.c.o 2025-07-24T03:53:22.5441780Z [2973/5147] Linking CXX static library lib/libprotobuf.a 2025-07-24T03:53:22.5540030Z [2974/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-scalar-c1.c.o 2025-07-24T03:53:22.5850690Z [2975/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-4x-neon-c4.c.o 2025-07-24T03:53:22.5856840Z [2976/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-scalar-c1.c.o 2025-07-24T03:53:22.6011420Z [2977/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9p8x-neon-c4.c.o 2025-07-24T03:53:22.6013460Z [2978/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-scalar-c1.c.o 2025-07-24T03:53:22.6015740Z [2979/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vunary/gen/f16-vsqr-neonfp16arith-u16.c.o 2025-07-24T03:53:22.6202530Z [2980/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-argmaxpool/f32-argmaxpool-9x-neon-c4.c.o 2025-07-24T03:53:22.6290310Z [2981/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-aarch64-neonfma-2x2.c.o 2025-07-24T03:53:22.6488560Z [2982/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-scalar-c1.c.o 2025-07-24T03:53:22.6705570Z [2983/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9p8x-minmax-neon-c4.c.o 2025-07-24T03:53:22.6769590Z [2984/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-24T03:53:22.7125030Z [2985/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-neon-2x2.c.o 2025-07-24T03:53:22.7207690Z [2986/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-conv-hwc2chw/f32-conv-hwc2chw-3x3s2p1c3x4-scalar-1x1.c.o 2025-07-24T03:53:22.7230110Z [2987/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-scalar-c1.c.o 2025-07-24T03:53:22.7252900Z [2988/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-avgpool/f32-avgpool-9x-minmax-neon-c4.c.o 2025-07-24T03:53:22.7281320Z [2989/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-2f2m2l4c1s1r-minmax-scalar-acc2.c.o 2025-07-24T03:53:22.7479700Z [2990/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-minmax-scalar-acc2.c.o 2025-07-24T03:53:22.7805590Z [2991/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p1c-scalar-acc2.c.o 2025-07-24T03:53:22.8088890Z [2992/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neon-acc2.c.o 2025-07-24T03:53:22.8100630Z [2993/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-minmax-scalar-acc2.c.o 2025-07-24T03:53:22.8101470Z [2994/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-25p8c-minmax-neonfma-acc2.c.o 2025-07-24T03:53:22.8288390Z [2995/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p1c-scalar-acc2.c.o 2025-07-24T03:53:22.8336520Z [2996/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-scalar-acc2.c.o 2025-07-24T03:53:22.8462210Z [2997/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p1c-minmax-scalar-acc2.c.o 2025-07-24T03:53:22.8566750Z [2998/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neon.c.o 2025-07-24T03:53:22.8593860Z [2999/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-3p8c-minmax-neonfma.c.o 2025-07-24T03:53:22.9112490Z [3000/5147] Linking CXX static library lib/libprotoc.a 2025-07-24T03:53:22.9379490Z [3001/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-07-24T03:53:22.9387630Z [3002/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-input-gradient.c.o 2025-07-24T03:53:22.9398600Z [3003/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neonfma.c.o 2025-07-24T03:53:22.9562250Z [3004/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-25p8c-minmax-neonfp16arith-acc2.c.o 2025-07-24T03:53:22.9572610Z [3005/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-conv-hwc2chw/f16-conv-hwc2chw-3x3s2p1c3x4-neonfp16arith-2x2.c.o 2025-07-24T03:53:22.9909470Z [3006/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-4p8c-minmax-neon.c.o 2025-07-24T03:53:22.9993450Z [3007/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-4p16c-minmax-neonfp16arith.c.o 2025-07-24T03:53:23.0319290Z [3008/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-avgpool/f16-avgpool-9x-minmax-neonfp16arith-c8.c.o 2025-07-24T03:53:23.0422880Z [3009/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-3p16c-minmax-neonfp16arith.c.o 2025-07-24T03:53:23.0495210Z [3010/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3p1-minmax-neonfp16arith-2x8.c.o 2025-07-24T03:53:23.0786820Z [3011/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5p2-minmax-neonfp16arith-1x8.c.o 2025-07-24T03:53:23.0910560Z [3012/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-3x3s2p1-minmax-neonfp16arith-1x8.c.o 2025-07-24T03:53:23.0943830Z [3013/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p16c-minmax-neonfp16arith.c.o 2025-07-24T03:53:23.1028900Z [3014/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv/gen/f16-dwconv-9p8c-minmax-neonfp16arith.c.o 2025-07-24T03:53:23.1077850Z [3015/5147] Linking CXX executable bin/protoc-3.13.0.0 2025-07-24T03:53:23.1211170Z [3016/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-dwconv2d-chw/gen/f16-dwconv2d-chw-5x5s2p2-minmax-neonfp16arith-1x8.c.o 2025-07-24T03:53:23.1225060Z [3017/5147] Creating executable symlink bin/protoc 2025-07-24T03:53:23.1268990Z [3018/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:53:23.1623360Z [3019/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neonfp16-u16.c.o 2025-07-24T03:53:23.1713200Z [3020/5147] Running gen_proto.py on onnx/onnx.in.proto 2025-07-24T03:53:23.1718840Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx.in.proto 2025-07-24T03:53:23.1752450Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-24T03:53:23.1757980Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto3 2025-07-24T03:53:23.1786340Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-ml.pb.h 2025-07-24T03:53:23.1787890Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_pb.py 2025-07-24T03:53:23.1841410Z [3021/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:53:23.1982460Z [3022/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-07-24T03:53:23.1998740Z [3023/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u4.c.o 2025-07-24T03:53:23.2025050Z [3024/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rsum/gen/f16-f32acc-rsum-neonfp16arith-u32-acc4.c.o 2025-07-24T03:53:23.2043870Z [3025/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-scalar-u1.c.o 2025-07-24T03:53:23.2110090Z [3026/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32-vcvt/gen/f16-f32-vcvt-neon-int16-u16.c.o 2025-07-24T03:53:23.2266660Z [3027/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-f32acc-rdsum/gen/f16-f32acc-rdsum-7p7x-minmax-neonfp16arith-c16.c.o 2025-07-24T03:53:23.2331050Z [3028/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:53:23.2727400Z [3029/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2025-07-24T03:53:23.2998670Z [3030/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:53:23.3014770Z [3031/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-07-24T03:53:23.3117450Z [3032/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:53:23.3293280Z [3033/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:53:23.3344800Z [3034/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:53:23.3755840Z [3035/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S.o 2025-07-24T03:53:23.3759290Z [3036/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S.o 2025-07-24T03:53:23.3795800Z [3037/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear-chw/gen/f16-ibilinear-chw-neonfp16arith-p8.c.o 2025-07-24T03:53:23.3944950Z [3038/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-ibilinear/gen/f16-ibilinear-neonfp16arith-c8.c.o 2025-07-24T03:53:23.3947980Z [3039/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S.o 2025-07-24T03:53:23.4019690Z [3040/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:53:23.4105040Z [3041/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-gemm/gen/f16-gemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:53:23.4109900Z [3042/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S.o 2025-07-24T03:53:23.4719610Z [3043/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:53:23.5229400Z [3044/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9x-minmax-neonfp16arith-c8.c.o 2025-07-24T03:53:23.5232820Z [3045/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-pavgpool/f16-pavgpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-07-24T03:53:23.5281230Z [3046/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:53:23.5368480Z [3047/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-6x16-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:53:23.5444030Z [3048/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-igemm/gen/f16-igemm-1x8-minmax-neonfp16arith-ld64.c.o 2025-07-24T03:53:23.5444980Z [3049/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-raddstoreexpminusmax/gen/f16-raddstoreexpminusmax-neonfp16arith-rr2-p2-u32.c.o 2025-07-24T03:53:23.5676900Z [3050/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-maxpool/f16-maxpool-9p8x-minmax-neonfp16arith-c8.c.o 2025-07-24T03:53:23.5779980Z [3051/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-neonfp16arith-u32.c.o 2025-07-24T03:53:23.5882230Z [3052/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qs8-vcvt/gen/f16-qs8-vcvt-scalar-imagic-u4.c.o 2025-07-24T03:53:23.6333400Z [3053/5147] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_onnx_torch-ml.proto 2025-07-24T03:53:23.6363220Z [3054/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-scalar-u2-acc2.c.o 2025-07-24T03:53:23.6382670Z [3055/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rminmax-neonfp16arith-u32-acc4.c.o 2025-07-24T03:53:23.6621560Z [3056/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-qu8-vcvt/gen/f16-qu8-vcvt-scalar-imagic-u4.c.o 2025-07-24T03:53:23.6643280Z [3057/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-spmm/gen/f16-spmm-32x1-minmax-neonfp16arith-pipelined.c.o 2025-07-24T03:53:23.6691140Z [3058/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-scalar-u2-acc2.c.o 2025-07-24T03:53:23.6874140Z [3059/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-rminmax/gen/f16-rmax-neonfp16arith-u32-acc4.c.o 2025-07-24T03:53:23.6933640Z [3060/5147] Running gen_proto.py on onnx/onnx-data.in.proto 2025-07-24T03:53:23.6934830Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-data.in.proto 2025-07-24T03:53:23.7008260Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-24T03:53:23.7009870Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto3 2025-07-24T03:53:23.7011280Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data.pb.h 2025-07-24T03:53:23.7013570Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_data_pb.py 2025-07-24T03:53:23.7014380Z [3061/5147] Running gen_proto.py on onnx/onnx-operators.in.proto 2025-07-24T03:53:23.7014830Z Processing /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/onnx/onnx/onnx-operators.in.proto 2025-07-24T03:53:23.7015410Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-24T03:53:23.7016010Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto3 2025-07-24T03:53:23.7016570Z Writing /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators-ml.pb.h 2025-07-24T03:53:23.7017110Z generating /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx_operators_pb.py 2025-07-24T03:53:23.7097750Z [3062/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-aarch64-neonfp16arith-u8.c.o 2025-07-24T03:53:23.7125140Z [3063/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vaddc-neonfp16arith-u16.c.o 2025-07-24T03:53:23.7136740Z [3064/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vadd-neonfp16arith-u16.c.o 2025-07-24T03:53:23.7366910Z [3065/5147] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-operators_onnx_torch-ml.proto 2025-07-24T03:53:23.7636640Z [3066/5147] Running C++ protocol buffer compiler on /Users/ec2-user/runner/_work/pytorch/pytorch/build/third_party/onnx/onnx/onnx-data_onnx_torch.proto 2025-07-24T03:53:23.7914770Z [3067/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-aarch64-neonfp16arith-u8.c.o 2025-07-24T03:53:23.8145770Z [3068/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdiv-fp16arith-u2.c.o 2025-07-24T03:53:23.8180300Z [3069/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vdivc-fp16arith-u2.c.o 2025-07-24T03:53:23.8243670Z [3070/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmaxc-neonfp16arith-u16.c.o 2025-07-24T03:53:23.8445020Z [3071/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmin-neonfp16arith-u16.c.o 2025-07-24T03:53:23.8615570Z [3072/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmulc-neonfp16arith-u16.c.o 2025-07-24T03:53:23.9026330Z [3073/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmul-neonfp16arith-u16.c.o 2025-07-24T03:53:23.9153230Z [3074/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vminc-neonfp16arith-u16.c.o 2025-07-24T03:53:23.9176330Z [3075/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vmax-neonfp16arith-u16.c.o 2025-07-24T03:53:24.0042740Z [3076/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/assertions.cc.o 2025-07-24T03:53:24.0504710Z [3077/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/interned_strings.cc.o 2025-07-24T03:53:24.0664870Z [3078/5147] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-operators_onnx_torch-ml.pb.cc.o 2025-07-24T03:53:24.0692440Z [3079/5147] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx-data_onnx_torch.pb.cc.o 2025-07-24T03:53:24.1072110Z [3080/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/checker.cc.o 2025-07-24T03:53:24.1223170Z [3081/5147] Building CXX object third_party/onnx/CMakeFiles/onnx_proto.dir/onnx/onnx_onnx_torch-ml.pb.cc.o 2025-07-24T03:53:24.1329460Z [3082/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/path.cc.o 2025-07-24T03:53:24.2071560Z [3083/5147] Linking CXX static library lib/libonnx_proto.a 2025-07-24T03:53:24.2212790Z [3084/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/ir_pb_converter.cc.o 2025-07-24T03:53:24.2461500Z [3085/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/status.cc.o 2025-07-24T03:53:24.2978130Z [3086/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/common/model_helpers.cc.o 2025-07-24T03:53:24.3180250Z [3087/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/defs.cc.o 2025-07-24T03:53:24.3382420Z [3088/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/utils.cc.o 2025-07-24T03:53:24.3485230Z [3089/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/attr_proto_util.cc.o 2025-07-24T03:53:24.3496450Z [3090/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/controlflow/old.cc.o 2025-07-24T03:53:24.4152340Z [3091/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/data_type_utils.cc.o 2025-07-24T03:53:24.4789370Z [3092/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/function.cc.o 2025-07-24T03:53:24.5728640Z [3093/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/image/defs.cc.o 2025-07-24T03:53:24.5749380Z [3094/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/old.cc.o 2025-07-24T03:53:24.5769630Z [3095/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/defs.cc.o 2025-07-24T03:53:24.5787840Z [3096/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/old.cc.o 2025-07-24T03:53:24.5796200Z [3097/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/generator/utils.cc.o 2025-07-24T03:53:24.6186740Z [3098/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/logical/defs.cc.o 2025-07-24T03:53:24.6528190Z [3099/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/defs.cc.o 2025-07-24T03:53:24.6822110Z [3100/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/old.cc.o 2025-07-24T03:53:24.8187990Z [3101/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/math/utils.cc.o 2025-07-24T03:53:24.8324430Z [3102/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/defs.cc.o 2025-07-24T03:53:24.8400060Z [3103/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/old.cc.o 2025-07-24T03:53:24.8496840Z [3104/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/optional/old.cc.o 2025-07-24T03:53:24.8949510Z [3105/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/old.cc.o 2025-07-24T03:53:24.9052040Z [3106/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/nn/defs.cc.o 2025-07-24T03:53:24.9053340Z [3107/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/parser.cc.o 2025-07-24T03:53:24.9694050Z [3108/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/object_detection/defs.cc.o 2025-07-24T03:53:25.0744560Z [3109/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/printer.cc.o 2025-07-24T03:53:25.0755240Z [3110/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/utils.cc.o 2025-07-24T03:53:25.0856860Z [3111/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/defs.cc.o 2025-07-24T03:53:25.1091710Z [3112/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/defs.cc.o 2025-07-24T03:53:25.1358600Z [3113/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/quantization/old.cc.o 2025-07-24T03:53:25.1645360Z [3114/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/reduction/old.cc.o 2025-07-24T03:53:25.1877270Z [3115/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/defs.cc.o 2025-07-24T03:53:25.1950570Z [3116/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/rnn/old.cc.o 2025-07-24T03:53:25.3281160Z [3117/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/sequence/defs.cc.o 2025-07-24T03:53:25.3775610Z [3118/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/schema.cc.o 2025-07-24T03:53:25.3957530Z [3119/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/shape_inference.cc.o 2025-07-24T03:53:25.4181920Z [3120/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/defs.cc.o 2025-07-24T03:53:25.4285610Z [3121/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_proto_util.cc.o 2025-07-24T03:53:25.4389470Z [3122/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/utils.cc.o 2025-07-24T03:53:25.4544780Z [3123/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor/old.cc.o 2025-07-24T03:53:25.4551920Z [3124/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/tensor_util.cc.o 2025-07-24T03:53:25.4769840Z [3125/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/text/defs.cc.o 2025-07-24T03:53:25.5500370Z [3126/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/defs.cc.o 2025-07-24T03:53:25.5966430Z [3127/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vprelu-neonfp16arith-u16.c.o 2025-07-24T03:53:25.6274980Z [3128/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/traditionalml/old.cc.o 2025-07-24T03:53:25.6536590Z [3129/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/defs/training/defs.cc.o 2025-07-24T03:53:25.6540260Z [3130/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l8c4s4r-minmax-neonfma-acc2.c.o 2025-07-24T03:53:25.6719210Z [3131/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vpreluc-neonfp16arith-u16.c.o 2025-07-24T03:53:25.7011020Z [3132/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f16-vbinary/gen/f16-vrdivc-aarch64-neonfp16arith-u8.c.o 2025-07-24T03:53:25.7199210Z [3133/5147] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-dq-aarch64-neon.S.o 2025-07-24T03:53:25.7220840Z [3134/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/shape_inference/implementation.cc.o 2025-07-24T03:53:25.7235520Z [3135/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/inliner/inliner.cc.o 2025-07-24T03:53:25.7278230Z [3136/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/helper.cc.o 2025-07-24T03:53:25.7287950Z [3137/5147] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x4-packA-aarch64-neon.S.o 2025-07-24T03:53:25.7401450Z [3138/5147] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c1x4-dq-packedA-aarch64-neon.S.o 2025-07-24T03:53:25.7557660Z [3139/5147] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm_sparse/8x8c8x1-dq-packedA-aarch64-neon.S.o 2025-07-24T03:53:25.7687780Z [3140/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-8f8m9l4c4s4r-minmax-neon-acc2.c.o 2025-07-24T03:53:25.8252440Z [3141/5147] Building C object confu-deps/clog/CMakeFiles/clog.dir/src/clog.c.o 2025-07-24T03:53:25.8354230Z [3142/5147] Building CXX object third_party/onnx/CMakeFiles/onnx.dir/onnx/version_converter/convert.cc.o 2025-07-24T03:53:25.8456850Z [3143/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-inference.c.o 2025-07-24T03:53:25.8562480Z [3144/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/softmax-output.c.o 2025-07-24T03:53:25.8613160Z [3145/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/pooling-output.c.o 2025-07-24T03:53:25.8712950Z [3146/5147] Linking C static library lib/libclog.a 2025-07-24T03:53:25.8721070Z [3147/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-output.c.o 2025-07-24T03:53:25.8799830Z [3148/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/init.c.o 2025-07-24T03:53:25.9007150Z [3149/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/fully-connected-output.c.o 2025-07-24T03:53:25.9245160Z [3150/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/relu-input-gradient.c.o 2025-07-24T03:53:25.9655430Z [3151/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-inference.c.o 2025-07-24T03:53:25.9680270Z [3152/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-output.c.o 2025-07-24T03:53:25.9818970Z [3153/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-kernel-gradient.c.o 2025-07-24T03:53:25.9974710Z [3154/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/convolution-input-gradient.c.o 2025-07-24T03:53:26.0071630Z [3155/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-16x16.c.o 2025-07-24T03:53:26.0081710Z [3156/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/2d-fourier-8x8.c.o 2025-07-24T03:53:26.0089760Z [3157/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3.c.o 2025-07-24T03:53:26.0146650Z [3158/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/2d-winograd-8x8-3x3-fp16.c.o 2025-07-24T03:53:26.0483350Z [3159/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/h4gemm.c.o 2025-07-24T03:53:26.0674800Z [3160/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb.c.o 2025-07-24T03:53:26.0884160Z [3161/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb.c.o 2025-07-24T03:53:26.1113300Z [3162/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/conv1x1.c.o 2025-07-24T03:53:26.1139830Z [3163/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4gemm.c.o 2025-07-24T03:53:26.1272860Z [3164/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sdotxf.c.o 2025-07-24T03:53:26.1301400Z [3165/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/sgemm.c.o 2025-07-24T03:53:26.1413270Z [3166/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/relu.c.o 2025-07-24T03:53:26.1423580Z [3167/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/softmax.c.o 2025-07-24T03:53:26.1810940Z [3168/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/psimd/blas/shdotxf.c.o 2025-07-24T03:53:26.1818600Z [3169/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm.c.o 2025-07-24T03:53:26.2006070Z [3170/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm.c.o 2025-07-24T03:53:26.2206630Z [3171/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-output.c.o 2025-07-24T03:53:26.2270140Z [3172/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/s4c2gemm-conjb-transc.c.o 2025-07-24T03:53:26.2323270Z [3173/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack.dir/src/neon/blas/c4gemm-conjb-transc.c.o 2025-07-24T03:53:26.2332390Z [3174/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-kernel.c.o 2025-07-24T03:53:26.2604810Z [3175/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/max-pooling-output.c.o 2025-07-24T03:53:26.2737260Z [3176/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/softmax-output.c.o 2025-07-24T03:53:26.2770720Z [3177/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/convolution-input-gradient.c.o 2025-07-24T03:53:26.2784710Z [3178/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/fully-connected-output.c.o 2025-07-24T03:53:26.2967070Z [3179/5147] Linking CXX static library lib/libonnx.a 2025-07-24T03:53:26.2968750Z [3180/5147] Linking C static library lib/libnnpack.a 2025-07-24T03:53:26.3116530Z [3181/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconvolution.c.o 2025-07-24T03:53:26.3142830Z [3182/5147] Building C object confu-deps/NNPACK/CMakeFiles/nnpack_reference_layers.dir/src/ref/relu-output.c.o 2025-07-24T03:53:26.3376460Z [3183/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected.c.o 2025-07-24T03:53:26.3605700Z [3184/5147] Linking C static library lib/libnnpack_reference_layers.a 2025-07-24T03:53:26.3649390Z [3185/5147] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-prepack.cc.o 2025-07-24T03:53:26.3699400Z [3186/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fully-connected-sparse.c.o 2025-07-24T03:53:26.3863240Z [3187/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/global-average-pooling.c.o 2025-07-24T03:53:26.3880000Z [3188/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardswish.c.o 2025-07-24T03:53:26.4027080Z [3189/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/leaky-relu.c.o 2025-07-24T03:53:26.4058050Z [3190/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/max-pooling.c.o 2025-07-24T03:53:26.4145350Z [3191/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sigmoid.c.o 2025-07-24T03:53:26.4295630Z [3192/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/hardsigmoid.c.o 2025-07-24T03:53:26.4507130Z [3193/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/softargmax.c.o 2025-07-24T03:53:26.4625300Z [3194/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/tanh.c.o 2025-07-24T03:53:26.4779850Z [3195/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-delete.c.o 2025-07-24T03:53:26.5204260Z [3196/5147] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-run.cc.o 2025-07-24T03:53:26.5376950Z [3197/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/indirection.c.o 2025-07-24T03:53:26.5524290Z [3198/5147] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/deconv-run.cc.o 2025-07-24T03:53:26.5650820Z [3199/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8lut/scalar.c.o 2025-07-24T03:53:26.5666070Z [3200/5147] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-unpack.cc.o 2025-07-24T03:53:26.5722840Z [3201/5147] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/conv-run.cc.o 2025-07-24T03:53:26.5860310Z [3202/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/operator-run.c.o 2025-07-24T03:53:26.5910330Z [3203/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8lut32norm/scalar.c.o 2025-07-24T03:53:26.6045900Z [3204/5147] Building CXX object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/fc-dynamic-run.cc.o 2025-07-24T03:53:26.6139470Z [3205/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-psimd.c.o 2025-07-24T03:53:26.6140350Z [3206/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/mp8x9p8q-neon.c.o 2025-07-24T03:53:26.6327440Z [3207/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8x9-neon.c.o 2025-07-24T03:53:26.6561540Z [3208/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8avgpool/up8xm-neon.c.o 2025-07-24T03:53:26.6890520Z [3209/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/4x8-neon.c.o 2025-07-24T03:53:26.7077830Z [3210/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8conv/8x8-neon.c.o 2025-07-24T03:53:26.7159160Z [3211/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon.c.o 2025-07-24T03:53:26.7280020Z [3212/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x25-neon-per-channel.c.o 2025-07-24T03:53:26.7314870Z [3213/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon.c.o 2025-07-24T03:53:26.7433010Z [3214/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/up8x9-neon-per-channel.c.o 2025-07-24T03:53:26.7481170Z [3215/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8dwconv/mp8x27-neon.c.o 2025-07-24T03:53:26.7634750Z [3216/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/mp8x7p7q-neon.c.o 2025-07-24T03:53:26.7718560Z [3217/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8xm-neon.c.o 2025-07-24T03:53:26.7933670Z [3218/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gavgpool/up8x7-neon.c.o 2025-07-24T03:53:26.8103830Z [3219/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x-sumrows-neon.c.o 2025-07-24T03:53:26.8325760Z [3220/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-neon.c.o 2025-07-24T03:53:26.8469440Z [3221/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8c2-xzp-neon.c.o 2025-07-24T03:53:26.8537160Z [3222/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/4x8-dq-neon.c.o 2025-07-24T03:53:26.8551970Z [3223/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/6x4-neon.c.o 2025-07-24T03:53:26.8725900Z [3224/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-neon.c.o 2025-07-24T03:53:26.8738710Z [3225/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/5x8-neon.c.o 2025-07-24T03:53:26.8831800Z [3226/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8vadd/neon.c.o 2025-07-24T03:53:26.8983740Z [3227/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/sgemm/6x8-neon.c.o 2025-07-24T03:53:26.9300450Z [3228/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8clamp/neon.c.o 2025-07-24T03:53:26.9584780Z [3229/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/16x9p8q-neon.c.o 2025-07-24T03:53:26.9608220Z [3230/5147] Building ASM object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/q8gemm/8x8-aarch64-neon.S.o 2025-07-24T03:53:26.9778100Z [3231/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8maxpool/sub16-neon.c.o 2025-07-24T03:53:26.9876480Z [3232/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/u8rmax/neon.c.o 2025-07-24T03:53:26.9884770Z [3233/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x4-neon.c.o 2025-07-24T03:53:26.9904350Z [3234/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/xm-neon.c.o 2025-07-24T03:53:27.0039710Z [3235/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x3-neon.c.o 2025-07-24T03:53:27.0251330Z [3236/5147] Building C object confu-deps/pytorch_qnnpack/CMakeFiles/pytorch_qnnpack.dir/src/x8zip/x2-neon.c.o 2025-07-24T03:53:27.0693210Z [3237/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-neon-u8.c.o 2025-07-24T03:53:27.0724830Z [3238/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-neon-u8.c.o 2025-07-24T03:53:27.0741250Z [3239/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsub-scalar-u8.c.o 2025-07-24T03:53:27.0782800Z [3240/5147] Linking CXX static library lib/libpytorch_qnnpack.a 2025-07-24T03:53:27.0873500Z [3241/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-scalar-u8.c.o 2025-07-24T03:53:27.0924990Z [3242/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsubc-scalar-u8.c.o 2025-07-24T03:53:27.0926840Z [3243/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-scalar-u4.c.o 2025-07-24T03:53:27.0995970Z [3244/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-neon-u8.c.o 2025-07-24T03:53:27.1434530Z [3245/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcmul/gen/f32-vcmul-scalar-u4.c.o 2025-07-24T03:53:27.1437350Z [3246/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vclamp/gen/f32-vclamp-neon-u16.c.o 2025-07-24T03:53:27.1986050Z [3247/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-neon.c.o 2025-07-24T03:53:27.2021460Z [3248/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysignc-scalar.c.o 2025-07-24T03:53:27.2022890Z [3249/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-scalar.c.o 2025-07-24T03:53:27.2061280Z [3250/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vcopysign-neon.c.o 2025-07-24T03:53:27.2216390Z [3251/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-neon.c.o 2025-07-24T03:53:27.2220170Z [3252/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vcopysign/gen/f32-vrcopysignc-scalar.c.o 2025-07-24T03:53:27.2280890Z [3253/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neon-rr2-lut16-p3-u8.c.o 2025-07-24T03:53:27.2575380Z [3254/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vexp/gen/f32-vexp-scalar-exp.c.o 2025-07-24T03:53:27.2826040Z [3255/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-lut16-p3-u16.c.o 2025-07-24T03:53:27.2842780Z [3256/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-neonfma-rr1-p6-u8.c.o 2025-07-24T03:53:27.3060390Z [3257/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u2.c.o 2025-07-24T03:53:27.3097840Z [3258/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-velu/gen/f32-velu-scalar-rr2-lut16-p3-u4.c.o 2025-07-24T03:53:27.3237800Z [3259/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-scalar-rational-12-10-div.c.o 2025-07-24T03:53:27.3521430Z [3260/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-neon-u8.c.o 2025-07-24T03:53:27.3646180Z [3261/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-neon-u16.c.o 2025-07-24T03:53:27.3735100Z [3262/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vhswish/gen/f32-vhswish-scalar-u4.c.o 2025-07-24T03:53:27.3789380Z [3263/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-scalar-rational-3-3-div.c.o 2025-07-24T03:53:27.3916700Z [3264/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vgelu/gen/f32-vgelu-neon-rational-12-10-div.c.o 2025-07-24T03:53:27.3921350Z [3265/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlog/gen/f32-vlog-neon-rational-3-3-div.c.o 2025-07-24T03:53:27.3930060Z [3266/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c1-minmax-scalar-2x.c.o 2025-07-24T03:53:27.4111900Z [3267/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrelu/gen/f32-vrelu-scalar-u8.c.o 2025-07-24T03:53:27.4128560Z [3268/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vlrelu/gen/f32-vlrelu-scalar-u4.c.o 2025-07-24T03:53:27.4310770Z [3269/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neonfma-2x.c.o 2025-07-24T03:53:27.4735590Z [3270/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vmulcaddc/gen/f32-vmulcaddc-c4-minmax-neon-2x.c.o 2025-07-24T03:53:27.4973030Z [3271/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neonv8-u8.c.o 2025-07-24T03:53:27.4994220Z [3272/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-neon-u8.c.o 2025-07-24T03:53:27.5098170Z [3273/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u1.c.o 2025-07-24T03:53:27.5180190Z [3274/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u1.c.o 2025-07-24T03:53:27.5243800Z [3275/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neonv8-u8.c.o 2025-07-24T03:53:27.5245540Z [3276/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndd-scalar-libm-u4.c.o 2025-07-24T03:53:27.5436470Z [3277/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neonv8-u8.c.o 2025-07-24T03:53:27.5537240Z [3278/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-neon-u8.c.o 2025-07-24T03:53:27.5753230Z [3279/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-scalar-libm-u4.c.o 2025-07-24T03:53:27.5764680Z [3280/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndne-neon-u8.c.o 2025-07-24T03:53:27.6250130Z [3281/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u4.c.o 2025-07-24T03:53:27.6294890Z [3282/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neonv8-u8.c.o 2025-07-24T03:53:27.6341910Z [3283/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:27.6368420Z [3284/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u4.c.o 2025-07-24T03:53:27.6468010Z [3285/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-neon-u8.c.o 2025-07-24T03:53:27.6599330Z [3286/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndu-scalar-libm-u1.c.o 2025-07-24T03:53:27.6618620Z [3287/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrnd/gen/f32-vrndz-scalar-libm-u1.c.o 2025-07-24T03:53:27.6971330Z [3288/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-neon-u16-acc4.c.o 2025-07-24T03:53:27.6975490Z [3289/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:27.7152920Z [3290/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rmax-scalar-u4-acc4.c.o 2025-07-24T03:53:27.7349200Z [3291/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-scalar-u4-acc4.c.o 2025-07-24T03:53:27.7590200Z [3292/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rminmax/gen/f32-rminmax-neon-u16-acc4.c.o 2025-07-24T03:53:27.7605980Z [3293/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-scalar-u4-acc4.c.o 2025-07-24T03:53:27.7783130Z [3294/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neon.c.o 2025-07-24T03:53:27.7794540Z [3295/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x1-minmax-neonfma-pipelined.c.o 2025-07-24T03:53:27.7970950Z [3296/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rsum/gen/f32-rsum-neon-u16-acc4.c.o 2025-07-24T03:53:27.8024880Z [3297/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x1-minmax-scalar.c.o 2025-07-24T03:53:27.8259100Z [3298/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x2-minmax-scalar.c.o 2025-07-24T03:53:27.8482820Z [3299/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-neon-u8.c.o 2025-07-24T03:53:27.8517250Z [3300/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x2-minmax-aarch64-neonfma.c.o 2025-07-24T03:53:27.8606670Z [3301/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-8x4-minmax-scalar.c.o 2025-07-24T03:53:27.8674690Z [3302/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-spmm/gen/f32-spmm-32x4-minmax-aarch64-neonfma.c.o 2025-07-24T03:53:27.8794870Z [3303/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-neon-u8.c.o 2025-07-24T03:53:27.8796200Z [3304/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vadd-scalar-u8.c.o 2025-07-24T03:53:27.8849420Z [3305/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vaddc-scalar-u8.c.o 2025-07-24T03:53:27.9057680Z [3306/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-scalar-u2.c.o 2025-07-24T03:53:27.9428700Z [3307/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdiv-aarch64-neon-u8.c.o 2025-07-24T03:53:27.9722470Z [3308/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-aarch64-neon-u8.c.o 2025-07-24T03:53:27.9826500Z [3309/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-scalar-u8.c.o 2025-07-24T03:53:27.9928150Z [3310/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vdivc-scalar-u2.c.o 2025-07-24T03:53:27.9929920Z [3311/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-scalar-u8.c.o 2025-07-24T03:53:28.0053950Z [3312/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmax-neon-u8.c.o 2025-07-24T03:53:28.0134890Z [3313/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmaxc-neon-u8.c.o 2025-07-24T03:53:28.0172990Z [3314/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-scalar-u8.c.o 2025-07-24T03:53:28.0186170Z [3315/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmin-neon-u8.c.o 2025-07-24T03:53:28.0479720Z [3316/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-neon-u8.c.o 2025-07-24T03:53:28.0801830Z [3317/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vminc-scalar-u8.c.o 2025-07-24T03:53:28.0826850Z [3318/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-neon-u8.c.o 2025-07-24T03:53:28.1075550Z [3319/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmul-scalar-u8.c.o 2025-07-24T03:53:28.1210310Z [3320/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-scalar-u8.c.o 2025-07-24T03:53:28.1236270Z [3321/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vmulc-neon-u8.c.o 2025-07-24T03:53:28.1359080Z [3322/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-scalar-u8.c.o 2025-07-24T03:53:28.1400150Z [3323/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-neon-u8.c.o 2025-07-24T03:53:28.1454610Z [3324/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vprelu-scalar-u8.c.o 2025-07-24T03:53:28.1588950Z [3325/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vpreluc-neon-u8.c.o 2025-07-24T03:53:28.1675700Z [3326/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-aarch64-neon-u8.c.o 2025-07-24T03:53:28.1884380Z [3327/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrdivc-scalar-u2.c.o 2025-07-24T03:53:28.2225110Z [3328/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-scalar-u8.c.o 2025-07-24T03:53:28.2310140Z [3329/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrpreluc-neon-u8.c.o 2025-07-24T03:53:28.2435680Z [3330/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-scalar-u8.c.o 2025-07-24T03:53:28.2597680Z [3331/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiffc-neon-u8.c.o 2025-07-24T03:53:28.2634210Z [3332/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vrsubc-neon-u8.c.o 2025-07-24T03:53:28.2662610Z [3333/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-scalar-u8.c.o 2025-07-24T03:53:28.2665180Z [3334/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vbinary/gen/f32-vsqrdiff-neon-u8.c.o 2025-07-24T03:53:28.2670310Z [3335/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-24T03:53:28.2875780Z [3336/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:53:28.2888760Z [3337/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:53:28.3090130Z [3338/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:28.3161140Z [3339/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:28.3253090Z [3340/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:28.3443840Z [3341/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64.S.o 2025-07-24T03:53:28.3764020Z [3342/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:28.4055060Z [3343/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-minmax-scalar.c.o 2025-07-24T03:53:28.4178100Z [3344/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-relu-scalar.c.o 2025-07-24T03:53:28.4287360Z [3345/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:28.4317200Z [3346/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:53:28.4319600Z [3347/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-2x4-scalar.c.o 2025-07-24T03:53:28.4481690Z [3348/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x8s4-minmax-neonfma.c.o 2025-07-24T03:53:28.4526230Z [3349/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-scalar.c.o 2025-07-24T03:53:28.4532310Z [3350/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-scalar.c.o 2025-07-24T03:53:28.4613480Z [3351/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x2-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:28.4717860Z [3352/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-24T03:53:28.4895530Z [3353/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-minmax-scalar.c.o 2025-07-24T03:53:28.4920940Z [3354/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:28.5118840Z [3355/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:28.5599650Z [3356/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-scalar.c.o 2025-07-24T03:53:28.5623360Z [3357/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x4-relu-scalar.c.o 2025-07-24T03:53:28.5642840Z [3358/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-24T03:53:28.5680660Z [3359/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:28.5777960Z [3360/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:28.5789440Z [3361/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:28.5924050Z [3362/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:28.6345390Z [3363/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:53:28.6540780Z [3364/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:28.6571730Z [3365/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:28.6614160Z [3366/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-4x8s4-minmax-neonfma.c.o 2025-07-24T03:53:28.6822930Z [3367/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-scalar-c1.c.o 2025-07-24T03:53:28.6962320Z [3368/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9p8x-minmax-neon-c4.c.o 2025-07-24T03:53:28.7152140Z [3369/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-scalar-c1.c.o 2025-07-24T03:53:28.7220250Z [3370/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-maxpool/f32-maxpool-9p8x-minmax-neon-c4.c.o 2025-07-24T03:53:28.7265090Z [3371/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:53:28.7277640Z [3372/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-6x8s4-minmax-neonfma.c.o 2025-07-24T03:53:28.7407790Z [3373/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-scalar-c1.c.o 2025-07-24T03:53:28.7695200Z [3374/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-pavgpool/f32-pavgpool-9x-minmax-neon-c4.c.o 2025-07-24T03:53:28.7859480Z [3375/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-07-24T03:53:28.7944650Z [3376/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:28.8207830Z [3377/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:53:28.8290120Z [3378/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-07-24T03:53:28.8473490Z [3379/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:28.8490820Z [3380/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-07-24T03:53:28.8706580Z [3381/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-07-24T03:53:28.8724050Z [3382/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:28.9053470Z [3383/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc4w-gemm/gen/f32-qc4w-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:53:28.9176130Z [3384/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:53:28.9309100Z [3385/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:28.9459540Z [3386/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-07-24T03:53:28.9544040Z [3387/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:28.9584280Z [3388/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-6x8-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:53:28.9668690Z [3389/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qc8w-gemm/gen/f32-qc8w-gemm-4x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:28.9772740Z [3390/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neon-u32.c.o 2025-07-24T03:53:28.9774460Z [3391/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u1.c.o 2025-07-24T03:53:29.0297850Z [3392/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-lrintf-u4.c.o 2025-07-24T03:53:29.0389660Z [3393/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-scalar-imagic-u4.c.o 2025-07-24T03:53:29.0404280Z [3394/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qs8-vcvt/gen/f32-qs8-vcvt-neonv8-u32.c.o 2025-07-24T03:53:29.0538960Z [3395/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-neonfma-rr1-lut64-p2-u16-acc2.c.o 2025-07-24T03:53:29.0572880Z [3396/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u1.c.o 2025-07-24T03:53:29.0812190Z [3397/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neonv8-u32.c.o 2025-07-24T03:53:29.0820500Z [3398/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-neon-u32.c.o 2025-07-24T03:53:29.0983560Z [3399/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-lrintf-u4.c.o 2025-07-24T03:53:29.1015620Z [3400/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-qu8-vcvt/gen/f32-qu8-vcvt-scalar-imagic-u4.c.o 2025-07-24T03:53:29.1038580Z [3401/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-raddstoreexpminusmax/gen/f32-raddstoreexpminusmax-scalar-rr2-p5-u4-acc2.c.o 2025-07-24T03:53:29.1537880Z [3402/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-minmax-scalar-acc2.c.o 2025-07-24T03:53:29.1629070Z [3403/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p1c-scalar-acc2.c.o 2025-07-24T03:53:29.1702030Z [3404/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-neon-c16.c.o 2025-07-24T03:53:29.1766270Z [3405/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-aarch64-neonfma-3x4.c.o 2025-07-24T03:53:29.1843860Z [3406/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-rdsum/gen/f32-rdsum-7p7x-minmax-scalar.c.o 2025-07-24T03:53:29.2049080Z [3407/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-2x1-acc2.c.o 2025-07-24T03:53:29.2277040Z [3408/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-scalar-4x1.c.o 2025-07-24T03:53:29.2330200Z [3409/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neon.c.o 2025-07-24T03:53:29.2529870Z [3410/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv/gen/f32-dwconv-9p8c-minmax-neonfma.c.o 2025-07-24T03:53:29.2531830Z [3411/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3p1-minmax-neon-2x4.c.o 2025-07-24T03:53:29.2782440Z [3412/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-1x1-acc2.c.o 2025-07-24T03:53:29.2823190Z [3413/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-aarch64-neonfma-2x4-acc2.c.o 2025-07-24T03:53:29.2884450Z [3414/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-scalar-2x1-acc2.c.o 2025-07-24T03:53:29.3119510Z [3415/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-3x3s2p1-minmax-neon-1x4.c.o 2025-07-24T03:53:29.3205530Z [3416/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-aarch64-neonfma-4x4.c.o 2025-07-24T03:53:29.3304710Z [3417/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-neon-1x4.c.o 2025-07-24T03:53:29.3592390Z [3418/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-1x1-acc5.c.o 2025-07-24T03:53:29.3599710Z [3419/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5p2-minmax-scalar-2x1-acc2.c.o 2025-07-24T03:53:29.3983100Z [3420/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-aarch64-neonfma-1x4-acc2.c.o 2025-07-24T03:53:29.4038570Z [3421/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-2x1-acc2.c.o 2025-07-24T03:53:29.4055030Z [3422/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-neon-1x4.c.o 2025-07-24T03:53:29.4119940Z [3423/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-dwconv2d-chw/gen/f32-dwconv2d-chw-5x5s2p2-minmax-scalar-1x1-acc5.c.o 2025-07-24T03:53:29.4242950Z [3424/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neon-u8.c.o 2025-07-24T03:53:29.4310840Z [3425/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-24T03:53:29.4311870Z [3426/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-fabsf-u2.c.o 2025-07-24T03:53:29.4577970Z [3427/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-scalar-bitcast-u4.c.o 2025-07-24T03:53:29.4660260Z [3428/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-f16-vcvt/gen/f32-f16-vcvt-neonfp16-u16.c.o 2025-07-24T03:53:29.4997540Z [3429/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:29.5023150Z [3430/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:53:29.5034010Z [3431/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:29.5045000Z [3432/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-minmax-scalar.c.o 2025-07-24T03:53:29.5058430Z [3433/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc2.S.o 2025-07-24T03:53:29.5162820Z [3434/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-relu-scalar.c.o 2025-07-24T03:53:29.5209160Z [3435/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:29.5404820Z [3436/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x4-scalar.c.o 2025-07-24T03:53:29.5440440Z [3437/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-asm-aarch64-neonfma-ld128-acc4.S.o 2025-07-24T03:53:29.6105100Z [3438/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:29.6415980Z [3439/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-relu-scalar.c.o 2025-07-24T03:53:29.6438530Z [3440/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-minmax-scalar.c.o 2025-07-24T03:53:29.6485660Z [3441/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-2x4-scalar.c.o 2025-07-24T03:53:29.6545790Z [3442/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8s4-minmax-neonfma.c.o 2025-07-24T03:53:29.6572320Z [3443/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-scalar.c.o 2025-07-24T03:53:29.6756080Z [3444/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-24T03:53:29.6809110Z [3445/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-aarch64-neonfma-lane-ld64.c.o 2025-07-24T03:53:29.6928520Z [3446/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-scalar.c.o 2025-07-24T03:53:29.6931690Z [3447/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-1x8-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:29.7007920Z [3448/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x2-minmax-neon-lane-ld64.c.o 2025-07-24T03:53:29.7204650Z [3449/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:29.7464290Z [3450/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-24T03:53:29.7585210Z [3451/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:29.7694820Z [3452/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:29.7697190Z [3453/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75.S.o 2025-07-24T03:53:29.7943640Z [3454/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S.o 2025-07-24T03:53:29.7978810Z [3455/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-minmax-scalar.c.o 2025-07-24T03:53:29.8081450Z [3456/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-scalar.c.o 2025-07-24T03:53:29.8383760Z [3457/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S.o 2025-07-24T03:53:29.8407260Z [3458/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-24T03:53:29.8426450Z [3459/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-07-24T03:53:29.8438180Z [3460/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x4-relu-scalar.c.o 2025-07-24T03:53:29.8612720Z [3461/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-aarch64-neonfma-lane-ld128.c.o 2025-07-24T03:53:29.8705280Z [3462/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8-minmax-neon-lane-ld128.c.o 2025-07-24T03:53:29.8794390Z [3463/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S.o 2025-07-24T03:53:29.8797020Z [3464/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8-minmax-asm-aarch64-neonfma-ld128.S.o 2025-07-24T03:53:29.9332280Z [3465/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-24T03:53:29.9610860Z [3466/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-scalar-p4.c.o 2025-07-24T03:53:29.9616270Z [3467/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S.o 2025-07-24T03:53:29.9637280Z [3468/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-6x8s4-minmax-neonfma.c.o 2025-07-24T03:53:29.9777010Z [3469/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-gemm/gen/f32-gemm-4x8s4-minmax-neonfma.c.o 2025-07-24T03:53:29.9783800Z [3470/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neonfma-p8.c.o 2025-07-24T03:53:29.9834770Z [3471/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neon-c8.c.o 2025-07-24T03:53:29.9989940Z [3472/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-neonfma-c8.c.o 2025-07-24T03:53:30.0024020Z [3473/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear-chw/gen/f32-ibilinear-chw-neon-p8.c.o 2025-07-24T03:53:30.0051350Z [3474/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S.o 2025-07-24T03:53:30.0119690Z [3475/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-ibilinear/gen/f32-ibilinear-scalar-c2.c.o 2025-07-24T03:53:30.0648310Z [3476/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-minmax-scalar.c.o 2025-07-24T03:53:30.0720760Z [3477/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-scalar.c.o 2025-07-24T03:53:30.0899630Z [3478/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-igemm/gen/f32-igemm-1x4-relu-scalar.c.o 2025-07-24T03:53:30.0989610Z [3479/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-07-24T03:53:30.1005250Z [3480/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-scalar-u2.c.o 2025-07-24T03:53:30.1184380Z [3481/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-scalar-u4.c.o 2025-07-24T03:53:30.1274570Z [3482/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-rmax/u8-rmax-neon-u16.c.o 2025-07-24T03:53:30.1430870Z [3483/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x16-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-24T03:53:30.1590080Z [3484/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-vclamp/u8-vclamp-neon-u64.c.o 2025-07-24T03:53:30.1987200Z [3485/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-2x4-scalar-int.c.o 2025-07-24T03:53:30.2044340Z [3486/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/gen/x24-transposec-1x2-scalar.c.o 2025-07-24T03:53:30.2129710Z [3487/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x64-gemm-goi-scalar-int-u4.c.o 2025-07-24T03:53:30.2167450Z [3488/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-4x4-aarch64-neon-tbl128.c.o 2025-07-24T03:53:30.2174960Z [3489/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-pack-lh/x32-packlh-neonsme2.c.o 2025-07-24T03:53:30.2177430Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK/src/x32-pack-lh/x32-packlh-neonsme2.c:46:1: warning: non-void function does not return a value [-Wreturn-type] 2025-07-24T03:53:30.2177980Z } 2025-07-24T03:53:30.2178650Z ^ 2025-07-24T03:53:30.2180650Z 1 warning generated. 2025-07-24T03:53:30.2200930Z [3490/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-transposec/gen/x16-transposec-8x8-reuse-dec-zip-neon.c.o 2025-07-24T03:53:30.2365180Z [3491/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x24-transposec/x24-transposec-2x2-neon-tbl64.c.o 2025-07-24T03:53:30.2718310Z [3492/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x16-packw/gen/x16-packw-x8-gemm-goi-neon-ld4lane-u8-prfm.c.o 2025-07-24T03:53:30.2764290Z [3493/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-24T03:53:30.2995880Z [3494/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-neon-ld2lane-u2-prfm.c.o 2025-07-24T03:53:30.3069400Z [3495/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x8s4-gemm-goi-neon-ld4lane-u4-prfm.c.o 2025-07-24T03:53:30.3184260Z [3496/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x2-gemm-goi-scalar-float-u4.c.o 2025-07-24T03:53:30.3292050Z [3497/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-2x4-scalar-int.c.o 2025-07-24T03:53:30.3330700Z [3498/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/gen/x32-transposec-4x4-reuse-dec-zip-neon.c.o 2025-07-24T03:53:30.3461010Z [3499/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-packw/gen/x32-packw-x4-gemm-goi-scalar-float-u4.c.o 2025-07-24T03:53:30.3563110Z [3500/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-neon.c.o 2025-07-24T03:53:30.3564010Z [3501/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-transposec/x32-transposec-4x4-aarch64-neon-tbl128.c.o 2025-07-24T03:53:30.3714890Z [3502/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-scalar.c.o 2025-07-24T03:53:30.3897300Z [3503/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-unpool/x32-unpool-scalar.c.o 2025-07-24T03:53:30.4077770Z [3504/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x2-neon.c.o 2025-07-24T03:53:30.4097670Z [3505/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-scalar.c.o 2025-07-24T03:53:30.4368860Z [3506/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-scalar.c.o 2025-07-24T03:53:30.4401480Z [3507/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x3-neon.c.o 2025-07-24T03:53:30.4408380Z [3508/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-scalar.c.o 2025-07-24T03:53:30.4832770Z [3509/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-x4-neon.c.o 2025-07-24T03:53:30.4885730Z [3510/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-reuse-dec-zip-neon.c.o 2025-07-24T03:53:30.4899570Z [3511/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x32-zip/x32-zip-xm-neon.c.o 2025-07-24T03:53:30.4927120Z [3512/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-2x2-multi-dec-zip-neon.c.o 2025-07-24T03:53:30.5094560Z [3513/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-scalar-u4.c.o 2025-07-24T03:53:30.5266910Z [3514/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x64-transposec/gen/x64-transposec-4x2-scalar-int.c.o 2025-07-24T03:53:30.5396920Z [3515/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-lut/gen/x8-lut-aarch64-neon-tbx128x4-u64.c.o 2025-07-24T03:53:30.5414220Z [3516/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-scalar-f32qp8-u1.c.o 2025-07-24T03:53:30.5664580Z [3517/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-16x16-reuse-dec-zip-neon.c.o 2025-07-24T03:53:30.5755870Z [3518/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packq/x8-packq-aarch64-neon-f32qp8-u2.c.o 2025-07-24T03:53:30.5900670Z [3519/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x16-gemm-goi-scalar-u2.c.o 2025-07-24T03:53:30.6015890Z [3520/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x4-gemm-goi-scalar-u2.c.o 2025-07-24T03:53:30.6026180Z [3521/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x32-gemm-goi-scalar-u2.c.o 2025-07-24T03:53:30.6042290Z [3522/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-neon.c.o 2025-07-24T03:53:30.6198030Z [3523/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-packw/gen/x8-packw-x8-gemm-goi-scalar-u2.c.o 2025-07-24T03:53:30.6340320Z [3524/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-transposec/gen/x8-transposec-2x4-scalar-int.c.o 2025-07-24T03:53:30.6416790Z [3525/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x2-scalar.c.o 2025-07-24T03:53:30.6588300Z [3526/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-scalar.c.o 2025-07-24T03:53:30.6716430Z [3527/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x3-neon.c.o 2025-07-24T03:53:30.6992340Z [3528/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-scalar.c.o 2025-07-24T03:53:30.7045880Z [3529/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-scalar.c.o 2025-07-24T03:53:30.7146900Z [3530/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-scalar-u16.c.o 2025-07-24T03:53:30.7188300Z [3531/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-x4-neon.c.o 2025-07-24T03:53:30.7257100Z [3532/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-copy/xx-copy-scalar-memcpy.c.o 2025-07-24T03:53:30.7265640Z [3533/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/x8-zip/x8-zip-xm-neon.c.o 2025-07-24T03:53:30.7444780Z [3534/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p4-scalar-u16.c.o 2025-07-24T03:53:30.7679920Z [3535/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-64.c.o 2025-07-24T03:53:30.7843170Z [3536/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-pad/xx-pad-p16-neon-u16.c.o 2025-07-24T03:53:30.7943040Z [3537/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-fill/xx-fill-neon-u64.c.o 2025-07-24T03:53:30.7949740Z [3538/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2-k-over-2048.c.o 2025-07-24T03:53:30.8073520Z [3539/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-4.c.o 2025-07-24T03:53:30.8151510Z [3540/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/xx-transposev/xx-transposev-1x1-scalar-memcpy.c.o 2025-07-24T03:53:30.8178330Z [3541/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-16.c.o 2025-07-24T03:53:30.8362280Z [3542/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-32.c.o 2025-07-24T03:53:30.8418820Z [3543/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-64.c.o 2025-07-24T03:53:30.8607920Z [3544/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-2048.c.o 2025-07-24T03:53:30.8648690Z [3545/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/exp2minus-k-over-8.c.o 2025-07-24T03:53:30.8791940Z [3546/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/tables/vlog.c.o 2025-07-24T03:53:30.8897780Z [3547/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar-acc2.c.o 2025-07-24T03:53:30.8959860Z [3548/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-minmax-scalar.c.o 2025-07-24T03:53:30.9201120Z [3549/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-scalar.c.o 2025-07-24T03:53:30.9382540Z [3550/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar.c.o 2025-07-24T03:53:30.9601070Z [3551/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar-acc2.c.o 2025-07-24T03:53:30.9671900Z [3552/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-4p2c-scalar.c.o 2025-07-24T03:53:30.9717120Z [3553/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u4.c.o 2025-07-24T03:53:30.9825200Z [3554/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-5f5m5l1c1s1r-minmax-scalar-acc2.c.o 2025-07-24T03:53:30.9911670Z [3555/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar.c.o 2025-07-24T03:53:30.9997430Z [3556/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:53:31.0309730Z [3557/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x16-minmax-rndnu16-neon-mlal-lane.c.o 2025-07-24T03:53:31.0594850Z [3558/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-24T03:53:31.0627280Z [3559/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:31.0644090Z [3560/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:53:31.0668730Z [3561/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:53:31.0791950Z [3562/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75-prfm.S.o 2025-07-24T03:53:31.0835710Z [3563/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75.S.o 2025-07-24T03:53:31.0863630Z [3564/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:31.1042900Z [3565/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:31.1436140Z [3566/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:31.1639920Z [3567/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-24T03:53:31.1958420Z [3568/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:31.2001500Z [3569/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:31.2053450Z [3570/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:31.2071160Z [3571/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-rndnu16-neon-mlal-lane.c.o 2025-07-24T03:53:31.2075030Z [3572/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:53:31.2077840Z [3573/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:31.2161900Z [3574/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-gemm/gen/qu8-gemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:53:31.2267360Z [3575/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-24T03:53:31.2464000Z [3576/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-1x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:53:31.2874370Z [3577/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75-prfm.S.o 2025-07-24T03:53:31.2935680Z [3578/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-asm-aarch64-neon-mlal-lane-cortex-a75.S.o 2025-07-24T03:53:31.3147700Z [3579/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-scalar.c.o 2025-07-24T03:53:31.3185740Z [3580/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu16-asm-aarch64-neon-mlal-lane-cortex-a53-prfm.S.o 2025-07-24T03:53:31.3318510Z [3581/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-scalar-u4.c.o 2025-07-24T03:53:31.3600270Z [3582/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u32.c.o 2025-07-24T03:53:31.3659450Z [3583/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rdsum/gen/qu8-rdsum-7p7x-neon-u16.c.o 2025-07-24T03:53:31.3777250Z [3584/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-3x8-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:53:31.3804750Z [3585/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-rsum/gen/qu8-rsum-neon-u32-acc2.c.o 2025-07-24T03:53:31.3892680Z [3586/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-igemm/gen/qu8-igemm-4x16-minmax-rndnu-neon-mlal-lane.c.o 2025-07-24T03:53:31.4182080Z [3587/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u16.c.o 2025-07-24T03:53:31.4378150Z [3588/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u4.c.o 2025-07-24T03:53:31.4639480Z [3589/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u16.c.o 2025-07-24T03:53:31.4649060Z [3590/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-neon-ld64-u32.c.o 2025-07-24T03:53:31.4697660Z [3591/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vadd/gen/qu8-vadd-minmax-scalar-u1.c.o 2025-07-24T03:53:31.4762900Z [3592/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u1.c.o 2025-07-24T03:53:31.4864640Z [3593/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u1.c.o 2025-07-24T03:53:31.4880360Z [3594/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-neon-ld64-u32.c.o 2025-07-24T03:53:31.4921850Z [3595/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vaddc/gen/qu8-vaddc-minmax-scalar-u4.c.o 2025-07-24T03:53:31.5114060Z [3596/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-scalar-u4.c.o 2025-07-24T03:53:31.5267160Z [3597/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vcvt/gen/qu8-vcvt-neon-u32.c.o 2025-07-24T03:53:31.5689960Z [3598/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-andxor-u4.c.o 2025-07-24T03:53:31.5817510Z [3599/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-scalar-select-u4.c.o 2025-07-24T03:53:31.5945320Z [3600/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-fp32-scalar-u4.c.o 2025-07-24T03:53:31.6045040Z [3601/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vlrelu/gen/qu8-vlrelu-neon-u32.c.o 2025-07-24T03:53:31.6079540Z [3602/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-scalar.c.o 2025-07-24T03:53:31.6085300Z [3603/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-fp32-scalar-u4.c.o 2025-07-24T03:53:31.6248000Z [3604/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmul/gen/qu8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-07-24T03:53:31.6274490Z [3605/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-vmulc/gen/qu8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-07-24T03:53:31.6433310Z [3606/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s32-f32-vcvt/gen/s32-f32-vcvt-neon.c.o 2025-07-24T03:53:31.6460890Z [3607/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c16.c.o 2025-07-24T03:53:31.6853700Z [3608/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-neon-c8.c.o 2025-07-24T03:53:31.7193370Z [3609/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-neon-u64.c.o 2025-07-24T03:53:31.7325480Z [3610/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-ibilinear/gen/s8-ibilinear-scalar-c1.c.o 2025-07-24T03:53:31.7326220Z [3611/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-scalar-c1.c.o 2025-07-24T03:53:31.7353500Z [3612/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-maxpool/s8-maxpool-9p8x-minmax-neon-c16.c.o 2025-07-24T03:53:31.7359100Z [3613/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/s8-vclamp/s8-vclamp-scalar-u4.c.o 2025-07-24T03:53:31.7608370Z [3614/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-maxpool/u8-maxpool-9p8x-minmax-neon-c16.c.o 2025-07-24T03:53:31.7610950Z [3615/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-lut32norm/u8-lut32norm-scalar.c.o 2025-07-24T03:53:31.7791960Z [3616/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c16.c.o 2025-07-24T03:53:31.8032560Z [3617/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-neon-c8.c.o 2025-07-24T03:53:31.8424010Z [3618/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/u8-ibilinear/gen/u8-ibilinear-scalar-c1.c.o 2025-07-24T03:53:31.8531220Z [3619/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:31.8562060Z [3620/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:31.8697840Z [3621/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:53:31.8703060Z [3622/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:31.8713240Z [3623/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x16c4-minmax-fp32-neondot.c.o 2025-07-24T03:53:31.8932320Z [3624/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:31.8950790Z [3625/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:31.9271930Z [3626/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-07-24T03:53:31.9355350Z [3627/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-07-24T03:53:31.9509030Z [3628/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-24T03:53:31.9678040Z [3629/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-07-24T03:53:32.0032840Z [3630/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-07-24T03:53:32.0054900Z [3631/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-24T03:53:32.0172310Z [3632/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:32.0252880Z [3633/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:32.0271840Z [3634/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:32.0408710Z [3635/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:53:32.0411170Z [3636/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-24T03:53:32.0485040Z [3637/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-1x8c4-minmax-fp32-neondot.c.o 2025-07-24T03:53:32.0779740Z [3638/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-07-24T03:53:32.0798250Z [3639/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2025-07-24T03:53:32.0836580Z [3640/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2025-07-24T03:53:32.1012680Z [3641/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:32.1018720Z [3642/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:53:32.1823400Z [3643/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-07-24T03:53:32.1846290Z [3644/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:32.1864140Z [3645/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16c4-minmax-fp32-neondot.c.o 2025-07-24T03:53:32.2001890Z [3646/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x8c4-minmax-fp32-neondot.c.o 2025-07-24T03:53:32.2039910Z [3647/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:32.2132170Z [3648/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x16-minmax-fp32-neonv8-mlal-lane.c.o 2025-07-24T03:53:32.2388200Z [3649/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-gemm/gen/qs8-qc8w-gemm-4x16c4-minmax-fp32-neondot.c.o 2025-07-24T03:53:32.2488550Z [3650/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:53:32.2592360Z [3651/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-24T03:53:32.2596570Z [3652/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c2s4-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:32.2597540Z [3653/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-07-24T03:53:32.2944620Z [3654/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-cortex-a53-prfm.S.o 2025-07-24T03:53:32.2961850Z [3655/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-1x8c4-minmax-fp32-neondot.c.o 2025-07-24T03:53:32.2974330Z [3656/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x2-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:32.3242270Z [3657/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal-prfm.S.o 2025-07-24T03:53:32.3297950Z [3658/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c8-minmax-fp32-asm-aarch64-neon-mlal.S.o 2025-07-24T03:53:32.3334540Z [3659/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-cortex-a53.S.o 2025-07-24T03:53:32.3353990Z [3660/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16-minmax-fp32-asm-aarch64-neon-mlal-lane-ld64.S.o 2025-07-24T03:53:32.3521580Z [3661/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neonv8-mlal.c.o 2025-07-24T03:53:32.3581540Z [3662/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-2x8c2s4-minmax-fp32-neon-mlal.c.o 2025-07-24T03:53:32.3938090Z [3663/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-cortex-a55.S.o 2025-07-24T03:53:32.3948270Z [3664/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-3x4-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:32.4148790Z [3665/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-asm-aarch64-neondot-ld128.S.o 2025-07-24T03:53:32.4532980Z [3666/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qu8-packw/gen/qs8-qu8-packw-x16c8-gemm-goi-scalar.c.o 2025-07-24T03:53:32.4534950Z [3667/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-minmax-fp32-scalar-u1-acc1.c.o 2025-07-24T03:53:32.4717370Z [3668/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x16c4-minmax-fp32-neondot.c.o 2025-07-24T03:53:32.4856090Z [3669/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-scalar-u4.c.o 2025-07-24T03:53:32.4966910Z [3670/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neon-u32-acc2.c.o 2025-07-24T03:53:32.5039020Z [3671/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-igemm/gen/qs8-qc8w-igemm-4x8c4-minmax-fp32-neondot.c.o 2025-07-24T03:53:32.5253790Z [3672/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rdsum/gen/qs8-rdsum-7p7x-minmax-fp32-neon-c32.c.o 2025-07-24T03:53:32.5319490Z [3673/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u16.c.o 2025-07-24T03:53:32.5420850Z [3674/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-rsum/gen/qs8-rsum-neondot-u32-acc2.c.o 2025-07-24T03:53:32.5423470Z [3675/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-neon-ld64-u32.c.o 2025-07-24T03:53:32.5664030Z [3676/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u1.c.o 2025-07-24T03:53:32.5831300Z [3677/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vadd/gen/qs8-vadd-minmax-scalar-u4.c.o 2025-07-24T03:53:32.5862550Z [3678/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u16.c.o 2025-07-24T03:53:32.6007820Z [3679/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-neon-ld64-u32.c.o 2025-07-24T03:53:32.6157740Z [3680/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u1.c.o 2025-07-24T03:53:32.6412760Z [3681/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-scalar-u4.c.o 2025-07-24T03:53:32.6515560Z [3682/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-scalar-imagic-c1.c.o 2025-07-24T03:53:32.6530850Z [3683/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u4.c.o 2025-07-24T03:53:32.6601780Z [3684/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vaddc/gen/qs8-vaddc-minmax-scalar-u1.c.o 2025-07-24T03:53:32.6715200Z [3685/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vcvt/gen/qs8-vcvt-neon-u32.c.o 2025-07-24T03:53:32.6845490Z [3686/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-andxor-u4.c.o 2025-07-24T03:53:32.7083400Z [3687/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-scalar-select-u4.c.o 2025-07-24T03:53:32.7310150Z [3688/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vlrelu/gen/qs8-vlrelu-neon-u32.c.o 2025-07-24T03:53:32.7315350Z [3689/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-rndnu-neon-ld64-u16.c.o 2025-07-24T03:53:32.7515740Z [3690/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-scalar-imagic-c1.c.o 2025-07-24T03:53:32.7574650Z [3691/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmul/gen/qs8-vmul-minmax-fp32-scalar-u4.c.o 2025-07-24T03:53:32.7725900Z [3692/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-fp32-scalar-u4.c.o 2025-07-24T03:53:32.7753600Z [3693/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-vmulc/gen/qs8-vmulc-minmax-rndnu-neon-ld64-u16.c.o 2025-07-24T03:53:32.7976880Z [3694/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9p8x-minmax-fp32-neon-c8.c.o 2025-07-24T03:53:32.8191460Z [3695/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:32.8206010Z [3696/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-avgpool/qu8-avgpool-9x-minmax-fp32-neon-c8.c.o 2025-07-24T03:53:32.8693260Z [3697/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p8c-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:53:32.8794450Z [3698/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:32.8897370Z [3699/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:32.8997300Z [3700/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:32.9102310Z [3701/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:32.9204170Z [3702/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-9p16c-minmax-rndnu-neon-mul8.c.o 2025-07-24T03:53:32.9215670Z [3703/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-neon-u32.c.o 2025-07-24T03:53:32.9286590Z [3704/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-all.dir/src/f32-dwconv/gen/f32-dwconv-6f6m7l1c1s1r-minmax-scalar-acc2.c.o 2025-07-24T03:53:32.9566070Z [3705/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-f32-vcvt/gen/qu8-f32-vcvt-scalar-u1.c.o 2025-07-24T03:53:32.9851560Z [3706/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u1.c.o 2025-07-24T03:53:32.9958670Z [3707/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neon-rr2-lut64-p2-nr2recps-u8.c.o 2025-07-24T03:53:33.0008990Z [3708/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-scalar-rsqrt-u4.c.o 2025-07-24T03:53:33.0036320Z [3709/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-scalar-rr2-lut64-p2-div-u2.c.o 2025-07-24T03:53:33.0244520Z [3710/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vrsqrt/gen/f32-vrsqrt-neon-rsqrt-u16.c.o 2025-07-24T03:53:33.0249460Z [3711/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsigmoid/gen/f32-vsigmoid-neonfma-rr1-lut64-p2-nr2recps-u16.c.o 2025-07-24T03:53:33.0432910Z [3712/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-aarch64-neon-sqrt-u4.c.o 2025-07-24T03:53:33.0631000Z [3713/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qu8-dwconv/gen/qu8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:33.0735920Z [3714/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vsqrt/gen/f32-vsqrt-scalar-sqrt-u1.c.o 2025-07-24T03:53:33.0739300Z [3715/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-neon.c.o 2025-07-24T03:53:33.0987870Z [3716/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-neon-rational-9-8-div.c.o 2025-07-24T03:53:33.1015730Z [3717/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vabs-scalar.c.o 2025-07-24T03:53:33.1049200Z [3718/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vtanh/gen/f32-vtanh-scalar-rational-9-8-div.c.o 2025-07-24T03:53:33.1514470Z [3719/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-scalar.c.o 2025-07-24T03:53:33.1534380Z [3720/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vneg-neon.c.o 2025-07-24T03:53:33.1570580Z [3721/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-scalar.c.o 2025-07-24T03:53:33.1736320Z [3722/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/f32-vunary/gen/f32-vsqr-neon.c.o 2025-07-24T03:53:33.1815090Z [3723/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c.o 2025-07-24T03:53:33.1815990Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c:24:1: warning: non-void function does not return a value [-Wreturn-type] 2025-07-24T03:53:33.1819750Z } 2025-07-24T03:53:33.1821040Z ^ 2025-07-24T03:53:33.1822030Z /Users/ec2-user/runner/_work/pytorch/pytorch/third_party/XNNPACK/src/pf32-gemm/pf32-gemm-32x32-minmax-neonsme2.c:34:1: warning: non-void function does not return a value [-Wreturn-type] 2025-07-24T03:53:33.1825510Z } 2025-07-24T03:53:33.1827860Z ^ 2025-07-24T03:53:33.1829900Z 2 warnings generated. 2025-07-24T03:53:33.2630620Z [3724/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:53:33.2633120Z [3725/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.2683540Z [3726/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-6x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:53:33.2715210Z [3727/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:53:33.2754170Z [3728/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qb4w-gemm/gen/qd8-f16-qb4w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.2872530Z [3729/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.2924170Z [3730/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-6x16-minmax-neonfp16arith-mlal-lane.c.o 2025-07-24T03:53:33.3062600Z [3731/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc4w-gemm/gen/qd8-f16-qc4w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.3221020Z [3732/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c2s4-minmax-neonfp16arith.c.o 2025-07-24T03:53:33.3498940Z [3733/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-07-24T03:53:33.3527850Z [3734/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.3630400Z [3735/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondotfp16arith-cortex-a55.S.o 2025-07-24T03:53:33.4277470Z [3736/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.4313410Z [3737/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-1x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.4359840Z [3738/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.4373630Z [3739/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-07-24T03:53:33.4407920Z [3740/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-07-24T03:53:33.4446730Z [3741/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-4x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.4551050Z [3742/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-gemm/gen/qd8-f16-qc8w-gemm-2x8c2s4-minmax-neonfp16arith.c.o 2025-07-24T03:53:33.4553640Z [3743/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c2s4-minmax-neonfp16arith-mlal.c.o 2025-07-24T03:53:33.4561530Z [3744/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-1x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.5142620Z [3745/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-2x8c2s4-minmax-neonfp16arith-mlal.c.o 2025-07-24T03:53:33.5728480Z [3746/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x4-minmax-scalar.c.o 2025-07-24T03:53:33.5783130Z [3747/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x8c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.5843370Z [3748/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-4x16c4-minmax-neondot.c.o 2025-07-24T03:53:33.5859210Z [3749/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:33.5929490Z [3750/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f16-qc8w-igemm/gen/qd8-f16-qc8w-igemm-4x16c4-minmax-neondotfp16arith.c.o 2025-07-24T03:53:33.6119440Z [3751/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x16c4-minmax-neondot.c.o 2025-07-24T03:53:33.6317850Z [3752/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:33.6404530Z [3753/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:33.6565250Z [3754/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x16c4-minmax-neondot.c.o 2025-07-24T03:53:33.6850100Z [3755/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-1x4-minmax-scalar.c.o 2025-07-24T03:53:33.7051410Z [3756/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qb4w-gemm/gen/qd8-f32-qb4w-gemm-1x4-minmax-scalar.c.o 2025-07-24T03:53:33.7152570Z [3757/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x4-minmax-scalar.c.o 2025-07-24T03:53:33.7199920Z [3758/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-4x16c4-minmax-neondot.c.o 2025-07-24T03:53:33.7237020Z [3759/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc4w-gemm/gen/qd8-f32-qc4w-gemm-6x16-minmax-neon-mlal-lane.c.o 2025-07-24T03:53:33.7475700Z [3760/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x16c4-minmax-neondot.c.o 2025-07-24T03:53:33.7476720Z [3761/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x2-minmax-scalar.c.o 2025-07-24T03:53:33.7599860Z [3762/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x4-minmax-scalar.c.o 2025-07-24T03:53:33.8066410Z [3763/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-07-24T03:53:33.8177060Z [3764/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-07-24T03:53:33.8200450Z [3765/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x2-minmax-scalar.c.o 2025-07-24T03:53:33.8354030Z [3766/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c4-minmax-neondot.c.o 2025-07-24T03:53:33.8382140Z [3767/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-2x8c2s4-minmax-neon-mlal.c.o 2025-07-24T03:53:33.8386690Z [3768/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-1x8c2s4-minmax-neon-mlal.c.o 2025-07-24T03:53:33.8548150Z [3769/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x4-minmax-scalar.c.o 2025-07-24T03:53:33.9042260Z [3770/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x16c4-minmax-neondot.c.o 2025-07-24T03:53:33.9226440Z [3771/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-cortex-a55.S.o 2025-07-24T03:53:33.9307880Z [3772/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x16c4-minmax-neondot.c.o 2025-07-24T03:53:33.9312560Z [3773/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x2-minmax-scalar.c.o 2025-07-24T03:53:33.9374700Z [3774/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-gemm/gen/qd8-f32-qc8w-gemm-4x8c4-minmax-neondot.c.o 2025-07-24T03:53:33.9628470Z [3775/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x2-minmax-scalar.c.o 2025-07-24T03:53:33.9856480Z [3776/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c2s4-minmax-neon-mlal.c.o 2025-07-24T03:53:33.9956730Z [3777/5147] Building ASM object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-asm-aarch64-neondot-ld128.S.o 2025-07-24T03:53:34.0134310Z [3778/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x8c4-minmax-neondot.c.o 2025-07-24T03:53:34.0137320Z [3779/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-1x4-minmax-scalar.c.o 2025-07-24T03:53:34.0302090Z [3780/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qb4w-gemm/qp8-f32-qb4w-gemm-minmax-1x4c16s2-aarch64-neondot.c.o 2025-07-24T03:53:34.0421120Z [3781/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x4-minmax-scalar.c.o 2025-07-24T03:53:34.0553840Z [3782/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-2x8c2s4-minmax-neon-mlal.c.o 2025-07-24T03:53:34.0588240Z [3783/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x8c4-minmax-neondot.c.o 2025-07-24T03:53:34.0589330Z [3784/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qd8-f32-qc8w-igemm/gen/qd8-f32-qc8w-igemm-4x16c4-minmax-neondot.c.o 2025-07-24T03:53:34.0590480Z [3785/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qb4w-gemm/qp8-f32-qb4w-gemm-minmax-1x8c16s2-aarch64-neondot.c.o 2025-07-24T03:53:34.1004580Z [3786/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qp8-f32-qc4w-gemm/qp8-f32-qc4w-gemm-minmax-1x8c16s2-aarch64-neondot.c.o 2025-07-24T03:53:34.1292660Z [3787/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:34.1394720Z [3788/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p16c-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:34.1402100Z [3789/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:34.1511590Z [3790/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:34.1718800Z [3791/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:34.1851220Z [3792/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:34.2050250Z [3793/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-25p8c-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:34.2066750Z [3794/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:34.2177880Z [3795/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-dwconv/gen/qs8-dwconv-9p16c-minmax-rndnu-neon-mla8-ld64.c.o 2025-07-24T03:53:34.2300370Z [3796/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f16-vcvt/gen/qs8-f16-vcvt-neonfp16arith-u32.c.o 2025-07-24T03:53:34.2426630Z [3797/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u4.c.o 2025-07-24T03:53:34.2491740Z [3798/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-scalar-u1.c.o 2025-07-24T03:53:34.2596550Z [3799/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p16c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:53:34.2699280Z [3800/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-f32-vcvt/gen/qs8-f32-vcvt-neon-u32.c.o 2025-07-24T03:53:34.2813980Z [3801/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x16c8-gemm-goi-scalar.c.o 2025-07-24T03:53:34.3223330Z [3802/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:34.3275300Z [3803/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-packw/gen/qs8-packw-x64c4-gemm-goi-scalar.c.o 2025-07-24T03:53:34.3347390Z [3804/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:34.3606290Z [3805/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p1c-minmax-fp32-scalar-fmagic.c.o 2025-07-24T03:53:34.3666060Z [3806/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neonv8-mla8-ld64.c.o 2025-07-24T03:53:34.3758900Z [3807/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p8c-minmax-fp32-neon-mla8-ld64.c.o 2025-07-24T03:53:34.3785810Z [3808/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-25p2c-minmax-fp32-scalar-lrintf.c.o 2025-07-24T03:53:34.3806350Z [3809/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p2c-minmax-fp32-scalar-imagic.c.o 2025-07-24T03:53:34.3862320Z [3810/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neonv8-mla8-ld128.c.o 2025-07-24T03:53:34.3876060Z [3811/5147] Building C object confu-deps/XNNPACK/CMakeFiles/microkernels-prod.dir/src/qs8-qc8w-dwconv/gen/qs8-qc8w-dwconv-3p16c-minmax-fp32-neon-mla8-ld128.c.o 2025-07-24T03:53:34.5921250Z [3812/5147] Linking C static library lib/libmicrokernels-prod.a 2025-07-24T03:53:34.6387290Z [3813/5147] Generating build_identifier.c 2025-07-24T03:53:35.2333770Z [3814/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nn_functions.cpp.o 2025-07-24T03:53:35.2714170Z [3815/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_0.cpp.o 2025-07-24T03:53:35.2812240Z [3816/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_variable_methods.cpp.o 2025-07-24T03:53:35.3094620Z [3817/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_1.cpp.o 2025-07-24T03:53:35.3450420Z [3818/5147] Linking C static library lib/libmicrokernels-all.a 2025-07-24T03:53:35.4441950Z [3819/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_0.cpp.o 2025-07-24T03:53:35.4664280Z [3820/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_1.cpp.o 2025-07-24T03:53:35.4793850Z [3821/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_3.cpp.o 2025-07-24T03:53:35.4999100Z [3822/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_4.cpp.o 2025-07-24T03:53:35.7699400Z [3823/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DataLoader.cpp.o 2025-07-24T03:53:35.7979290Z [3824/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_nested_functions.cpp.o 2025-07-24T03:53:35.8250140Z [3825/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_functions_2.cpp.o 2025-07-24T03:53:35.8321130Z [3826/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_linalg_functions.cpp.o 2025-07-24T03:53:35.8561470Z [3827/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_fft_functions.cpp.o 2025-07-24T03:53:35.8696880Z [3828/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_return_types.cpp.o 2025-07-24T03:53:35.8862730Z [3829/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_torch_functions_2.cpp.o 2025-07-24T03:53:35.9908510Z [3830/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_sparse_functions.cpp.o 2025-07-24T03:53:36.1579510Z [3831/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_enum_tag.cpp.o 2025-07-24T03:53:36.2205030Z [3832/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/generated/python_special_functions.cpp.o 2025-07-24T03:53:36.2246390Z [3833/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DeviceAccelerator.cpp.o 2025-07-24T03:53:36.3198300Z [3834/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Dtype.cpp.o 2025-07-24T03:53:36.3300220Z [3835/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Device.cpp.o 2025-07-24T03:53:36.3976920Z [3836/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Layout.cpp.o 2025-07-24T03:53:36.4378040Z [3837/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/MemoryFormat.cpp.o 2025-07-24T03:53:36.6141450Z [3838/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/QScheme.cpp.o 2025-07-24T03:53:36.6465830Z [3839/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/python_dimname.cpp.o 2025-07-24T03:53:36.6835610Z [3840/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/DynamicTypes.cpp.o 2025-07-24T03:53:36.7105420Z [3841/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Generator.cpp.o 2025-07-24T03:53:36.7521100Z [3842/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Size.cpp.o 2025-07-24T03:53:36.8831620Z [3843/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Exceptions.cpp.o 2025-07-24T03:53:37.1240850Z [3844/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/PyInterpreter.cpp.o 2025-07-24T03:53:37.1846480Z [3845/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Module.cpp.o 2025-07-24T03:53:37.3373420Z [3846/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Storage.cpp.o 2025-07-24T03:53:37.3549550Z [3847/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageSharing.cpp.o 2025-07-24T03:53:37.3685910Z [3848/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Stream.cpp.o 2025-07-24T03:53:37.3856550Z [3849/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/StorageMethods.cpp.o 2025-07-24T03:53:37.4002170Z [3850/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/TypeInfo.cpp.o 2025-07-24T03:53:37.4166800Z [3851/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/Event.cpp.o 2025-07-24T03:53:37.7222960Z [3852/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/api/src/python/init.cpp.o 2025-07-24T03:53:37.7295850Z [3853/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/profiler_python.cpp.o 2025-07-24T03:53:37.7297420Z [3854/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_anomaly_mode.cpp.o 2025-07-24T03:53:37.7688690Z [3855/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/functions/init.cpp.o 2025-07-24T03:53:37.8881820Z [3856/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_cpp_function.cpp.o 2025-07-24T03:53:38.1641290Z [3857/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/init.cpp.o 2025-07-24T03:53:38.1921670Z [3858/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_saved_variable_hooks.cpp.o 2025-07-24T03:53:38.2573090Z [3859/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_engine.cpp.o 2025-07-24T03:53:38.2848300Z [3860/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_hook.cpp.o 2025-07-24T03:53:38.4234440Z [3861/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_legacy_variable.cpp.o 2025-07-24T03:53:38.4590070Z [3862/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable_indexing.cpp.o 2025-07-24T03:53:38.5156440Z [3863/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_function.cpp.o 2025-07-24T03:53:38.5200210Z [3864/5147] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpython_defs.c.o 2025-07-24T03:53:38.5491930Z [3865/5147] Building C object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame.c.o 2025-07-24T03:53:38.5647730Z [3866/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cache_entry.cpp.o 2025-07-24T03:53:38.6202690Z [3867/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_nested_functions_manual.cpp.o 2025-07-24T03:53:38.6322620Z [3868/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/cpp_shim.cpp.o 2025-07-24T03:53:38.8199410Z [3869/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_torch_functions_manual.cpp.o 2025-07-24T03:53:38.8703100Z [3870/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/eval_frame_cpp.cpp.o 2025-07-24T03:53:38.9273090Z [3871/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/autograd/python_variable.cpp.o 2025-07-24T03:53:38.9690890Z [3872/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/framelocals_mapping.cpp.o 2025-07-24T03:53:38.9832840Z [3873/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/extra_state.cpp.o 2025-07-24T03:53:38.9975620Z [3874/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/utils.cpp.o 2025-07-24T03:53:39.0554760Z [3875/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/python_compiled_autograd.cpp.o 2025-07-24T03:53:39.0993210Z [3876/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/fx/node.cpp.o 2025-07-24T03:53:39.1280030Z [3877/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/init.cpp.o 2025-07-24T03:53:39.2777810Z [3878/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/example_upgraders.cpp.o 2025-07-24T03:53:39.2967920Z [3879/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/upgrader.cpp.o 2025-07-24T03:53:39.4714850Z [3880/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/export/pybind.cpp.o 2025-07-24T03:53:39.5050500Z [3881/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/static_cuda_launcher.cpp.o 2025-07-24T03:53:39.5532490Z [3882/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/dynamo/guards.cpp.o 2025-07-24T03:53:39.5637460Z [3883/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_package/pybind.cpp.o 2025-07-24T03:53:39.6095080Z [3884/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mtia/Module.cpp.o 2025-07-24T03:53:39.6459630Z [3885/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_runner/pybind.cpp.o 2025-07-24T03:53:39.6769180Z [3886/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/functorch/init.cpp.o 2025-07-24T03:53:39.7255770Z [3887/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/mps/Module.cpp.o 2025-07-24T03:53:39.9127650Z [3888/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/resize_storage_bytes.cpp.o 2025-07-24T03:53:39.9893930Z [3889/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_holder.cpp.o 2025-07-24T03:53:40.0353520Z [3890/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/inductor/aoti_eager/kernel_meta_info.cpp.o 2025-07-24T03:53:40.1816150Z [3891/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/deduplicate_initializers.cpp.o 2025-07-24T03:53:40.2592640Z [3892/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_fold.cpp.o 2025-07-24T03:53:40.3158660Z [3893/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/backends/backend_init.cpp.o 2025-07-24T03:53:40.3182390Z [3894/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/cast_all_constant_to_floating.cpp.o 2025-07-24T03:53:40.3831230Z [3895/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eval_peephole.cpp.o 2025-07-24T03:53:40.4136490Z [3896/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx.cpp.o 2025-07-24T03:53:40.4487890Z [3897/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/constant_map.cpp.o 2025-07-24T03:53:40.5111570Z [3898/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/init.cpp.o 2025-07-24T03:53:40.6179260Z [3899/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/peephole.cpp.o 2025-07-24T03:53:40.6191800Z [3900/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/eliminate_unused_items.cpp.o 2025-07-24T03:53:40.7106700Z [3901/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_substitution.cpp.o 2025-07-24T03:53:40.7307080Z [3902/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/list_model_parameters.cpp.o 2025-07-24T03:53:40.7872290Z [3903/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/helper.cpp.o 2025-07-24T03:53:40.8344500Z [3904/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/prepare_division_for_onnx.cpp.o 2025-07-24T03:53:40.8445200Z [3905/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/onnx_log.cpp.o 2025-07-24T03:53:40.8497980Z [3906/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/preprocess_for_onnx.cpp.o 2025-07-24T03:53:41.0104600Z [3907/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/scalar_type_analysis.cpp.o 2025-07-24T03:53:41.1078860Z [3908/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/fixup_onnx_controlflow.cpp.o 2025-07-24T03:53:41.1580010Z [3909/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.cpp.o 2025-07-24T03:53:41.1636810Z [3910/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/naming.cpp.o 2025-07-24T03:53:41.1882230Z [3911/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/function_extraction.cpp.o 2025-07-24T03:53:41.2320870Z [3912/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/unpack_quantized_weights.cpp.o 2025-07-24T03:53:41.3401760Z [3913/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/pybind_utils.cpp.o 2025-07-24T03:53:41.3674190Z [3914/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.cpp.o 2025-07-24T03:53:41.5020930Z [3915/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/common.cpp.o 2025-07-24T03:53:41.5730660Z [3916/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/shape_type_inference.cpp.o 2025-07-24T03:53:41.6000220Z [3917/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.cpp.o 2025-07-24T03:53:41.7048580Z [3918/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_dict.cpp.o 2025-07-24T03:53:41.7144100Z [3919/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_custom_class.cpp.o 2025-07-24T03:53:41.7546240Z [3920/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.cpp.o 2025-07-24T03:53:41.9058650Z [3921/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_arg_flatten.cpp.o 2025-07-24T03:53:41.9334040Z [3922/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_list.cpp.o 2025-07-24T03:53:41.9358340Z [3923/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/tree_views.cpp.o 2025-07-24T03:53:42.1261000Z [3924/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_interpreter.cpp.o 2025-07-24T03:53:42.1489110Z [3925/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/frontend/concrete_module_type.cpp.o 2025-07-24T03:53:42.2334990Z [3926/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tree_views.cpp.o 2025-07-24T03:53:42.2993760Z [3927/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_ir.cpp.o 2025-07-24T03:53:42.3181170Z [3928/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_sugared_value.cpp.o 2025-07-24T03:53:42.4603980Z [3929/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/python_tracer.cpp.o 2025-07-24T03:53:42.4906670Z [3930/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/runtime/static/init.cpp.o 2025-07-24T03:53:42.5289480Z [3931/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/multiprocessing/init.cpp.o 2025-07-24T03:53:42.5382650Z [3932/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/monitor/python_init.cpp.o 2025-07-24T03:53:42.5990990Z [3933/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/python/script_init.cpp.o 2025-07-24T03:53:42.7456140Z [3934/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/init.cpp.o 2025-07-24T03:53:42.7694000Z [3935/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/profiler/python/combined_traceback.cpp.o 2025-07-24T03:53:42.8964310Z [3936/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/jit/tensorexpr/tensorexpr_init.cpp.o 2025-07-24T03:53:42.9906090Z [3937/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/onnx/init.cpp.o 2025-07-24T03:53:43.0323150Z [3938/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/serialization.cpp.o 2025-07-24T03:53:43.1532300Z [3939/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/device_lazy_init.cpp.o 2025-07-24T03:53:43.1688300Z [3940/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/object_ptr.cpp.o 2025-07-24T03:53:43.2134630Z [3941/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/invalid_arguments.cpp.o 2025-07-24T03:53:43.2627240Z [3942/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/tensor/python_tensor.cpp.o 2025-07-24T03:53:43.3678200Z [3943/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/init.cpp.o 2025-07-24T03:53:43.4682230Z [3944/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/throughput_benchmark.cpp.o 2025-07-24T03:53:43.4884500Z [3945/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils.cpp.o 2025-07-24T03:53:43.4984330Z [3946/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pyobject_preservation.cpp.o 2025-07-24T03:53:43.6084200Z [3947/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_symnode.cpp.o 2025-07-24T03:53:43.6382980Z [3948/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/structseq.cpp.o 2025-07-24T03:53:43.6808840Z [3949/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/pybind.cpp.o 2025-07-24T03:53:43.7529740Z [3950/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/nested.cpp.o 2025-07-24T03:53:43.8491370Z [3951/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_arg_parser.cpp.o 2025-07-24T03:53:43.8863950Z [3952/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/python_dispatch.cpp.o 2025-07-24T03:53:43.9467740Z [3953/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_dtypes.cpp.o 2025-07-24T03:53:43.9646520Z [3954/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_layouts.cpp.o 2025-07-24T03:53:44.0397500Z [3955/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_qschemes.cpp.o 2025-07-24T03:53:44.0497730Z [3956/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_memoryformats.cpp.o 2025-07-24T03:53:44.2250610Z [3957/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_apply.cpp.o 2025-07-24T03:53:44.2843560Z [3958/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_types.cpp.o 2025-07-24T03:53:44.3165980Z [3959/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/verbose.cpp.o 2025-07-24T03:53:44.3389830Z [3960/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/cpu/Module.cpp.o 2025-07-24T03:53:44.3572920Z [3961/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/disable_torch_function.cpp.o 2025-07-24T03:53:44.4701520Z [3962/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_list.cpp.o 2025-07-24T03:53:44.5171710Z [3963/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_new.cpp.o 2025-07-24T03:53:44.5362660Z [3964/5147] Building C object functorch/CMakeFiles/functorch.dir/csrc/dim/dim_opcode.c.o 2025-07-24T03:53:44.5393730Z [3965/5147] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/shm.dir/core.cpp.o 2025-07-24T03:53:44.5395380Z [3966/5147] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/dim/dim.cpp.o 2025-07-24T03:53:44.5599510Z [3967/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/instruction_counter/Module.cpp.o 2025-07-24T03:53:44.5629300Z [3968/5147] Building CXX object caffe2/torch/lib/libshm/CMakeFiles/torch_shm_manager.dir/manager.cpp.o 2025-07-24T03:53:44.6566050Z [3969/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/utils/tensor_numpy.cpp.o 2025-07-24T03:53:44.6694190Z [3970/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/python_util.cpp.o 2025-07-24T03:53:44.8371950Z [3971/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorGeometry.cpp.o 2025-07-24T03:53:44.8867060Z [3972/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/EmptyTensor.cpp.o 2025-07-24T03:53:44.8906360Z [3973/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Context.cpp.o 2025-07-24T03:53:44.9878340Z [3974/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ConjugateFallback.cpp.o 2025-07-24T03:53:45.1116730Z [3975/5147] Building CXX object caffe2/torch/CMakeFiles/torch_python.dir/csrc/lazy/python/init.cpp.o 2025-07-24T03:53:45.1312780Z [3976/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalPythonObjects.cpp.o 2025-07-24T03:53:45.1692560Z [3977/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DeviceAccelerator.cpp.o 2025-07-24T03:53:45.2126580Z [3978/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DLConvertor.cpp.o 2025-07-24T03:53:45.2135560Z [3979/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/AccumulateType.cpp.o 2025-07-24T03:53:45.2652520Z [3980/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CachedTensorUtils.cpp.o 2025-07-24T03:53:45.3408000Z [3981/5147] Building CXX object functorch/CMakeFiles/functorch.dir/csrc/init_dim_only.cpp.o 2025-07-24T03:53:45.3909310Z [3982/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CPUGeneratorImpl.cpp.o 2025-07-24T03:53:45.4211860Z [3983/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FuncTorchTLS.cpp.o 2025-07-24T03:53:45.4917440Z [3984/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Dispatch.cpp.o 2025-07-24T03:53:45.5576540Z [3985/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ExpandUtils.cpp.o 2025-07-24T03:53:45.5837590Z [3986/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ThreadLocalState.cpp.o 2025-07-24T03:53:45.5941600Z [3987/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalizeFallbackKernel.cpp.o 2025-07-24T03:53:45.5961000Z [3988/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/DynamicLibrary.cpp.o 2025-07-24T03:53:45.6685390Z [3989/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorUtils.cpp.o 2025-07-24T03:53:45.7514200Z [3990/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalStorageImpl.cpp.o 2025-07-24T03:53:45.7614450Z [3991/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorMeta.cpp.o 2025-07-24T03:53:45.8373430Z [3992/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalTensorWrapper.cpp.o 2025-07-24T03:53:45.9437280Z [3993/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIndexing.cpp.o 2025-07-24T03:53:45.9718180Z [3994/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorNames.cpp.o 2025-07-24T03:53:46.0076710Z [3995/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/TensorIterator.cpp.o 2025-07-24T03:53:46.0582020Z [3996/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedTensorImpl.cpp.o 2025-07-24T03:53:46.1020310Z [3997/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapMode.cpp.o 2025-07-24T03:53:46.1371940Z [3998/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/FunctionalInverses.cpp.o 2025-07-24T03:53:46.2229190Z [3999/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MapAllocator.cpp.o 2025-07-24T03:53:46.2759960Z [4000/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Utils.cpp.o 2025-07-24T03:53:46.2916090Z [4001/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SequenceNumber.cpp.o 2025-07-24T03:53:46.3028780Z [4002/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/MemoryOverlap.cpp.o 2025-07-24T03:53:46.4903600Z [4003/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchedFallback.cpp.o 2025-07-24T03:53:46.5335290Z [4004/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyBatchingRegistrations.cpp.o 2025-07-24T03:53:46.5372420Z [4005/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SavedTensorHooks.cpp.o 2025-07-24T03:53:46.5472780Z [4006/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ScalarOps.cpp.o 2025-07-24T03:53:46.6315090Z [4007/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/LegacyVmapTransforms.cpp.o 2025-07-24T03:53:46.6635250Z [4008/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelNative.cpp.o 2025-07-24T03:53:46.6781680Z [4009/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/StorageUtils.cpp.o 2025-07-24T03:53:46.6986680Z [4010/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseTensorImpl.cpp.o 2025-07-24T03:53:46.7335610Z [4011/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/PythonTorchFunctionTLS.cpp.o 2025-07-24T03:53:46.7901300Z [4012/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/SparseCsrTensorImpl.cpp.o 2025-07-24T03:53:46.8566330Z [4013/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelThreadPoolNative.cpp.o 2025-07-24T03:53:46.9044970Z [4014/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelCommon.cpp.o 2025-07-24T03:53:46.9333840Z [4015/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ParallelOpenMP.cpp.o 2025-07-24T03:53:46.9504080Z [4016/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/FlushDenormal.cpp.o 2025-07-24T03:53:46.9766430Z [4017/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/cpu/Utils.cpp.o 2025-07-24T03:53:47.0407310Z [4018/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Version.cpp.o 2025-07-24T03:53:47.1428480Z [4019/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CPUGuardImpl.cpp.o 2025-07-24T03:53:47.1618780Z [4020/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NamedTensorUtils.cpp.o 2025-07-24T03:53:47.1786840Z [4021/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/VmapModeRegistrations.cpp.o 2025-07-24T03:53:47.1968320Z [4022/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/CUDAHooksInterface.cpp.o 2025-07-24T03:53:47.2291220Z [4023/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/NestedTensorImpl.cpp.o 2025-07-24T03:53:47.2897270Z [4024/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HIPHooksInterface.cpp.o 2025-07-24T03:53:47.3685950Z [4025/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/IPUHooksInterface.cpp.o 2025-07-24T03:53:47.3974600Z [4026/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/HPUHooksInterface.cpp.o 2025-07-24T03:53:47.4312700Z [4027/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/ZeroTensorFallback.cpp.o 2025-07-24T03:53:47.4923160Z [4028/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MPSHooksInterface.cpp.o 2025-07-24T03:53:47.4925420Z [4029/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MetaGuardImpl.cpp.o 2025-07-24T03:53:47.4954610Z [4030/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MTIAHooksInterface.cpp.o 2025-07-24T03:53:47.5213360Z [4031/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/MAIAHooksInterface.cpp.o 2025-07-24T03:53:47.5356040Z [4032/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/autocast_mode.cpp.o 2025-07-24T03:53:47.6316240Z [4033/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/PrivateUse1HooksInterface.cpp.o 2025-07-24T03:53:47.6568860Z [4034/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/detail/XPUHooksInterface.cpp.o 2025-07-24T03:53:47.8776340Z [4035/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/ADInterpreters.cpp.o 2025-07-24T03:53:48.1567460Z [4036/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesActivation.cpp.o 2025-07-24T03:53:48.2099460Z [4037/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesConvolution.cpp.o 2025-07-24T03:53:48.2240380Z [4038/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesFactory.cpp.o 2025-07-24T03:53:48.2450010Z [4039/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesBinaryOps.cpp.o 2025-07-24T03:53:48.2638830Z [4040/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesHelper.cpp.o 2025-07-24T03:53:48.2839970Z [4041/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDecompositions.cpp.o 2025-07-24T03:53:48.3135160Z [4042/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesDynamic.cpp.o 2025-07-24T03:53:48.5201060Z [4043/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesIndexing.cpp.o 2025-07-24T03:53:48.8610140Z [4044/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLinearAlgebra.cpp.o 2025-07-24T03:53:48.8811370Z [4045/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesModules.cpp.o 2025-07-24T03:53:48.9439100Z [4046/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesPooling.cpp.o 2025-07-24T03:53:48.9766900Z [4047/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesLoss.cpp.o 2025-07-24T03:53:49.0864080Z [4048/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesRandomness.cpp.o 2025-07-24T03:53:49.1129800Z [4049/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesNorm.cpp.o 2025-07-24T03:53:49.1389050Z [4050/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesReduceOps.cpp.o 2025-07-24T03:53:49.2574000Z [4051/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedTensorImpl.cpp.o 2025-07-24T03:53:49.3015150Z [4052/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesScatterOps.cpp.o 2025-07-24T03:53:49.3642170Z [4053/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/FunctionalizeInterpreter.cpp.o 2025-07-24T03:53:49.5069240Z [4054/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesUnaryOps.cpp.o 2025-07-24T03:53:49.5573000Z [4055/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/Interpreter.cpp.o 2025-07-24T03:53:49.6057670Z [4056/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PlumbingHelper.cpp.o 2025-07-24T03:53:49.6404270Z [4057/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchedFallback.cpp.o 2025-07-24T03:53:49.7104180Z [4058/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/BatchRulesViews.cpp.o 2025-07-24T03:53:49.7757440Z [4059/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/DynamicLayer.cpp.o 2025-07-24T03:53:49.8366290Z [4060/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenGeneral.cpp.o 2025-07-24T03:53:49.9316050Z [4061/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/TensorWrapper.cpp.o 2025-07-24T03:53:49.9448160Z [4062/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapInterpreter.cpp.o 2025-07-24T03:53:49.9595390Z [4063/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/record_function.cpp.o 2025-07-24T03:53:49.9811980Z [4064/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyBatchingRegistrations.cpp.o 2025-07-24T03:53:50.0912150Z [4065/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/LegacyVmapTransforms.cpp.o 2025-07-24T03:53:50.1022660Z [4066/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/BackendSelectFallbackKernel.cpp.o 2025-07-24T03:53:50.1136160Z [4067/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/CachingHostAllocator.cpp.o 2025-07-24T03:53:50.1358210Z [4068/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/PyTorchOperatorHacks.cpp.o 2025-07-24T03:53:50.2158390Z [4069/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypeProperties.cpp.o 2025-07-24T03:53:50.2181090Z [4070/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dimname.cpp.o 2025-07-24T03:53:50.2772330Z [4071/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/DeprecatedTypePropertiesRegistry.cpp.o 2025-07-24T03:53:50.4152720Z [4072/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/functorch/VmapModeRegistrations.cpp.o 2025-07-24T03:53:50.4168210Z [4073/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Dict.cpp.o 2025-07-24T03:53:50.4206410Z [4074/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/GeneratorForPrivateuseone.cpp.o 2025-07-24T03:53:50.4582920Z [4075/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Formatting.cpp.o 2025-07-24T03:53:50.4672120Z [4076/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Generator.cpp.o 2025-07-24T03:53:50.4887800Z [4077/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/List.cpp.o 2025-07-24T03:53:50.5488790Z [4078/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/MetaFallbackKernel.cpp.o 2025-07-24T03:53:50.5884620Z [4079/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NestedIntSymNodeImpl.cpp.o 2025-07-24T03:53:50.6849760Z [4080/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Range.cpp.o 2025-07-24T03:53:50.7037120Z [4081/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedTensor.cpp.o 2025-07-24T03:53:50.7091130Z [4082/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/NamedRegistrations.cpp.o 2025-07-24T03:53:50.8262690Z [4083/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonFallbackKernel.cpp.o 2025-07-24T03:53:50.8293620Z [4084/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TorchDispatchUtils.cpp.o 2025-07-24T03:53:50.8460320Z [4085/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/PythonOpRegistrationTrampoline.cpp.o 2025-07-24T03:53:50.8666370Z [4086/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableFallbackKernel.cpp.o 2025-07-24T03:53:50.8775640Z [4087/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Tensor.cpp.o 2025-07-24T03:53:50.8818760Z [4088/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/Vitals.cpp.o 2025-07-24T03:53:50.9928360Z [4089/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/VariableHooksInterface.cpp.o 2025-07-24T03:53:51.0590030Z [4090/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/blob.cpp.o 2025-07-24T03:53:51.0978230Z [4091/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/adaption.cpp.o 2025-07-24T03:53:51.1496650Z [4092/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/ObservedOperators.cpp.o 2025-07-24T03:53:51.2155110Z [4093/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/boxing/KernelFunction.cpp.o 2025-07-24T03:53:51.2479010Z [4094/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/DispatchKeyExtractor.cpp.o 2025-07-24T03:53:51.2747020Z [4095/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/class_type.cpp.o 2025-07-24T03:53:51.3105730Z [4096/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/Dispatcher.cpp.o 2025-07-24T03:53:51.3307080Z [4097/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/custom_class.cpp.o 2025-07-24T03:53:51.3732740Z [4098/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dispatch/OperatorEntry.cpp.o 2025-07-24T03:53:51.4025690Z [4099/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/dynamic_type.cpp.o 2025-07-24T03:53:51.4283590Z [4100/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/interned_strings.cpp.o 2025-07-24T03:53:51.5529930Z [4101/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/register_symbols.cpp.o 2025-07-24T03:53:51.5565600Z [4102/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/function_schema.cpp.o 2025-07-24T03:53:51.5704790Z [4103/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/operator_name.cpp.o 2025-07-24T03:53:51.6645090Z [4104/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/infer_schema.cpp.o 2025-07-24T03:53:51.6751310Z [4105/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ivalue.cpp.o 2025-07-24T03:53:51.6782730Z [4106/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/library.cpp.o 2025-07-24T03:53:51.6966430Z [4107/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/op_registration/op_registration.cpp.o 2025-07-24T03:53:51.8192380Z [4108/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/tensor_type.cpp.o 2025-07-24T03:53:51.8259050Z [4109/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type_factory.cpp.o 2025-07-24T03:53:51.8347790Z [4110/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/type.cpp.o 2025-07-24T03:53:51.8550440Z [4111/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/error_report.cpp.o 2025-07-24T03:53:51.9630840Z [4112/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/strtod.cpp.o 2025-07-24T03:53:51.9798400Z [4113/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/union_type.cpp.o 2025-07-24T03:53:51.9836860Z [4114/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/lexer.cpp.o 2025-07-24T03:53:51.9851550Z [4115/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/function_schema_parser.cpp.o 2025-07-24T03:53:52.1912590Z [4116/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling2d.cpp.o 2025-07-24T03:53:52.1979090Z [4117/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/source_range.cpp.o 2025-07-24T03:53:52.2197350Z [4118/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_type_parser.cpp.o 2025-07-24T03:53:52.2260760Z [4119/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling3d.cpp.o 2025-07-24T03:53:52.2297850Z [4120/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveAveragePooling.cpp.o 2025-07-24T03:53:52.2312980Z [4121/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Activation.cpp.o 2025-07-24T03:53:52.3438420Z [4122/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AdaptiveMaxPooling3d.cpp.o 2025-07-24T03:53:52.4295170Z [4123/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AutogradComposite.cpp.o 2025-07-24T03:53:52.5483790Z [4124/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AffineGridGenerator.cpp.o 2025-07-24T03:53:52.5675160Z [4125/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AmpKernels.cpp.o 2025-07-24T03:53:52.5717370Z [4126/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool3d.cpp.o 2025-07-24T03:53:52.5971010Z [4127/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/AveragePool2d.cpp.o 2025-07-24T03:53:52.6325660Z [4128/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Blas.cpp.o 2025-07-24T03:53:52.6344070Z [4129/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BinaryOps.cpp.o 2025-07-24T03:53:52.6723860Z [4130/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebraKernel.cpp.o 2025-07-24T03:53:52.8280580Z [4131/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BatchLinearAlgebra.cpp.o 2025-07-24T03:53:52.8437480Z [4132/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/BlasKernel.cpp.o 2025-07-24T03:53:52.8925870Z [4133/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Bucketization.cpp.o 2025-07-24T03:53:52.9588200Z [4134/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ChanelShuffle.cpp.o 2025-07-24T03:53:52.9931790Z [4135/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUBlas.cpp.o 2025-07-24T03:53:53.0374510Z [4136/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/CPUFallback.cpp.o 2025-07-24T03:53:53.0479470Z [4137/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Col2Im.cpp.o 2025-07-24T03:53:53.0859460Z [4138/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Constraints.cpp.o 2025-07-24T03:53:53.1720180Z [4139/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ComparisonUtils.cpp.o 2025-07-24T03:53:53.2708750Z [4140/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Convolution.cpp.o 2025-07-24T03:53:53.2730440Z [4141/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM2d.cpp.o 2025-07-24T03:53:53.2754980Z [4142/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionMM3d.cpp.o 2025-07-24T03:53:53.3099770Z [4143/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ConvolutionTBC.cpp.o 2025-07-24T03:53:53.3696710Z [4144/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Copy.cpp.o 2025-07-24T03:53:53.4106810Z [4145/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Correlation.cpp.o 2025-07-24T03:53:53.4572480Z [4146/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool2d.cpp.o 2025-07-24T03:53:53.4690320Z [4147/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DispatchStub.cpp.o 2025-07-24T03:53:53.4771870Z [4148/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Cross.cpp.o 2025-07-24T03:53:53.5409450Z [4149/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/DilatedMaxPool3d.cpp.o 2025-07-24T03:53:53.6961330Z [4150/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Dropout.cpp.o 2025-07-24T03:53:53.7118960Z [4151/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distance.cpp.o 2025-07-24T03:53:53.7290800Z [4152/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Embedding.cpp.o 2025-07-24T03:53:53.7856800Z [4153/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Fill.cpp.o 2025-07-24T03:53:53.8008420Z [4154/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool2d.cpp.o 2025-07-24T03:53:53.8242370Z [4155/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Distributions.cpp.o 2025-07-24T03:53:53.8624540Z [4156/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/EmbeddingBag.cpp.o 2025-07-24T03:53:53.9634650Z [4157/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ForeachOpsKernels.cpp.o 2025-07-24T03:53:54.0343500Z [4158/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FractionalMaxPool3d.cpp.o 2025-07-24T03:53:54.0686620Z [4159/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FunctionOfAMatrixUtils.cpp.o 2025-07-24T03:53:54.1125940Z [4160/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdam.cpp.o 2025-07-24T03:53:54.1263720Z [4161/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedSGD.cpp.o 2025-07-24T03:53:54.1664380Z [4162/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/FusedAdagrad.cpp.o 2025-07-24T03:53:54.2325950Z [4163/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GatedLinearUnit.cpp.o 2025-07-24T03:53:54.2555910Z [4164/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/GridSampler.cpp.o 2025-07-24T03:53:54.2614870Z [4165/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Histogram.cpp.o 2025-07-24T03:53:54.4241100Z [4166/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Im2Col.cpp.o 2025-07-24T03:53:54.4383840Z [4167/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Integration.cpp.o 2025-07-24T03:53:54.4578900Z [4168/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Lerp.cpp.o 2025-07-24T03:53:54.4680040Z [4169/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Itertools.cpp.o 2025-07-24T03:53:54.4989230Z [4170/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/IndexingUtils.cpp.o 2025-07-24T03:53:54.5048470Z [4171/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LegacyBatching.cpp.o 2025-07-24T03:53:54.6218140Z [4172/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Linear.cpp.o 2025-07-24T03:53:54.7830530Z [4173/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Loss.cpp.o 2025-07-24T03:53:54.7880130Z [4174/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossCTC.cpp.o 2025-07-24T03:53:54.8203110Z [4175/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL.cpp.o 2025-07-24T03:53:54.8389800Z [4176/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiMargin.cpp.o 2025-07-24T03:53:54.8417110Z [4177/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LinearAlgebra.cpp.o 2025-07-24T03:53:54.8678570Z [4178/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossNLL2d.cpp.o 2025-07-24T03:53:54.9032290Z [4179/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/LossMultiLabelMargin.cpp.o 2025-07-24T03:53:54.9173310Z [4180/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxPooling.cpp.o 2025-07-24T03:53:55.0483930Z [4181/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MaxUnpooling.cpp.o 2025-07-24T03:53:55.0982700Z [4182/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Memory.cpp.o 2025-07-24T03:53:55.1852730Z [4183/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/MetaTensor.cpp.o 2025-07-24T03:53:55.2122210Z [4184/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NNPACK.cpp.o 2025-07-24T03:53:55.2396920Z [4185/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose3d.cpp.o 2025-07-24T03:53:55.2742470Z [4186/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NamedTensor.cpp.o 2025-07-24T03:53:55.2755770Z [4187/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveDilatedConvolution.cpp.o 2025-07-24T03:53:55.3088380Z [4188/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NaiveConvolutionTranspose2d.cpp.o 2025-07-24T03:53:55.3884410Z [4189/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/NegateFallback.cpp.o 2025-07-24T03:53:55.4907320Z [4190/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Normalization.cpp.o 2025-07-24T03:53:55.5140450Z [4191/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Onehot.cpp.o 2025-07-24T03:53:55.5262440Z [4192/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PackedSequence.cpp.o 2025-07-24T03:53:55.6136610Z [4193/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PointwiseOps.cpp.o 2025-07-24T03:53:55.6251230Z [4194/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PixelShuffle.cpp.o 2025-07-24T03:53:55.6552110Z [4195/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/PadNd.cpp.o 2025-07-24T03:53:55.6788600Z [4196/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pow.cpp.o 2025-07-24T03:53:55.7071820Z [4197/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Pooling.cpp.o 2025-07-24T03:53:55.8216640Z [4198/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/QuantizedLinear.cpp.o 2025-07-24T03:53:55.9246900Z [4199/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RangeFactories.cpp.o 2025-07-24T03:53:55.9477980Z [4200/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RNN.cpp.o 2025-07-24T03:53:55.9761500Z [4201/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceAllOps.cpp.o 2025-07-24T03:53:56.0064550Z [4202/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReflectionPad.cpp.o 2025-07-24T03:53:56.0334640Z [4203/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReduceOps.cpp.o 2025-07-24T03:53:56.0456370Z [4204/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Repeat.cpp.o 2025-07-24T03:53:56.0700050Z [4205/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ReplicationPadding.cpp.o 2025-07-24T03:53:56.1182200Z [4206/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Resize.cpp.o 2025-07-24T03:53:56.2705540Z [4207/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Scalar.cpp.o 2025-07-24T03:53:56.2818050Z [4208/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SegmentReduce.cpp.o 2025-07-24T03:53:56.3661420Z [4209/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOps.cpp.o 2025-07-24T03:53:56.3923740Z [4210/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SoftMax.cpp.o 2025-07-24T03:53:56.4536100Z [4211/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Sorting.cpp.o 2025-07-24T03:53:56.4656290Z [4212/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/RowwisePrune.cpp.o 2025-07-24T03:53:56.4727290Z [4213/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SobolEngineOpsUtils.cpp.o 2025-07-24T03:53:56.5900170Z [4214/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SpectralOps.cpp.o 2025-07-24T03:53:56.6788030Z [4215/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorCompare.cpp.o 2025-07-24T03:53:56.7129880Z [4216/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SummaryOps.cpp.o 2025-07-24T03:53:56.7363730Z [4217/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/SparseTensorUtils.cpp.o 2025-07-24T03:53:56.8521070Z [4218/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorIteratorReduce.cpp.o 2025-07-24T03:53:56.8677100Z [4219/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorFactories.cpp.o 2025-07-24T03:53:56.9010280Z [4220/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorProperties.cpp.o 2025-07-24T03:53:57.0660820Z [4221/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorTransformations.cpp.o 2025-07-24T03:53:57.0965550Z [4222/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorShape.cpp.o 2025-07-24T03:53:57.1160960Z [4223/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorConversions.cpp.o 2025-07-24T03:53:57.1474330Z [4224/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TensorAdvancedIndexing.cpp.o 2025-07-24T03:53:57.1609110Z [4225/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TypeProperties.cpp.o 2025-07-24T03:53:57.1619400Z [4226/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TriangularOps.cpp.o 2025-07-24T03:53:57.1735570Z [4227/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/TestOps.cpp.o 2025-07-24T03:53:57.2308810Z [4228/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold2d.cpp.o 2025-07-24T03:53:57.2460460Z [4229/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnaryOps.cpp.o 2025-07-24T03:53:57.3085270Z [4230/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unfold3d.cpp.o 2025-07-24T03:53:57.4587950Z [4231/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UnfoldBackward.cpp.o 2025-07-24T03:53:57.4763470Z [4232/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSample.cpp.o 2025-07-24T03:53:57.5335500Z [4233/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/Unique.cpp.o 2025-07-24T03:53:57.6001130Z [4234/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest1d.cpp.o 2025-07-24T03:53:57.6160850Z [4235/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBilinear2d.cpp.o 2025-07-24T03:53:57.6161460Z [4236/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleLinear1d.cpp.o 2025-07-24T03:53:57.6666920Z [4237/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest2d.cpp.o 2025-07-24T03:53:57.6891490Z [4238/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleBicubic2d.cpp.o 2025-07-24T03:53:57.7337390Z [4239/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/verbose_wrapper.cpp.o 2025-07-24T03:53:57.8405050Z [4240/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleNearest3d.cpp.o 2025-07-24T03:53:57.8482310Z [4241/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/UpSampleTrilinear3d.cpp.o 2025-07-24T03:53:57.8554270Z [4242/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/VariableMethodStubs.cpp.o 2025-07-24T03:53:57.9470990Z [4243/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/WeightNorm.cpp.o 2025-07-24T03:53:58.0300270Z [4244/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/prim_native_functions.cpp.o 2025-07-24T03:53:58.0447010Z [4245/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/layer_norm.cpp.o 2025-07-24T03:53:58.0484690Z [4246/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/library.cpp.o 2025-07-24T03:53:58.0724530Z [4247/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/group_norm.cpp.o 2025-07-24T03:53:58.1294230Z [4248/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear.cpp.o 2025-07-24T03:53:58.1670840Z [4249/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.cpp.o 2025-07-24T03:53:58.2430780Z [4250/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ParamUtils.cpp.o 2025-07-24T03:53:58.3539550Z [4251/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_prepack.cpp.o 2025-07-24T03:53:58.3641810Z [4252/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_dynamic.cpp.o 2025-07-24T03:53:58.4308280Z [4253/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SoftMax.cpp.o 2025-07-24T03:53:58.4739760Z [4254/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/FlattenIndicesKernel.cpp.o 2025-07-24T03:53:58.5818200Z [4255/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_unpack.cpp.o 2025-07-24T03:53:58.6777630Z [4256/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlasImpl.cpp.o 2025-07-24T03:53:58.7015590Z [4257/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_deserialize.cpp.o 2025-07-24T03:53:58.7049870Z [4258/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensor.cpp.o 2025-07-24T03:53:58.7081180Z [4259/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBlas.cpp.o 2025-07-24T03:53:58.7436420Z [4260/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseBinaryOpIntersectionKernel.cpp.o 2025-07-24T03:53:58.7672380Z [4261/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/ao_sparse/quantized/cpu/qlinear_serialize.cpp.o 2025-07-24T03:53:58.9150350Z [4262/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseCsrTensorMath.cpp.o 2025-07-24T03:53:58.9650330Z [4263/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseFactories.cpp.o 2025-07-24T03:53:58.9886040Z [4264/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseMatMul.cpp.o 2025-07-24T03:53:59.0362310Z [4265/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensor.cpp.o 2025-07-24T03:53:59.1093590Z [4266/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseTensorMath.cpp.o 2025-07-24T03:53:59.1234590Z [4267/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/SparseUnaryOps.cpp.o 2025-07-24T03:53:59.3258580Z [4268/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/sparse/ValidateCompressedIndicesKernel.cpp.o 2025-07-24T03:53:59.3725490Z [4269/5147] Building C object caffe2/CMakeFiles/torch_cpu.dir/__/third_party/miniz-3.0.2/miniz.c.o 2025-07-24T03:53:59.4109270Z [4270/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBackward.cpp.o 2025-07-24T03:53:59.4592600Z [4271/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMatmul.cpp.o 2025-07-24T03:53:59.5632270Z [4272/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorAliases.cpp.o 2025-07-24T03:53:59.6126600Z [4273/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorBinaryOps.cpp.o 2025-07-24T03:53:59.6424870Z [4274/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorFactories.cpp.o 2025-07-24T03:53:59.6980210Z [4275/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/inline_container.cc.o 2025-07-24T03:53:59.7943580Z [4276/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorMath.cpp.o 2025-07-24T03:53:59.8174110Z [4277/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizer.cpp.o 2025-07-24T03:53:59.9107870Z [4278/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUtils.cpp.o 2025-07-24T03:53:59.9263270Z [4279/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorTransformerFunctions.cpp.o 2025-07-24T03:53:59.9408990Z [4280/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/AffineQuantizerBase.cpp.o 2025-07-24T03:53:59.9884800Z [4281/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/core/common.cc.o 2025-07-24T03:54:00.1170800Z [4282/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/nested/NestedTensorUnaryOps.cpp.o 2025-07-24T03:54:00.1303340Z [4283/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ACLUtils.cpp.o 2025-07-24T03:54:00.3492160Z [4284/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorFactories.cpp.o 2025-07-24T03:54:00.3635400Z [4285/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/Copy.cpp.o 2025-07-24T03:54:00.4466000Z [4286/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerChannelAffine.cpp.o 2025-07-24T03:54:00.4696700Z [4287/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ChannelShuffle.cpp.o 2025-07-24T03:54:00.5416390Z [4288/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/QTensor.cpp.o 2025-07-24T03:54:00.6054980Z [4289/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/FakeQuantPerTensorAffine.cpp.o 2025-07-24T03:54:00.6402060Z [4290/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool3d.cpp.o 2025-07-24T03:54:00.6634410Z [4291/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorCompare.cpp.o 2025-07-24T03:54:00.7369160Z [4292/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AveragePool2d.cpp.o 2025-07-24T03:54:00.7900080Z [4293/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/TensorAdvancedIndexing.cpp.o 2025-07-24T03:54:00.8276100Z [4294/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/AdaptiveAveragePooling.cpp.o 2025-07-24T03:54:00.8404530Z [4295/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/BinaryOps.cpp.o 2025-07-24T03:54:00.8527110Z [4296/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/RuyUtils.cpp.o 2025-07-24T03:54:00.8853130Z [4297/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/IntReprQuant.cpp.o 2025-07-24T03:54:00.9129020Z [4298/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/LinearUnpackImpl.cpp.o 2025-07-24T03:54:01.0031220Z [4299/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Normalization.cpp.o 2025-07-24T03:54:01.0578420Z [4300/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/ReduceOps.cpp.o 2025-07-24T03:54:01.1486130Z [4301/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Pooling.cpp.o 2025-07-24T03:54:01.1546690Z [4302/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/MakePerTensorQuantizedTensor.cpp.o 2025-07-24T03:54:01.2854350Z [4303/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/Sorting.cpp.o 2025-07-24T03:54:01.2956920Z [4304/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleBilinear2d.cpp.o 2025-07-24T03:54:01.3057950Z [4305/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorOperators.cpp.o 2025-07-24T03:54:01.3071950Z [4306/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest3d.cpp.o 2025-07-24T03:54:01.3173800Z [4307/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/UpSampleNearest2d.cpp.o 2025-07-24T03:54:01.3331320Z [4308/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/TensorShape.cpp.o 2025-07-24T03:54:01.4979610Z [4309/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fbgemm_utils.cpp.o 2025-07-24T03:54:01.5747060Z [4310/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qclamp.cpp.o 2025-07-24T03:54:01.5893540Z [4311/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/init_qnnpack.cpp.o 2025-07-24T03:54:01.6722440Z [4312/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv.cpp.o 2025-07-24T03:54:01.7006480Z [4313/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/XnnpackUtils.cpp.o 2025-07-24T03:54:01.7478510Z [4314/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qelu.cpp.o 2025-07-24T03:54:01.7596960Z [4315/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/fused_obs_fake_quant.cpp.o 2025-07-24T03:54:01.8090330Z [4316/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_prepack.cpp.o 2025-07-24T03:54:01.8426780Z [4317/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_dynamic.cpp.o 2025-07-24T03:54:02.0030980Z [4318/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear.cpp.o 2025-07-24T03:54:02.0218920Z [4319/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag.cpp.o 2025-07-24T03:54:02.0854290Z [4320/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardsigmoid.cpp.o 2025-07-24T03:54:02.1103000Z [4321/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_prepack.cpp.o 2025-07-24T03:54:02.1663740Z [4322/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qembeddingbag_unpack.cpp.o 2025-07-24T03:54:02.2289680Z [4323/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qgelu.cpp.o 2025-07-24T03:54:02.2531320Z [4324/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qdropout.cpp.o 2025-07-24T03:54:02.3463890Z [4325/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qconv_unpack_impl.cpp.o 2025-07-24T03:54:02.3641390Z [4326/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qhardswish.cpp.o 2025-07-24T03:54:02.4133030Z [4327/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_dynamic.cpp.o 2025-07-24T03:54:02.4690260Z [4328/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qlinear_prepack.cpp.o 2025-07-24T03:54:02.4947250Z [4329/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmul.cpp.o 2025-07-24T03:54:02.5462460Z [4330/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qnormalization.cpp.o 2025-07-24T03:54:02.6610820Z [4331/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsigmoid.cpp.o 2025-07-24T03:54:02.6997480Z [4332/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qrelu.cpp.o 2025-07-24T03:54:02.7218310Z [4333/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qtanh.cpp.o 2025-07-24T03:54:02.7522380Z [4334/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qthreshold.cpp.o 2025-07-24T03:54:02.7860130Z [4335/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qmatmul.cpp.o 2025-07-24T03:54:02.7883820Z [4336/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/MklAllocationHelper.cpp.o 2025-07-24T03:54:02.8924850Z [4337/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qconv_unpack.cpp.o 2025-07-24T03:54:02.9132180Z [4338/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/LinearAlgebra.cpp.o 2025-07-24T03:54:02.9347330Z [4339/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/qsoftmax.cpp.o 2025-07-24T03:54:02.9700830Z [4340/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/library.cpp.o 2025-07-24T03:54:03.1410080Z [4341/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/BinaryOps.cpp.o 2025-07-24T03:54:03.1612140Z [4342/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseBlasImpl.cpp.o 2025-07-24T03:54:03.1773680Z [4343/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SparseCsrLinearAlgebra.cpp.o 2025-07-24T03:54:03.1933510Z [4344/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/IDeepRegistration.cpp.o 2025-07-24T03:54:03.2125520Z [4345/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Conv.cpp.o 2025-07-24T03:54:03.2477120Z [4346/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/qlinear_unpack.cpp.o 2025-07-24T03:54:03.2586020Z [4347/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkl/SpectralOps.cpp.o 2025-07-24T03:54:03.2900070Z [4348/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Copy.cpp.o 2025-07-24T03:54:03.4427920Z [4349/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Gelu.cpp.o 2025-07-24T03:54:03.5730940Z [4350/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Linear.cpp.o 2025-07-24T03:54:03.5778810Z [4351/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNCommon.cpp.o 2025-07-24T03:54:03.5803010Z [4352/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Matmul.cpp.o 2025-07-24T03:54:03.5869110Z [4353/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MKLDNNConversions.cpp.o 2025-07-24T03:54:03.5995080Z [4354/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/MkldnnTensorMath.cpp.o 2025-07-24T03:54:03.6263580Z [4355/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/ConvPrepack.cpp.o 2025-07-24T03:54:03.7008720Z [4356/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RegisterMkldnnOpContextClass.cpp.o 2025-07-24T03:54:03.7298050Z [4357/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Normalization.cpp.o 2025-07-24T03:54:03.9368180Z [4358/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Pooling.cpp.o 2025-07-24T03:54:03.9467350Z [4359/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Relu.cpp.o 2025-07-24T03:54:03.9582980Z [4360/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorShape.cpp.o 2025-07-24T03:54:03.9601160Z [4361/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/SoftMax.cpp.o 2025-07-24T03:54:03.9673450Z [4362/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/TensorFactories.cpp.o 2025-07-24T03:54:04.1157950Z [4363/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/OpContext.cpp.o 2025-07-24T03:54:04.1951450Z [4364/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/UnaryOps.cpp.o 2025-07-24T03:54:04.2748490Z [4365/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/RNN.cpp.o 2025-07-24T03:54:04.2802530Z [4366/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Utils.cpp.o 2025-07-24T03:54:04.2818850Z [4367/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/argmaxpool-config.c.o 2025-07-24T03:54:04.3023530Z [4368/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/sdp_utils_cpp.cpp.o 2025-07-24T03:54:04.3228790Z [4369/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/transformer.cpp.o 2025-07-24T03:54:04.3364080Z [4370/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/utils/Factory.cpp.o 2025-07-24T03:54:04.3383400Z [4371/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/transformers/attention.cpp.o 2025-07-24T03:54:04.3586080Z [4372/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mkldnn/Prelu.cpp.o 2025-07-24T03:54:04.3586720Z [4373/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/avgpool-config.c.o 2025-07-24T03:54:04.3984360Z [4374/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/conv-hwc2chw-config.c.o 2025-07-24T03:54:04.4126830Z [4375/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv2d-chw-config.c.o 2025-07-24T03:54:04.4245330Z [4376/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/binary-elementwise-config.c.o 2025-07-24T03:54:04.4257540Z [4377/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/cmul-config.c.o 2025-07-24T03:54:04.4376620Z [4378/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/experiments-config.c.o 2025-07-24T03:54:04.4505660Z [4379/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/dwconv-config.c.o 2025-07-24T03:54:04.4631870Z [4380/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-chw-config.c.o 2025-07-24T03:54:04.4794360Z [4381/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Activation.cpp.o 2025-07-24T03:54:04.4972590Z [4382/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/lut32norm-config.c.o 2025-07-24T03:54:04.5043020Z [4383/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/gemm-config.c.o 2025-07-24T03:54:04.5170060Z [4384/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/ibilinear-config.c.o 2025-07-24T03:54:04.5471630Z [4385/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/maxpool-config.c.o 2025-07-24T03:54:04.5544460Z [4386/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/raddstoreexpminusmax-config.c.o 2025-07-24T03:54:04.5722080Z [4387/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/rmax-config.c.o 2025-07-24T03:54:04.5722710Z [4388/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pavgpool-config.c.o 2025-07-24T03:54:04.5750020Z [4389/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/pack-lh-config.c.o 2025-07-24T03:54:04.5760710Z [4390/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/reduce-config.c.o 2025-07-24T03:54:04.5979630Z [4391/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/spmm-config.c.o 2025-07-24T03:54:04.6191100Z [4392/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/transpose-config.c.o 2025-07-24T03:54:04.6271610Z [4393/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unary-elementwise-config.c.o 2025-07-24T03:54:04.6316810Z [4394/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/vmulcaddc-config.c.o 2025-07-24T03:54:04.6593540Z [4395/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/unpool-config.c.o 2025-07-24T03:54:04.6696080Z [4396/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-pad-config.c.o 2025-07-24T03:54:04.6809240Z [4397/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/init.c.o 2025-07-24T03:54:04.6809730Z [4398/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/x8-lut-config.c.o 2025-07-24T03:54:04.6996270Z [4399/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/xx-fill-config.c.o 2025-07-24T03:54:04.7026570Z [4400/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/params.c.o 2025-07-24T03:54:04.7182210Z [4401/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/src/configs/zip-config.c.o 2025-07-24T03:54:04.7490960Z [4402/5147] Building C object confu-deps/XNNPACK/CMakeFiles/XNNPACK.dir/build_identifier.c.o 2025-07-24T03:54:04.9087480Z [4403/5147] Linking CXX static library lib/libXNNPACK.a 2025-07-24T03:54:04.9484400Z [4404/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Placement.cpp.o 2025-07-24T03:54:05.0415450Z [4405/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphSignature.cpp.o 2025-07-24T03:54:05.0735430Z [4406/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/TensorMeta.cpp.o 2025-07-24T03:54:05.0806410Z [4407/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/DelegateExecutor.cpp.o 2025-07-24T03:54:05.1547470Z [4408/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/GraphPasses.cpp.o 2025-07-24T03:54:05.1890670Z [4409/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Graph.cpp.o 2025-07-24T03:54:05.1940480Z [4410/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/graph/Serialization.cpp.o 2025-07-24T03:54:05.3048340Z [4411/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionPlanner.cpp.o 2025-07-24T03:54:05.4190220Z [4412/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/PlacementUtils.cpp.o 2025-07-24T03:54:05.5406570Z [4413/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_special_ops.cpp.o 2025-07-24T03:54:05.6510480Z [4414/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ExecutionFrame.cpp.o 2025-07-24T03:54:05.7442190Z [4415/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/GraphExecutorBase.cpp.o 2025-07-24T03:54:05.7619990Z [4416/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ConstantFolder.cpp.o 2025-07-24T03:54:05.7803120Z [4417/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/OpKernel.cpp.o 2025-07-24T03:54:05.7804630Z [4418/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Weights.cpp.o 2025-07-24T03:54:05.7840780Z [4419/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/common/FileUtil.cpp.o 2025-07-24T03:54:05.8181420Z [4420/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/Executor.cpp.o 2025-07-24T03:54:05.8199300Z [4421/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/FunctionSchema.cpp.o 2025-07-24T03:54:05.8975490Z [4422/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/SerialGraphExecutor.cpp.o 2025-07-24T03:54:06.0406830Z [4423/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/Bump.cpp.o 2025-07-24T03:54:06.1028200Z [4424/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/GreedyBySize.cpp.o 2025-07-24T03:54:06.1501890Z [4425/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/detail/ITree.cpp.o 2025-07-24T03:54:06.3266140Z [4426/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/DisjointStorageGroups.cpp.o 2025-07-24T03:54:06.4219680Z [4427/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/C10Kernel.cpp.o 2025-07-24T03:54:06.5124170Z [4428/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/AutoFunctionalizeKernel.cpp.o 2025-07-24T03:54:06.5245480Z [4429/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/HigherOrderKernel.cpp.o 2025-07-24T03:54:06.5709430Z [4430/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/ParallelGraphExecutor.cpp.o 2025-07-24T03:54:06.6046250Z [4431/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/CallTorchBindKernel.cpp.o 2025-07-24T03:54:06.6387770Z [4432/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutPlanner.cpp.o 2025-07-24T03:54:06.6660490Z [4433/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/AliasAnalyzer.cpp.o 2025-07-24T03:54:06.8201010Z [4434/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelFactory.cpp.o 2025-07-24T03:54:06.8349770Z [4435/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/config.cpp.o 2025-07-24T03:54:06.9224150Z [4436/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/dynamic_ir.cpp.o 2025-07-24T03:54:07.0151380Z [4437/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/PrimKernelRegistry.cpp.o 2025-07-24T03:54:07.0817780Z [4438/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/debug_info.cpp.o 2025-07-24T03:54:07.2055080Z [4439/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/generic.cpp.o 2025-07-24T03:54:07.2102190Z [4440/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ops/device_data.cpp.o 2025-07-24T03:54:07.2835460Z [4441/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/NativeKernels.cpp.o 2025-07-24T03:54:07.3144900Z [4442/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/executor/memory/LayoutManager.cpp.o 2025-07-24T03:54:07.4625090Z [4443/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/tensor_aten_ops.cpp.o 2025-07-24T03:54:07.5079070Z [4444/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedStaticDispatchKernels.cpp.o 2025-07-24T03:54:07.5660540Z [4445/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_lowering_context.cpp.o 2025-07-24T03:54:07.6007790Z [4446/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/GeneratedNativeStaticDispatchKernels.cpp.o 2025-07-24T03:54:07.6110680Z [4447/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_autograd_functions.cpp.o 2025-07-24T03:54:07.7503350Z [4448/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_eager_fallback.cpp.o 2025-07-24T03:54:07.7691550Z [4449/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_backend_impl.cpp.o 2025-07-24T03:54:07.7999540Z [4450/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node.cpp.o 2025-07-24T03:54:07.9638910Z [4451/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/nativert/kernels/KernelRegistry.cpp.o 2025-07-24T03:54:08.0172350Z [4452/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/export_data.cpp.o 2025-07-24T03:54:08.0795870Z [4453/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_node_lowering.cpp.o 2025-07-24T03:54:08.1212380Z [4454/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/ts_backend/ts_native_functions.cpp.o 2025-07-24T03:54:08.1490440Z [4455/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import_data.cpp.o 2025-07-24T03:54:08.2857890Z [4456/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/out_types.cpp.o 2025-07-24T03:54:08.4007490Z [4457/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/random.cpp.o 2025-07-24T03:54:08.4327970Z [4458/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/optim/sgd.cpp.o 2025-07-24T03:54:08.4429090Z [4459/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/TraceTypeManual.cpp.o 2025-07-24T03:54:08.5698590Z [4460/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/flatbuffer_serializer.cpp.o 2025-07-24T03:54:08.5907740Z [4461/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/train/sequential.cpp.o 2025-07-24T03:54:08.6038360Z [4462/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/jit.cpp.o 2025-07-24T03:54:08.7137870Z [4463/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport.cpp.o 2025-07-24T03:54:08.7477260Z [4464/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/FunctionsManual.cpp.o 2025-07-24T03:54:08.8180970Z [4465/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/backport_manager.cpp.o 2025-07-24T03:54:08.8826420Z [4466/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/onnx.cpp.o 2025-07-24T03:54:08.9418260Z [4467/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_bytecode.cpp.o 2025-07-24T03:54:08.9861940Z [4468/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/VariableTypeManual.cpp.o 2025-07-24T03:54:08.9885580Z [4469/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/byte_order.cpp.o 2025-07-24T03:54:09.0226020Z [4470/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module_save.cpp.o 2025-07-24T03:54:09.1435020Z [4471/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/cuda.cpp.o 2025-07-24T03:54:09.2706390Z [4472/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export.cpp.o 2025-07-24T03:54:09.3511750Z [4473/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.cpp.o 2025-07-24T03:54:09.3681930Z [4474/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/enum.cpp.o 2025-07-24T03:54:09.5295440Z [4475/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/export_module.cpp.o 2025-07-24T03:54:09.5793110Z [4476/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/datasets/mnist.cpp.o 2025-07-24T03:54:09.6447560Z [4477/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/imethod.cpp.o 2025-07-24T03:54:09.6745250Z [4478/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/distributed.cpp.o 2025-07-24T03:54:09.6771950Z [4479/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/mps.cpp.o 2025-07-24T03:54:09.7000270Z [4480/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/random.cpp.o 2025-07-24T03:54:09.7747830Z [4481/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/stream.cpp.o 2025-07-24T03:54:09.7931350Z [4482/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/data/samplers/sequential.cpp.o 2025-07-24T03:54:10.0391650Z [4483/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize.cpp.o 2025-07-24T03:54:10.2263830Z [4484/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/init.cpp.o 2025-07-24T03:54:10.2639440Z [4485/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/_functions.cpp.o 2025-07-24T03:54:10.2819290Z [4486/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/activation.cpp.o 2025-07-24T03:54:10.3039310Z [4487/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/batchnorm.cpp.o 2025-07-24T03:54:10.3452910Z [4488/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/module.cpp.o 2025-07-24T03:54:10.3803850Z [4489/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/adaptive.cpp.o 2025-07-24T03:54:10.3897610Z [4490/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/normalization.cpp.o 2025-07-24T03:54:10.6850210Z [4491/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/instancenorm.cpp.o 2025-07-24T03:54:10.8034620Z [4492/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/conv.cpp.o 2025-07-24T03:54:10.8409130Z [4493/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/dropout.cpp.o 2025-07-24T03:54:10.9894090Z [4494/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/distance.cpp.o 2025-07-24T03:54:11.0123170Z [4495/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/fold.cpp.o 2025-07-24T03:54:11.0315950Z [4496/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/embedding.cpp.o 2025-07-24T03:54:11.0477890Z [4497/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/linear.cpp.o 2025-07-24T03:54:11.0611110Z [4498/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/loss.cpp.o 2025-07-24T03:54:11.2576900Z [4499/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/padding.cpp.o 2025-07-24T03:54:11.4602610Z [4500/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pixelshuffle.cpp.o 2025-07-24T03:54:11.5068040Z [4501/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/pooling.cpp.o 2025-07-24T03:54:11.5681760Z [4502/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/upsampling.cpp.o 2025-07-24T03:54:11.5833460Z [4503/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/rnn.cpp.o 2025-07-24T03:54:11.7899670Z [4504/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/adaptive.cpp.o 2025-07-24T03:54:11.8220680Z [4505/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/container/functional.cpp.o 2025-07-24T03:54:11.8400470Z [4506/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/modules/transformer.cpp.o 2025-07-24T03:54:11.8532200Z [4507/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/activation.cpp.o 2025-07-24T03:54:11.9995920Z [4508/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/embedding.cpp.o 2025-07-24T03:54:12.0334370Z [4509/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/batchnorm.cpp.o 2025-07-24T03:54:12.1964750Z [4510/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/normalization.cpp.o 2025-07-24T03:54:12.2165330Z [4511/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/instancenorm.cpp.o 2025-07-24T03:54:12.3976010Z [4512/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/conv.cpp.o 2025-07-24T03:54:12.4061970Z [4513/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/dropout.cpp.o 2025-07-24T03:54:12.6114620Z [4514/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/padding.cpp.o 2025-07-24T03:54:12.6338160Z [4515/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/pooling.cpp.o 2025-07-24T03:54:12.6432840Z [4516/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/rnn.cpp.o 2025-07-24T03:54:12.6832450Z [4517/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/linear.cpp.o 2025-07-24T03:54:12.7208790Z [4518/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/vision.cpp.o 2025-07-24T03:54:12.8341600Z [4519/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/nn/options/transformer.cpp.o 2025-07-24T03:54:13.0006640Z [4520/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adagrad.cpp.o 2025-07-24T03:54:13.0171880Z [4521/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adam.cpp.o 2025-07-24T03:54:13.1935280Z [4522/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/lbfgs.cpp.o 2025-07-24T03:54:13.2505800Z [4523/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/lr_scheduler.cpp.o 2025-07-24T03:54:13.2824060Z [4524/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/adamw.cpp.o 2025-07-24T03:54:13.3648090Z [4525/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/rmsprop.cpp.o 2025-07-24T03:54:13.3850730Z [4526/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/optimizer.cpp.o 2025-07-24T03:54:13.4054820Z [4527/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/serialize.cpp.o 2025-07-24T03:54:13.4627040Z [4528/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/step_lr.cpp.o 2025-07-24T03:54:13.4996320Z [4529/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/sgd.cpp.o 2025-07-24T03:54:13.5452670Z [4530/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/optim/schedulers/reduce_on_plateau_scheduler.cpp.o 2025-07-24T03:54:13.6197010Z [4531/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/xpu.cpp.o 2025-07-24T03:54:13.6781240Z [4532/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/input-archive.cpp.o 2025-07-24T03:54:13.7285320Z [4533/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/slice_indices_adjust.cpp.o 2025-07-24T03:54:13.8008660Z [4534/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/fusion.cpp.o 2025-07-24T03:54:13.9008450Z [4535/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/api/src/serialize/output-archive.cpp.o 2025-07-24T03:54:14.0565100Z [4536/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/impl.cpp.o 2025-07-24T03:54:14.0849000Z [4537/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/memory_planner.cpp.o 2025-07-24T03:54:14.1493130Z [4538/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/simple_graph_executor_impl.cpp.o 2025-07-24T03:54:14.1895990Z [4539/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/EmptyTensor.cpp.o 2025-07-24T03:54:14.3776490Z [4540/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/generated_ops.cpp.o 2025-07-24T03:54:14.3976270Z [4541/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/passes.cpp.o 2025-07-24T03:54:14.4686900Z [4542/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSAllocator.mm.o 2025-07-24T03:54:14.5323620Z [4543/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/native_ops.cpp.o 2025-07-24T03:54:14.5426940Z [4544/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_script.cpp.o 2025-07-24T03:54:14.5911240Z [4545/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry.cpp.o 2025-07-24T03:54:14.6345300Z [4546/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/ops.cpp.o 2025-07-24T03:54:14.6660040Z [4547/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/symbolic_shape_registry_util.cpp.o 2025-07-24T03:54:14.8061940Z [4548/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/static/te_wrapper.cpp.o 2025-07-24T03:54:14.8713460Z [4549/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_export_helpers.cpp.o 2025-07-24T03:54:14.9216420Z [4550/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/vararg_functions.cpp.o 2025-07-24T03:54:14.9819220Z [4551/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickle.cpp.o 2025-07-24T03:54:15.0053190Z [4552/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/callstack_debug_info_serialization.cpp.o 2025-07-24T03:54:15.0089910Z [4553/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_read.cpp.o 2025-07-24T03:54:15.0770870Z [4554/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import_source.cpp.o 2025-07-24T03:54:15.1135020Z [4555/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/import.cpp.o 2025-07-24T03:54:15.3404680Z [4556/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/python_print.cpp.o 2025-07-24T03:54:15.3611400Z [4557/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/type_name_uniquer.cpp.o 2025-07-24T03:54:15.4736320Z [4558/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler.cpp.o 2025-07-24T03:54:15.4836760Z [4559/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/source_range_serialization.cpp.o 2025-07-24T03:54:15.5087200Z [4560/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/pickler_helper.cpp.o 2025-07-24T03:54:15.5882200Z [4561/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/block_codegen.cpp.o 2025-07-24T03:54:15.6169280Z [4562/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_inference.cpp.o 2025-07-24T03:54:15.7982090Z [4563/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/serialization/unpickler.cpp.o 2025-07-24T03:54:15.9251760Z [4564/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/bounds_overlap.cpp.o 2025-07-24T03:54:15.9862920Z [4565/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/codegen.cpp.o 2025-07-24T03:54:16.0895180Z [4566/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/cpp_codegen.cpp.o 2025-07-24T03:54:16.1281900Z [4567/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/eval.cpp.o 2025-07-24T03:54:16.1387950Z [4568/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/expr.cpp.o 2025-07-24T03:54:16.1390120Z [4569/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/intrinsic_symbols.cpp.o 2025-07-24T03:54:16.2036110Z [4570/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions.cpp.o 2025-07-24T03:54:16.2137340Z [4571/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_registry.cpp.o 2025-07-24T03:54:16.2515660Z [4572/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_codegen.cpp.o 2025-07-24T03:54:16.3911360Z [4573/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/external_functions_core.cpp.o 2025-07-24T03:54:16.5336420Z [4574/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir.cpp.o 2025-07-24T03:54:16.6596050Z [4575/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/hash_provider.cpp.o 2025-07-24T03:54:16.6955360Z [4576/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/graph_opt.cpp.o 2025-07-24T03:54:16.6959270Z [4577/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_codegen.cpp.o 2025-07-24T03:54:16.7415030Z [4578/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_printer.cpp.o 2025-07-24T03:54:16.7717540Z [4579/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_cloner.cpp.o 2025-07-24T03:54:16.7870070Z [4580/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_mutator.cpp.o 2025-07-24T03:54:16.7888160Z [4581/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/llvm_jit.cpp.o 2025-07-24T03:54:16.9992080Z [4582/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_simplifier.cpp.o 2025-07-24T03:54:17.0139470Z [4583/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_verifier.cpp.o 2025-07-24T03:54:17.1345670Z [4584/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/ir_visitor.cpp.o 2025-07-24T03:54:17.3443590Z [4585/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/kernel.cpp.o 2025-07-24T03:54:17.4345250Z [4586/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest.cpp.o 2025-07-24T03:54:17.4542810Z [4587/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/loopnest_randomization.cpp.o 2025-07-24T03:54:17.4686830Z [4588/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/mem_dependency_checker.cpp.o 2025-07-24T03:54:17.5062740Z [4589/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/lowerings.cpp.o 2025-07-24T03:54:17.5432900Z [4590/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/matmul.cpp.o 2025-07-24T03:54:17.5742180Z [4591/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/conv2d.cpp.o 2025-07-24T03:54:17.7160010Z [4592/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/misc.cpp.o 2025-07-24T03:54:17.8839040Z [4593/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/reduction.cpp.o 2025-07-24T03:54:17.9298430Z [4594/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/pointwise.cpp.o 2025-07-24T03:54:17.9728610Z [4595/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/tensor.cpp.o 2025-07-24T03:54:18.0339280Z [4596/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/norm.cpp.o 2025-07-24T03:54:18.0973480Z [4597/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/types.cpp.o 2025-07-24T03:54:18.1411480Z [4598/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/quantization.cpp.o 2025-07-24T03:54:18.2149310Z [4599/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/registerizer.cpp.o 2025-07-24T03:54:18.2340960Z [4600/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/unique_name_manager.cpp.o 2025-07-24T03:54:18.2690430Z [4601/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/softmax.cpp.o 2025-07-24T03:54:18.2953050Z [4602/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/tensorexpr/operators/reduction.cpp.o 2025-07-24T03:54:18.3982990Z [4603/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/hooks_for_testing.cpp.o 2025-07-24T03:54:18.4086910Z [4604/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/config.cpp.o 2025-07-24T03:54:18.4130330Z [4605/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/testing/file_check.cpp.o 2025-07-24T03:54:18.4139150Z [4606/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_device.cpp.o 2025-07-24T03:54:18.5599900Z [4607/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/backend_interface.cpp.o 2025-07-24T03:54:18.5748350Z [4608/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/backend/lowering_context.cpp.o 2025-07-24T03:54:18.6120290Z [4609/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/hash.cpp.o 2025-07-24T03:54:18.6851020Z [4610/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/helpers.cpp.o 2025-07-24T03:54:18.7489380Z [4611/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir.cpp.o 2025-07-24T03:54:18.7591170Z [4612/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/debug_util.cpp.o 2025-07-24T03:54:18.8442860Z [4613/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_util.cpp.o 2025-07-24T03:54:18.8661100Z [4614/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_dump_util.cpp.o 2025-07-24T03:54:18.8965510Z [4615/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/multi_wait.cpp.o 2025-07-24T03:54:18.9770050Z [4616/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ir_metadata.cpp.o 2025-07-24T03:54:19.0167470Z [4617/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/lazy_graph_executor.cpp.o 2025-07-24T03:54:19.0567210Z [4618/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/arithmetic_ir_ops.cpp.o 2025-07-24T03:54:19.0575870Z [4619/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/permutation_util.cpp.o 2025-07-24T03:54:19.0875560Z [4620/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/ops/utils.cpp.o 2025-07-24T03:54:19.1139920Z [4621/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/metrics.cpp.o 2025-07-24T03:54:19.3092980Z [4622/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_impl.cpp.o 2025-07-24T03:54:19.3251780Z [4623/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor.cpp.o 2025-07-24T03:54:19.3256330Z [4624/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/thread_pool.cpp.o 2025-07-24T03:54:19.3549020Z [4625/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/counters.cpp.o 2025-07-24T03:54:19.4132090Z [4626/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/tensor_util.cpp.o 2025-07-24T03:54:19.4365670Z [4627/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/monitor/events.cpp.o 2025-07-24T03:54:19.4456970Z [4628/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape.cpp.o 2025-07-24T03:54:19.6126130Z [4629/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/mtia/profiler/MTIAMemoryProfiler.cpp.o 2025-07-24T03:54:19.6224180Z [4630/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/trie.cpp.o 2025-07-24T03:54:19.7224660Z [4631/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/core/shape_inference.cpp.o 2025-07-24T03:54:19.7536190Z [4632/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/combined_traceback.cpp.o 2025-07-24T03:54:19.7557920Z [4633/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_client_interface.cpp.o 2025-07-24T03:54:19.7822070Z [4634/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/data_flow.cpp.o 2025-07-24T03:54:19.8489280Z [4635/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/collection.cpp.o 2025-07-24T03:54:19.8589670Z [4636/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/kineto_shim.cpp.o 2025-07-24T03:54:19.8740820Z [4637/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/perf.cpp.o 2025-07-24T03:54:19.8933210Z [4638/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/observer.cpp.o 2025-07-24T03:54:19.9681310Z [4639/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/python_tracer.cpp.o 2025-07-24T03:54:19.9919540Z [4640/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind_fb.cpp.o 2025-07-24T03:54:20.0757960Z [4641/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/orchestration/vulkan.cpp.o 2025-07-24T03:54:20.1064080Z [4642/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/stubs/base.cpp.o 2025-07-24T03:54:20.1296840Z [4643/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/unwind/unwind.cpp.o 2025-07-24T03:54:20.1908490Z [4644/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/nvtx_observer.cpp.o 2025-07-24T03:54:20.2159020Z [4645/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/itt_observer.cpp.o 2025-07-24T03:54:20.2259010Z [4646/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/privateuse1_observer.cpp.o 2025-07-24T03:54:20.2464200Z [4647/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/cpp_stacktraces.cpp.o 2025-07-24T03:54:20.2510820Z [4648/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/standalone/execution_trace_observer.cpp.o 2025-07-24T03:54:20.4694040Z [4649/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/profiler/util.cpp.o 2025-07-24T03:54:20.4988240Z [4650/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/variadic.cpp.o 2025-07-24T03:54:20.5282570Z [4651/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/schema_info.cpp.o 2025-07-24T03:54:20.6103080Z [4652/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_graph.cpp.o 2025-07-24T03:54:20.6730010Z [4653/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_inplace_ops.cpp.o 2025-07-24T03:54:20.8117980Z [4654/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/check_alias_annotation.cpp.o 2025-07-24T03:54:20.8400100Z [4655/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/utils/tensor_flatten.cpp.o 2025-07-24T03:54:20.8700160Z [4656/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/cuda/interface.cpp.o 2025-07-24T03:54:20.9368440Z [4657/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/autocast.cpp.o 2025-07-24T03:54:21.0789010Z [4658/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSDevice.mm.o 2025-07-24T03:54:21.0932370Z [4659/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize.cpp.o 2025-07-24T03:54:21.1080720Z [4660/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSEvent.mm.o 2025-07-24T03:54:21.1217090Z [4661/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.cpp.o 2025-07-24T03:54:21.2524760Z [4662/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/check_strict_fusion.cpp.o 2025-07-24T03:54:21.3232700Z [4663/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/batch_mm.cpp.o 2025-07-24T03:54:21.4524440Z [4664/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops_fulljit.cpp.o 2025-07-24T03:54:21.4626740Z [4665/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_pooling.cpp.o 2025-07-24T03:54:21.4882670Z [4666/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/common_subexpression_elimination.cpp.o 2025-07-24T03:54:21.5178470Z [4667/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/concat_opt.cpp.o 2025-07-24T03:54:21.5483460Z [4668/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_profiling.cpp.o 2025-07-24T03:54:21.6535010Z [4669/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/constant_propagation.cpp.o 2025-07-24T03:54:21.6824000Z [4670/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_autodiff_subgraphs.cpp.o 2025-07-24T03:54:21.7390290Z [4671/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dead_code_elimination.cpp.o 2025-07-24T03:54:21.7970200Z [4672/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/clear_undefinedness.cpp.o 2025-07-24T03:54:21.8741620Z [4673/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/decompose_ops.cpp.o 2025-07-24T03:54:21.8854290Z [4674/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/create_functional_graphs.cpp.o 2025-07-24T03:54:21.9564020Z [4675/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/device_type_analysis.cpp.o 2025-07-24T03:54:21.9630560Z [4676/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.cpp.o 2025-07-24T03:54:21.9981460Z [4677/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/dtype_analysis.cpp.o 2025-07-24T03:54:22.0447680Z [4678/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/eliminate_no_ops.cpp.o 2025-07-24T03:54:22.2107380Z [4679/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_conv_bn.cpp.o 2025-07-24T03:54:22.2207820Z [4680/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fixup_trace_scope_blocks.cpp.o 2025-07-24T03:54:22.2441060Z [4681/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/erase_number_types.cpp.o 2025-07-24T03:54:22.2561590Z [4682/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fold_linear_bn.cpp.o 2025-07-24T03:54:22.3367280Z [4683/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_concat_linear.cpp.o 2025-07-24T03:54:22.3621250Z [4684/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_graph_optimizations.cpp.o 2025-07-24T03:54:22.3696270Z [4685/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.cpp.o 2025-07-24T03:54:22.5574640Z [4686/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_conv_folding.cpp.o 2025-07-24T03:54:22.5617620Z [4687/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_transpose.cpp.o 2025-07-24T03:54:22.6267070Z [4688/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/freeze_module.cpp.o 2025-07-24T03:54:22.6641270Z [4689/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_linear_folding.cpp.o 2025-07-24T03:54:22.6733870Z [4690/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_relu.cpp.o 2025-07-24T03:54:22.7915210Z [4691/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/fuse_linear.cpp.o 2025-07-24T03:54:22.9678590Z [4692/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_rewrite_helper.cpp.o 2025-07-24T03:54:23.0032270Z [4693/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/frozen_ops_to_mkldnn.cpp.o 2025-07-24T03:54:23.0070930Z [4694/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_autodiff_subgraphs.cpp.o 2025-07-24T03:54:23.0406050Z [4695/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_forked_closures.cpp.o 2025-07-24T03:54:23.0508670Z [4696/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/hoist_conv_packed_params.cpp.o 2025-07-24T03:54:23.0828360Z [4697/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/graph_fuser.cpp.o 2025-07-24T03:54:23.1030430Z [4698/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/guard_elimination.cpp.o 2025-07-24T03:54:23.1258040Z [4699/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inline_fork_wait.cpp.o 2025-07-24T03:54:23.2929370Z [4700/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inliner.cpp.o 2025-07-24T03:54:23.4007340Z [4701/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/inplace_check.cpp.o 2025-07-24T03:54:23.4555200Z [4702/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lift_closures.cpp.o 2025-07-24T03:54:23.4659140Z [4703/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/integer_value_refinement.cpp.o 2025-07-24T03:54:23.4762350Z [4704/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/loop_unrolling.cpp.o 2025-07-24T03:54:23.4929700Z [4705/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_grad_of.cpp.o 2025-07-24T03:54:23.6032800Z [4706/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/lower_tuples.cpp.o 2025-07-24T03:54:23.7270780Z [4707/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/insert_guards.cpp.o 2025-07-24T03:54:23.7468580Z [4708/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/liveness.cpp.o 2025-07-24T03:54:23.8589410Z [4709/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/normalize_ops.cpp.o 2025-07-24T03:54:23.8691670Z [4710/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/pass_manager.cpp.o 2025-07-24T03:54:23.9227910Z [4711/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole.cpp.o 2025-07-24T03:54:23.9360280Z [4712/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_alias_sensitive.cpp.o 2025-07-24T03:54:24.0405580Z [4713/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/metal_rewrite.cpp.o 2025-07-24T03:54:24.0651780Z [4714/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_list_idioms.cpp.o 2025-07-24T03:54:24.0753050Z [4715/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_dict_idioms.cpp.o 2025-07-24T03:54:24.2547310Z [4716/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/prepack_folding.cpp.o 2025-07-24T03:54:24.2748230Z [4717/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/mkldnn_rewrite.cpp.o 2025-07-24T03:54:24.2791380Z [4718/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/peephole_non_tensor.cpp.o 2025-07-24T03:54:24.2811720Z [4719/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/dedup_module_uses.cpp.o 2025-07-24T03:54:24.3400280Z [4720/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/fusion_passes.cpp.o 2025-07-24T03:54:24.3706470Z [4721/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/quantization_type.cpp.o 2025-07-24T03:54:24.5148020Z [4722/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_observers.cpp.o 2025-07-24T03:54:24.5636540Z [4723/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/helper.cpp.o 2025-07-24T03:54:24.6266640Z [4724/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_dropout.cpp.o 2025-07-24T03:54:24.6737090Z [4725/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_exceptions.cpp.o 2025-07-24T03:54:24.7424240Z [4726/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/insert_quant_dequant.cpp.o 2025-07-24T03:54:24.7492610Z [4727/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/refine_tuple_types.cpp.o 2025-07-24T03:54:24.7587580Z [4728/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_expands.cpp.o 2025-07-24T03:54:24.8618210Z [4729/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/finalize.cpp.o 2025-07-24T03:54:24.8718400Z [4730/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_mutation.cpp.o 2025-07-24T03:54:25.0290470Z [4731/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/quantization/register_packed_params.cpp.o 2025-07-24T03:54:25.0391610Z [4732/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/remove_redundant_profiles.cpp.o 2025-07-24T03:54:25.0434340Z [4733/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/restore_mutation.cpp.o 2025-07-24T03:54:25.0575260Z [4734/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/replacement_of_old_operators.cpp.o 2025-07-24T03:54:25.1665000Z [4735/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/shape_analysis.cpp.o 2025-07-24T03:54:25.1688890Z [4736/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/requires_grad_analysis.cpp.o 2025-07-24T03:54:25.2286500Z [4737/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/subgraph_rewrite.cpp.o 2025-07-24T03:54:25.3665670Z [4738/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_cache.cpp.o 2025-07-24T03:54:25.4388910Z [4739/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_analysis.cpp.o 2025-07-24T03:54:25.4515050Z [4740/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/memory_dag.cpp.o 2025-07-24T03:54:25.4836200Z [4741/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/op_registry.cpp.o 2025-07-24T03:54:25.5657730Z [4742/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/optimization_utils.cpp.o 2025-07-24T03:54:25.6055780Z [4743/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/specialize_autogradzero.cpp.o 2025-07-24T03:54:25.7113980Z [4744/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/utils/subgraph_utils.cpp.o 2025-07-24T03:54:25.7647100Z [4745/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.cpp.o 2025-07-24T03:54:25.7752660Z [4746/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.cpp.o 2025-07-24T03:54:25.8332100Z [4747/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/tensorexpr_fuser.cpp.o 2025-07-24T03:54:25.8432360Z [4748/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/utf8_decoding_ignore.cpp.o 2025-07-24T03:54:25.9207960Z [4749/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/value_refinement_utils.cpp.o 2025-07-24T03:54:25.9389490Z [4750/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/variadic_ops.cpp.o 2025-07-24T03:54:25.9678900Z [4751/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/python/update_graph_executor_opt.cpp.o 2025-07-24T03:54:26.0882800Z [4752/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/instruction.cpp.o 2025-07-24T03:54:26.1345950Z [4753/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/autodiff.cpp.o 2025-07-24T03:54:26.1737990Z [4754/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry.cpp.o 2025-07-24T03:54:26.1783900Z [4755/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/argument_spec.cpp.o 2025-07-24T03:54:26.2378410Z [4756/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/vulkan_rewrite.cpp.o 2025-07-24T03:54:26.2612740Z [4757/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/xnnpack_rewrite.cpp.o 2025-07-24T03:54:26.2726500Z [4758/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/decomposition_registry_util.cpp.o 2025-07-24T03:54:26.4299620Z [4759/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_exception.cpp.o 2025-07-24T03:54:26.4519630Z [4760/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/logging.cpp.o 2025-07-24T03:54:26.4893130Z [4761/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/preprocess_graph.cpp.o 2025-07-24T03:54:26.5697100Z [4762/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/print_handler.cpp.o 2025-07-24T03:54:26.6057610Z [4763/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/graph_executor.cpp.o 2025-07-24T03:54:26.8277470Z [4764/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter.cpp.o 2025-07-24T03:54:26.8509220Z [4765/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/interpreter/frame.cpp.o 2025-07-24T03:54:26.9132460Z [4766/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/jit_trace.cpp.o 2025-07-24T03:54:26.9434770Z [4767/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/script_profile.cpp.o 2025-07-24T03:54:27.0278690Z [4768/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_graph_executor_impl.cpp.o 2025-07-24T03:54:27.0802370Z [4769/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/operator.cpp.o 2025-07-24T03:54:27.1137930Z [4770/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/read_adapter_interface.cc.o 2025-07-24T03:54:27.1674300Z [4771/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/profiling_record.cpp.o 2025-07-24T03:54:27.1719070Z [4772/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_c10_ops.cpp.o 2025-07-24T03:54:27.1984940Z [4773/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/string_utils.cc.o 2025-07-24T03:54:27.2194160Z [4774/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_ops_utils.cpp.o 2025-07-24T03:54:27.2545270Z [4775/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/thread_pool_guard.cpp.o 2025-07-24T03:54:27.2968180Z [4776/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/serialized_shape_function_registry.cpp.o 2025-07-24T03:54:27.3514090Z [4777/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/ThreadPool.cc.o 2025-07-24T03:54:27.4102850Z [4778/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/threadpool/pthreadpool-cpp.cc.o 2025-07-24T03:54:27.4481460Z [4779/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/perfkernels/embedding_lookup_idx.cc.o 2025-07-24T03:54:27.4693220Z [4780/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/utils/proto_wrap.cc.o 2025-07-24T03:54:27.5990330Z [4781/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/runtime/register_prim_ops.cpp.o 2025-07-24T03:54:27.6362590Z [4782/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ViewFuncs.cpp.o 2025-07-24T03:54:27.7574840Z [4783/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSFallback.mm.o 2025-07-24T03:54:28.0063060Z [4784/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/Functions.cpp.o 2025-07-24T03:54:28.0400090Z [4785/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_0.cpp.o 2025-07-24T03:54:28.0993510Z [4786/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_1.cpp.o 2025-07-24T03:54:28.1258370Z [4787/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_2.cpp.o 2025-07-24T03:54:28.1612380Z [4788/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_0.cpp.o 2025-07-24T03:54:28.1715580Z [4789/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_1.cpp.o 2025-07-24T03:54:28.2049280Z [4790/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_3.cpp.o 2025-07-24T03:54:28.2250420Z [4791/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/VariableType_4.cpp.o 2025-07-24T03:54:28.4284770Z [4792/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_2.cpp.o 2025-07-24T03:54:28.4397050Z [4793/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_3.cpp.o 2025-07-24T03:54:28.5170210Z [4794/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterAutogradLazy.cpp.o 2025-07-24T03:54:28.5339790Z [4795/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/TraceType_4.cpp.o 2025-07-24T03:54:28.5644370Z [4796/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.cpp.o 2025-07-24T03:54:28.6370510Z [4797/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_0.cpp.o 2025-07-24T03:54:28.6411100Z [4798/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/generated/ADInplaceOrViewType_1.cpp.o 2025-07-24T03:54:28.6937470Z [4799/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.cpp.o 2025-07-24T03:54:28.7076620Z [4800/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/RegisterLazy.cpp.o 2025-07-24T03:54:28.8426770Z [4801/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/anomaly_mode.cpp.o 2025-07-24T03:54:28.8579950Z [4802/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd.cpp.o 2025-07-24T03:54:28.9380380Z [4803/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_meta.cpp.o 2025-07-24T03:54:28.9690150Z [4804/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/cpp_hook.cpp.o 2025-07-24T03:54:29.0320850Z [4805/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/autograd_not_implemented_fallback.cpp.o 2025-07-24T03:54:29.0739700Z [4806/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/lazy/generated/LazyNativeFunctions.cpp.o 2025-07-24T03:54:29.0769960Z [4807/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/engine.cpp.o 2025-07-24T03:54:29.1868300Z [4808/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/forward_grad.cpp.o 2025-07-24T03:54:29.2234490Z [4809/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/custom_function.cpp.o 2025-07-24T03:54:29.4214930Z [4810/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/utils.cpp.o 2025-07-24T03:54:29.4604370Z [4811/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_metadata.cpp.o 2025-07-24T03:54:29.4626900Z [4812/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/jit_decomp_interface.cpp.o 2025-07-24T03:54:29.5052260Z [4813/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/function.cpp.o 2025-07-24T03:54:29.6026630Z [4814/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/basic_ops.cpp.o 2025-07-24T03:54:29.6230520Z [4815/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/accumulate_grad.cpp.o 2025-07-24T03:54:29.7284100Z [4816/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/functions/tensor.cpp.o 2025-07-24T03:54:29.7504300Z [4817/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_kineto.cpp.o 2025-07-24T03:54:29.7742520Z [4818/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/input_buffer.cpp.o 2025-07-24T03:54:29.7777860Z [4819/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/profiler_legacy.cpp.o 2025-07-24T03:54:29.8742970Z [4820/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/utils/warnings.cpp.o 2025-07-24T03:54:29.8979460Z [4821/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/record_function_ops.cpp.o 2025-07-24T03:54:29.9339400Z [4822/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/saved_variable.cpp.o 2025-07-24T03:54:30.0911580Z [4823/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable_info.cpp.o 2025-07-24T03:54:30.1121080Z [4824/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/dynamo/compiled_autograd.cpp.o 2025-07-24T03:54:30.1528330Z [4825/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_cpu.cpp.o 2025-07-24T03:54:30.2193680Z [4826/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_package/model_package_loader.cpp.o 2025-07-24T03:54:30.2682410Z [4827/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/mkldnn_tensor.cpp.o 2025-07-24T03:54:30.2793240Z [4828/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner.cpp.o 2025-07-24T03:54:30.3020250Z [4829/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/oss_proxy_executor.cpp.o 2025-07-24T03:54:30.4380910Z [4830/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/autograd/variable.cpp.o 2025-07-24T03:54:30.4519620Z [4831/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.cpp.o 2025-07-24T03:54:30.4621230Z [4832/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/tensor_converter.cpp.o 2025-07-24T03:54:30.6436670Z [4833/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_common.cpp.o 2025-07-24T03:54:30.6539290Z [4834/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/object.cpp.o 2025-07-24T03:54:30.7119000Z [4835/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_handler.cpp.o 2025-07-24T03:54:30.7227120Z [4836/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/module.cpp.o 2025-07-24T03:54:30.7429830Z [4837/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_debug_info.cpp.o 2025-07-24T03:54:30.8417880Z [4838/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_detail.cpp.o 2025-07-24T03:54:30.8659800Z [4839/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/api/function_impl.cpp.o 2025-07-24T03:54:30.9283000Z [4840/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/inductor_ops.cpp.o 2025-07-24T03:54:31.0191360Z [4841/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_interface.cpp.o 2025-07-24T03:54:31.0507350Z [4842/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/backends/backend_resolver.cpp.o 2025-07-24T03:54:31.2757610Z [4843/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/builtin_functions.cpp.o 2025-07-24T03:54:31.3816970Z [4844/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/fallback.cpp.o 2025-07-24T03:54:31.3919800Z [4845/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/edit_distance.cpp.o 2025-07-24T03:54:31.4025660Z [4846/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/codegen.cpp.o 2025-07-24T03:54:31.4065730Z [4847/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/canonicalize_modified_loop.cpp.o 2025-07-24T03:54:31.4269580Z [4848/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/compiler.cpp.o 2025-07-24T03:54:31.4423980Z [4849/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/interface.cpp.o 2025-07-24T03:54:31.4693740Z [4850/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/executor.cpp.o 2025-07-24T03:54:31.5078430Z [4851/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/codegen/fuser/kernel_cache.cpp.o 2025-07-24T03:54:31.6718380Z [4852/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/name_mangler.cpp.o 2025-07-24T03:54:31.6982710Z [4853/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/parser.cpp.o 2025-07-24T03:54:31.7790580Z [4854/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/exit_transforms.cpp.o 2025-07-24T03:54:31.8032160Z [4855/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/convert_to_ssa.cpp.o 2025-07-24T03:54:31.8076840Z [4856/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/inline_loop_condition.cpp.o 2025-07-24T03:54:31.8452930Z [4857/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/schema_matching.cpp.o 2025-07-24T03:54:31.9039540Z [4858/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/ir_emitter.cpp.o 2025-07-24T03:54:31.9371230Z [4859/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/script_type_parser.cpp.o 2025-07-24T03:54:32.0806060Z [4860/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/sugared_value.cpp.o 2025-07-24T03:54:32.1163530Z [4861/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/tracer.cpp.o 2025-07-24T03:54:32.1216010Z [4862/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/frontend/versioned_symbols.cpp.o 2025-07-24T03:54:32.1975030Z [4863/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/alias_analysis.cpp.o 2025-07-24T03:54:32.2600520Z [4864/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/attributes.cpp.o 2025-07-24T03:54:32.3183880Z [4865/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/graph_utils.cpp.o 2025-07-24T03:54:32.3652950Z [4866/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/ir.cpp.o 2025-07-24T03:54:32.3770530Z [4867/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/irparser.cpp.o 2025-07-24T03:54:32.3784580Z [4868/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/node_hashing.cpp.o 2025-07-24T03:54:32.5372730Z [4869/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/type_hashing.cpp.o 2025-07-24T03:54:32.5511740Z [4870/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/scope.cpp.o 2025-07-24T03:54:32.6079690Z [4871/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_log.cpp.o 2025-07-24T03:54:32.6120080Z [4872/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/subgraph_matcher.cpp.o 2025-07-24T03:54:32.7171180Z [4873/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/jit_opt_limit.cpp.o 2025-07-24T03:54:32.7874520Z [4874/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/ir/constants.cpp.o 2025-07-24T03:54:32.8014600Z [4875/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/import.cpp.o 2025-07-24T03:54:32.8101360Z [4876/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/function.cpp.o 2025-07-24T03:54:33.0025450Z [4877/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/runtime_compatibility.cpp.o 2025-07-24T03:54:33.0122440Z [4878/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/compatibility/model_compatibility.cpp.o 2025-07-24T03:54:33.0360150Z [4879/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/interpreter.cpp.o 2025-07-24T03:54:33.1015640Z [4880/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/registry.cpp.o 2025-07-24T03:54:33.1116220Z [4881/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/module.cpp.o 2025-07-24T03:54:33.1282760Z [4882/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/backend.cpp.o 2025-07-24T03:54:33.1320510Z [4883/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/observer.cpp.o 2025-07-24T03:54:33.3180290Z [4884/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/flatbuffer_loader.cpp.o 2025-07-24T03:54:33.3993360Z [4885/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_bytecode.cpp.o 2025-07-24T03:54:33.4018930Z [4886/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/parse_operators.cpp.o 2025-07-24T03:54:33.4266870Z [4887/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/prim_ops_registery.cpp.o 2025-07-24T03:54:33.4485280Z [4888/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/aot_compiler.cpp.o 2025-07-24T03:54:33.5149800Z [4889/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/nnc/context.cpp.o 2025-07-24T03:54:33.5169100Z [4890/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/quantization.cpp.o 2025-07-24T03:54:33.5866200Z [4891/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/promoted_prim_ops.cpp.o 2025-07-24T03:54:33.6483420Z [4892/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/register_ops_common_utils.cpp.o 2025-07-24T03:54:33.7134460Z [4893/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/version_map.cpp.o 2025-07-24T03:54:33.7344250Z [4894/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/utils.cpp.o 2025-07-24T03:54:33.7457430Z [4895/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/upgrader_mobile.cpp.o 2025-07-24T03:54:33.7564700Z [4896/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/mobile/type_parser.cpp.o 2025-07-24T03:54:33.7607570Z [4897/5147] Building CXX object caffe2/CMakeFiles/torch.dir/__/empty.cpp.o 2025-07-24T03:54:33.9101480Z [4898/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders.cpp.o 2025-07-24T03:54:33.9216320Z [4899/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/operator_upgraders/upgraders_entry.cpp.o 2025-07-24T03:54:33.9994290Z [4900/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/add_if_then_else.cpp.o 2025-07-24T03:54:34.0492380Z [4901/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/annotate_warns.cpp.o 2025-07-24T03:54:34.0781280Z [4902/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGeneratorImpl.mm.o 2025-07-24T03:54:34.2742850Z [4903/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Equal.cpp.o 2025-07-24T03:54:34.4011900Z [4904/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/jit/passes/bailout_graph.cpp.o 2025-07-24T03:54:34.5149660Z [4905/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSHooks.mm.o 2025-07-24T03:54:34.5160290Z [4906/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSGuardImpl.mm.o 2025-07-24T03:54:34.5383330Z [4907/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSStream.mm.o 2025-07-24T03:54:34.6346680Z [4908/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/mps/MPSProfiler.mm.o 2025-07-24T03:54:34.6519720Z [4909/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/TensorFactory.cpp.o 2025-07-24T03:54:34.7498680Z [4910/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/OperationUtils.mm.o 2025-07-24T03:54:35.0020130Z [4911/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Activation.mm.o 2025-07-24T03:54:35.0260260Z [4912/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ActivationKernel.mm.o 2025-07-24T03:54:35.1560530Z [4913/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/AdaptivePooling.mm.o 2025-07-24T03:54:35.2267340Z [4914/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Attention.mm.o 2025-07-24T03:54:35.2319790Z [4915/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryKernel.mm.o 2025-07-24T03:54:35.3421100Z [4916/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BitwiseOps.mm.o 2025-07-24T03:54:35.3716130Z [4917/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Amp.mm.o 2025-07-24T03:54:35.4426130Z [4918/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/BinaryOps.mm.o 2025-07-24T03:54:35.6677940Z [4919/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Blas.mm.o 2025-07-24T03:54:35.6984740Z [4920/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Bucketization.mm.o 2025-07-24T03:54:35.7066890Z [4921/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ConstantOps.mm.o 2025-07-24T03:54:35.8302640Z [4922/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Col2Im.mm.o 2025-07-24T03:54:35.8782320Z [4923/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Convolution.mm.o 2025-07-24T03:54:35.9990410Z [4924/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Copy.mm.o 2025-07-24T03:54:36.0279030Z [4925/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/CrossKernel.mm.o 2025-07-24T03:54:36.0294300Z [4926/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernel.mm.o 2025-07-24T03:54:36.2396080Z [4927/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Distributions.mm.o 2025-07-24T03:54:36.2552480Z [4928/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernel.mm.o 2025-07-24T03:54:36.4000540Z [4929/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Eye.mm.o 2025-07-24T03:54:36.4663960Z [4930/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FastFourierTransform.mm.o 2025-07-24T03:54:36.5359810Z [4931/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamKernelImpl.mm.o 2025-07-24T03:54:36.5732200Z [4932/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.mm.o 2025-07-24T03:54:36.6407040Z [4933/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/GridSampler.mm.o 2025-07-24T03:54:36.7658380Z [4934/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.mm.o 2025-07-24T03:54:36.8141350Z [4935/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedSgdKernel.mm.o 2025-07-24T03:54:36.9500880Z [4936/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Gamma.mm.o 2025-07-24T03:54:37.1211140Z [4937/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/HistogramKernel.mm.o 2025-07-24T03:54:37.1311140Z [4938/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/FusedAdamWKernelImpl.mm.o 2025-07-24T03:54:37.2779570Z [4939/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Im2Col.mm.o 2025-07-24T03:54:37.3402740Z [4940/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Indexing.mm.o 2025-07-24T03:54:37.3434250Z [4941/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Lerp.mm.o 2025-07-24T03:54:37.3710510Z [4942/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Linear.mm.o 2025-07-24T03:54:37.3718870Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/Linear.mm:50:17: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-07-24T03:54:37.3721510Z [kernel encodeToCommandEncoder:computeEncoder 2025-07-24T03:54:37.3722540Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:54:37.3724710Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Headers/MPSNDArrayMatrixMultiplication.h:37:12: note: receiver is instance of class declared here 2025-07-24T03:54:37.3727090Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-07-24T03:54:37.3727780Z ^ 2025-07-24T03:54:37.3729740Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/Linear.mm:61:17: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-07-24T03:54:37.3731930Z [kernel encodeToCommandEncoder:computeEncoder 2025-07-24T03:54:37.3732500Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:54:37.3734640Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Headers/MPSNDArrayMatrixMultiplication.h:37:12: note: receiver is instance of class declared here 2025-07-24T03:54:37.3737020Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-07-24T03:54:37.3737700Z ^ 2025-07-24T03:54:37.3738040Z 2 warnings generated. 2025-07-24T03:54:37.5154820Z [4943/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LinearAlgebra.mm.o 2025-07-24T03:54:37.5256420Z /Users/ec2-user/runner/_work/pytorch/pytorch/aten/src/ATen/native/mps/operations/LinearAlgebra.mm:853:21: warning: instance method '-encodeToCommandEncoder:commandBuffer:sourceArrays:destinationArray:' not found (return type defaults to 'id') [-Wobjc-method-access] 2025-07-24T03:54:37.5359560Z [matmul encodeToCommandEncoder:computeEncoder 2025-07-24T03:54:37.5460010Z ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2025-07-24T03:54:37.5462450Z /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/Headers/MPSNDArrayMatrixMultiplication.h:37:12: note: receiver is instance of class declared here 2025-07-24T03:54:37.5508930Z @interface MPSNDArrayMatrixMultiplication : MPSNDArrayMultiaryKernel 2025-07-24T03:54:37.5510840Z ^ 2025-07-24T03:54:37.5511070Z 1 warning generated. 2025-07-24T03:54:37.6338790Z [4944/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Normalization.mm.o 2025-07-24T03:54:37.7897460Z [4945/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PixelShuffle.mm.o 2025-07-24T03:54:37.8136410Z [4946/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/LossOps.mm.o 2025-07-24T03:54:37.9036340Z [4947/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pad.mm.o 2025-07-24T03:54:37.9750820Z [4948/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/PointwiseOps.mm.o 2025-07-24T03:54:38.0033630Z [4949/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Quantized.mm.o 2025-07-24T03:54:38.0961250Z [4950/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Pooling.mm.o 2025-07-24T03:54:38.1393710Z [4951/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RMSNorm.mm.o 2025-07-24T03:54:38.3061010Z [4952/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RangeFactories.mm.o 2025-07-24T03:54:38.5221480Z [4953/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RenormKernel.mm.o 2025-07-24T03:54:38.5897850Z [4954/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/RnnOps.mm.o 2025-07-24T03:54:38.6032030Z [4955/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ReduceOps.mm.o 2025-07-24T03:54:38.6152510Z [4956/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Scalar.mm.o 2025-07-24T03:54:38.6195020Z [4957/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Repeat.mm.o 2025-07-24T03:54:38.6534400Z [4958/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScanKernel.mm.o 2025-07-24T03:54:38.7634190Z [4959/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/ScatterGather.mm.o 2025-07-24T03:54:39.0901250Z [4960/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SoftMax.mm.o 2025-07-24T03:54:39.1685940Z [4961/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Sort.mm.o 2025-07-24T03:54:39.2167180Z [4962/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Shape.mm.o 2025-07-24T03:54:39.2796920Z [4963/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SpecialOps.mm.o 2025-07-24T03:54:39.3056000Z [4964/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/SummaryOps.mm.o 2025-07-24T03:54:39.3156680Z [4965/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryOps.mm.o 2025-07-24T03:54:39.3505350Z [4966/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TensorCompare.mm.o 2025-07-24T03:54:39.4670850Z [4967/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/TriangularOps.mm.o 2025-07-24T03:54:39.6592340Z [4968/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.cpp.o 2025-07-24T03:54:39.8040860Z [4969/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnaryKernel.mm.o 2025-07-24T03:54:39.8408940Z [4970/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UnfoldBackward.mm.o 2025-07-24T03:54:39.9485680Z [4971/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/UpSample.mm.o 2025-07-24T03:54:39.9571490Z [4972/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/WeightNorm.mm.o 2025-07-24T03:54:39.9896740Z [4973/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_runner/model_container_runner_mps.cpp.o 2025-07-24T03:54:40.0100830Z [4974/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/Unique.mm.o 2025-07-24T03:54:40.0289130Z [4975/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/mps/operations/View.mm.o 2025-07-24T03:54:40.0529780Z [4976/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/torch/csrc/inductor/aoti_torch/shim_mps.mm.o 2025-07-24T03:54:40.0819880Z [4977/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/AveragePooling.cpp.o 2025-07-24T03:54:40.1069700Z [4978/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Init.cpp.o 2025-07-24T03:54:40.1285270Z [4979/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/ChannelShuffle.cpp.o 2025-07-24T03:54:40.1744130Z [4980/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Shim.cpp.o 2025-07-24T03:54:40.2166650Z [4981/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Convolution.cpp.o 2025-07-24T03:54:40.3734590Z [4982/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/OpContext.cpp.o 2025-07-24T03:54:40.3958890Z [4983/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/Linear.cpp.o 2025-07-24T03:54:40.4816100Z [4984/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/RegisterOpContextClass.cpp.o 2025-07-24T03:54:40.5111880Z [4985/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/xnnpack/MaxPooling.cpp.o 2025-07-24T03:54:40.5632850Z [4986/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_0.cpp.o 2025-07-24T03:54:40.5860650Z [4987/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/CompositeViewCopyKernels.cpp.o 2025-07-24T03:54:40.6264770Z [4988/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_1.cpp.o 2025-07-24T03:54:40.8236670Z [4989/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterBackendSelect.cpp.o 2025-07-24T03:54:40.8357460Z [4990/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_2.cpp.o 2025-07-24T03:54:40.8427290Z [4991/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_3.cpp.o 2025-07-24T03:54:40.8834630Z [4992/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Functions.cpp.o 2025-07-24T03:54:40.9003540Z [4993/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/Operators_4.cpp.o 2025-07-24T03:54:40.9788810Z [4994/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_0.cpp.o 2025-07-24T03:54:41.0308410Z [4995/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_2.cpp.o 2025-07-24T03:54:41.0556500Z [4996/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_1.cpp.o 2025-07-24T03:54:41.2872170Z [4997/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCPU_3.cpp.o 2025-07-24T03:54:41.3107340Z [4998/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutograd_0.cpp.o 2025-07-24T03:54:41.3519160Z [4999/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutogradNestedTensor_0.cpp.o 2025-07-24T03:54:41.3955580Z [5000/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeImplicitAutograd_0.cpp.o 2025-07-24T03:54:41.4326250Z [5001/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMeta_0.cpp.o 2025-07-24T03:54:41.4435220Z [5002/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_0.cpp.o 2025-07-24T03:54:41.4905800Z [5003/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterCompositeExplicitAutogradNonFunctional_0.cpp.o 2025-07-24T03:54:41.4959520Z [5004/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_1.cpp.o 2025-07-24T03:54:41.5449440Z [5005/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_2.cpp.o 2025-07-24T03:54:41.6660320Z [5006/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterFunctionalization_3.cpp.o 2025-07-24T03:54:41.7672670Z [5007/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMkldnnCPU_0.cpp.o 2025-07-24T03:54:41.8335730Z [5008/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorXPU_0.cpp.o 2025-07-24T03:54:41.8712410Z [5009/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorMeta_0.cpp.o 2025-07-24T03:54:41.8731550Z [5010/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorCPU_0.cpp.o 2025-07-24T03:54:41.9140390Z [5011/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedMeta_0.cpp.o 2025-07-24T03:54:41.9288520Z [5012/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterNestedTensorHPU_0.cpp.o 2025-07-24T03:54:41.9496970Z [5013/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterQuantizedCPU_0.cpp.o 2025-07-24T03:54:41.9678940Z [5014/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterMPS_0.cpp.o 2025-07-24T03:54:42.0773690Z [5015/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSchema.cpp.o 2025-07-24T03:54:42.2036130Z [5016/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCPU_0.cpp.o 2025-07-24T03:54:42.2207560Z [5017/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrCPU_0.cpp.o 2025-07-24T03:54:42.2620730Z [5018/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMPS_0.cpp.o 2025-07-24T03:54:42.2984380Z [5019/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrXPU_0.cpp.o 2025-07-24T03:54:42.3558040Z [5020/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseXPU_0.cpp.o 2025-07-24T03:54:42.3835670Z [5021/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseCsrMeta_0.cpp.o 2025-07-24T03:54:42.4021190Z [5022/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMPS_0.cpp.o 2025-07-24T03:54:42.4154920Z [5023/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPU_add.cpp.o 2025-07-24T03:54:42.4192130Z [5024/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterSparseMeta_0.cpp.o 2025-07-24T03:54:42.5397560Z [5025/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/RegisterZeroTensor_0.cpp.o 2025-07-24T03:54:42.5979880Z [5026/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/ATenOpList.cpp.o 2025-07-24T03:54:42.6453940Z [5027/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_model_loader.cpp.o 2025-07-24T03:54:42.6777770Z [5028/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/core/TensorMethods.cpp.o 2025-07-24T03:54:42.6851020Z [5029/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/QTensorImpl.cpp.o 2025-07-24T03:54:42.6984410Z [5030/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_wrapper.cpp.o 2025-07-24T03:54:42.8093690Z [5031/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/UfuncCPUKernel_add.cpp.DEFAULT.cpp.o 2025-07-24T03:54:42.9660140Z [5032/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/spherical_bessel_j0.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.0223850Z [5033/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k1.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.0378880Z [5034/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_bind.cpp.o 2025-07-24T03:54:43.0522620Z [5035/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/quantized/Quantizer.cpp.o 2025-07-24T03:54:43.0704000Z [5036/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/nnapi/nnapi_register.cpp.o 2025-07-24T03:54:43.0706360Z [5037/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int8mm_kernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.0708100Z [5038/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/scaled_modified_bessel_k0.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.0955880Z [5039/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/quantized/cpu/kernels/QuantizedOpKernels.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.3313860Z [5040/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/layer_norm_kernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.3580600Z [5041/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/WeightNormKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.3680870Z [5042/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Unfold2d.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.3863090Z [5043/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/airy_ai.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.4298970Z [5044/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/int4mm_kernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.4846760Z [5045/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleMoreKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.5197500Z [5046/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/group_norm_kernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.5249530Z [5047/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/batch_norm_kernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.6867420Z [5048/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SumKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.7018330Z [5049/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnfoldBackwardKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.7286550Z [5050/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/StackKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.7674710Z [5051/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UpSampleKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.7958050Z [5052/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SparseFactories.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.8159550Z [5053/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/TensorCompareKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.8647710Z [5054/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/UnaryOpsKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.9563080Z [5055/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SortingKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:43.9850990Z [5056/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/crc.cc.o 2025-07-24T03:54:43.9942440Z [5057/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SoftMaxKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.0257310Z [5058/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SpmmReduceKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.1156720Z [5059/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.1189750Z [5060/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RenormKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.1826860Z [5061/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/file_adapter.cc.o 2025-07-24T03:54:44.2142530Z [5062/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceOpsKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.2189240Z [5063/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/SampledAddmmKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.2424610Z [5064/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/serialize/istream_adapter.cc.o 2025-07-24T03:54:44.2749590Z [5065/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ScatterGatherKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.4191490Z [5066/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PowKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.4218540Z [5067/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/RangeFactoriesKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.4937060Z [5068/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ReduceAllOpsKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.5072760Z [5069/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PointwiseOpsKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.5293770Z [5070/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PixelShuffleKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.6130410Z [5071/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/PaddingKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.6433880Z [5072/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/NativeMultiheadAttnKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.7395790Z [5073/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxUnpoolKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.8077620Z [5074/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPooling.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.8086100Z [5075/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LerpKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.8394310Z [5076/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MultinomialKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.8771060Z [5077/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/LinearAlgebraKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.9041820Z [5078/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/IndexKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.9325270Z [5079/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/MaxPoolKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:44.9673400Z [5080/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalUpsamplingNearest.mm.o 2025-07-24T03:54:45.0999520Z [5081/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedSGDKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.1277690Z [5082/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/HistogramKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.1378080Z [5083/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/GridSamplerKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.1628260Z [5084/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FillKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.1855060Z [5085/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FunctionOfAMatrixUtilsKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.1932880Z [5086/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdamKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.2716010Z [5087/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FusedAdagradKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.4166720Z [5088/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistanceOpsKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.4523490Z [5089/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CrossKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.5108640Z [5090/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/FlashAttentionKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.5134100Z [5091/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DepthwiseConvKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.5302290Z [5092/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ComplexKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.5308280Z [5093/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/DistributionKernels.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.5978400Z [5094/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CatKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.6850150Z [5095/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/ChannelShuffleKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.7245440Z [5096/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BlasKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.7745520Z [5097/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_ukernel_interface.cpp.o 2025-07-24T03:54:45.8992870Z [5098/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AvgPoolKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.9181830Z [5099/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveMaxPoolKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.9328820Z [5100/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AmpGradScalerKernels.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.9515010Z [5101/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/BinaryOpsKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.9558190Z [5102/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/AdaptiveAvgPoolKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:45.9592800Z [5103/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/Activation.cpp.DEFAULT.cpp.o 2025-07-24T03:54:46.0106490Z [5104/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/cpu/CopyKernel.cpp.DEFAULT.cpp.o 2025-07-24T03:54:46.1710410Z [5105/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/vulkan/Context.cpp.o 2025-07-24T03:54:46.1813500Z [5106/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/kleidiai/kai_kernels.cpp.o 2025-07-24T03:54:46.1882810Z [5107/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/metal/Context.cpp.o 2025-07-24T03:54:46.2345680Z [5108/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalGuardImpl.cpp.o 2025-07-24T03:54:46.2713220Z [5109/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalConvParams.mm.o 2025-07-24T03:54:46.5267080Z [5110/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalCommandBuffer.mm.o 2025-07-24T03:54:46.5761040Z [5111/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalContext.mm.o 2025-07-24T03:54:46.7840420Z [5112/5147] Building CXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalPrepackOpRegister.cpp.o 2025-07-24T03:54:46.7947410Z [5113/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorImplStorage.mm.o 2025-07-24T03:54:46.8057970Z [5114/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNClampOp.mm.o 2025-07-24T03:54:46.8824510Z [5115/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalTensorUtils.mm.o 2025-07-24T03:54:46.9842500Z [5116/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImage+Tensor.mm.o 2025-07-24T03:54:46.9927530Z [5117/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNUtils.mm.o 2025-07-24T03:54:47.0308010Z [5118/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/MetalAten.mm.o 2025-07-24T03:54:47.1564540Z [5119/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNConvOp.mm.o 2025-07-24T03:54:47.2669370Z [5120/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNNeuronOp.mm.o 2025-07-24T03:54:47.5435540Z [5121/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageWrapper.mm.o 2025-07-24T03:54:47.5801980Z [5122/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalBinaryElementwise.mm.o 2025-07-24T03:54:47.6490810Z [5123/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalClamp.mm.o 2025-07-24T03:54:47.7062680Z [5124/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.mm.o 2025-07-24T03:54:47.8149890Z [5125/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalChunk.mm.o 2025-07-24T03:54:47.8625890Z [5126/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/mpscnn/MPSImageUtils.mm.o 2025-07-24T03:54:47.8667400Z [5127/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConcat.mm.o 2025-07-24T03:54:47.9197700Z [5128/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalAddmm.mm.o 2025-07-24T03:54:48.2164540Z [5129/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalCopy.mm.o 2025-07-24T03:54:48.3515180Z [5130/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardswish.mm.o 2025-07-24T03:54:48.3530620Z [5131/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalHardshrink.mm.o 2025-07-24T03:54:48.4280430Z [5132/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalLeakyReLU.mm.o 2025-07-24T03:54:48.4371770Z [5133/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalNeurons.mm.o 2025-07-24T03:54:48.4857970Z [5134/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalConvolution.mm.o 2025-07-24T03:54:48.4881340Z [5135/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPooling.mm.o 2025-07-24T03:54:48.5166040Z [5136/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalPadding.mm.o 2025-07-24T03:54:48.7572020Z [5137/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReshape.mm.o 2025-07-24T03:54:48.8326030Z [5138/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalReduce.mm.o 2025-07-24T03:54:48.9241680Z [5139/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalSoftmax.mm.o 2025-07-24T03:54:49.0583580Z [5140/5147] Building OBJCXX object caffe2/CMakeFiles/torch_cpu.dir/__/aten/src/ATen/native/metal/ops/MetalTranspose.mm.o 2025-07-24T03:54:49.8440760Z [5141/5147] Linking CXX shared library lib/libtorch_cpu.dylib 2025-07-24T03:54:49.8441220Z ld: warning: ignoring duplicate libraries: 'lib/libcpuinfo.a', 'lib/libnnpack.a', 'lib/libpthreadpool.a' 2025-07-24T03:54:49.9673560Z [5142/5147] Linking CXX shared library lib/libtorch.dylib 2025-07-24T03:54:49.9674180Z [5143/5147] Linking CXX shared library lib/libshm.dylib 2025-07-24T03:54:50.0376330Z [5144/5147] Linking CXX executable bin/torch_shm_manager 2025-07-24T03:54:50.1605740Z [5145/5147] Linking CXX shared library lib/libtorch_python.dylib 2025-07-24T03:54:50.2654920Z [5146/5147] Linking CXX shared module functorch/functorch.so 2025-07-24T03:54:50.2655190Z [5146/5147] Install the project... 2025-07-24T03:54:50.2718210Z -- Install configuration: "Release" 2025-07-24T03:54:55.4249710Z -- Checkout nccl release tag: v2.27.5-1 2025-07-24T03:54:55.4249940Z running bdist_wheel 2025-07-24T03:54:58.3821070Z running build 2025-07-24T03:54:58.3822250Z running build_py 2025-07-24T03:54:58.3852250Z creating build/lib.macosx-14.0-arm64-cpython-312 2025-07-24T03:54:58.3852760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3853450Z copying torch/_storage_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3862270Z copying torch/_meta_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3869300Z copying torch/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3873200Z copying torch/library.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3874510Z copying torch/_jit_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3902310Z copying torch/_thread_safe_fork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3902910Z copying torch/_custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3911120Z copying torch/return_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3924890Z copying torch/_size_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3932300Z copying torch/_torch_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3935510Z copying torch/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3936980Z copying torch/_utils_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3937950Z copying torch/quasirandom.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3946510Z copying torch/torch_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3960470Z copying torch/_VF.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3968320Z copying torch/_streambase.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3975610Z copying torch/_tensor_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.3977200Z copying torch/_weights_only_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4004770Z copying torch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4006080Z copying torch/overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4007750Z copying torch/_namedtensor_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4022340Z copying torch/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4030530Z copying torch/_linalg_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4050500Z copying torch/__config__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4057480Z copying torch/_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4058730Z copying torch/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4066110Z copying torch/hub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4089640Z copying torch/_tensor_str.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4105340Z copying torch/_sources.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4113330Z copying torch/_vmap_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4120690Z copying torch/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4156090Z copying torch/_lowrank.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4163680Z copying torch/_appdirs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4183880Z copying torch/_environment.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4191190Z copying torch/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4212730Z copying torch/_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4219880Z copying torch/_lobpcg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4234970Z copying torch/__future__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4243360Z copying torch/_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4264510Z copying torch/_deploy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4265420Z copying torch/_python_dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4273360Z copying torch/_classes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4287170Z copying torch/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4288420Z copying torch/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:54:58.4312180Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4312560Z copying torchgen/native_function_generation.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4314090Z copying torchgen/gen_vmap_plumbing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4315260Z copying torchgen/gen.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4316990Z copying torchgen/local.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4325600Z copying torchgen/gen_functionalization_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4326490Z copying torchgen/code_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4333780Z copying torchgen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4342170Z copying torchgen/yaml_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4350580Z copying torchgen/gen_aoti_c_shim.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4351820Z copying torchgen/model.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4353240Z copying torchgen/gen_schema_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4365780Z copying torchgen/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4366600Z copying torchgen/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4367850Z copying torchgen/gen_backend_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4369170Z copying torchgen/gen_lazy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen 2025-07-24T03:54:58.4371640Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-07-24T03:54:58.4371980Z copying functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch 2025-07-24T03:54:58.4381770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4382210Z copying torch/_higher_order_ops/flat_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4397840Z copying torch/_higher_order_ops/foreach_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4404620Z copying torch/_higher_order_ops/effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4414960Z copying torch/_higher_order_ops/_invoke_quant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4424640Z copying torch/_higher_order_ops/invoke_subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4439740Z copying torch/_higher_order_ops/aoti_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4446560Z copying torch/_higher_order_ops/while_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4461100Z copying torch/_higher_order_ops/base_hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4468160Z copying torch/_higher_order_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4481990Z copying torch/_higher_order_ops/strict_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4496260Z copying torch/_higher_order_ops/torchbind.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4502980Z copying torch/_higher_order_ops/cond.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4517370Z copying torch/_higher_order_ops/map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4525040Z copying torch/_higher_order_ops/hints_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4532510Z copying torch/_higher_order_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4547100Z copying torch/_higher_order_ops/out_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4554530Z copying torch/_higher_order_ops/executorch_call_delegate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4561880Z copying torch/_higher_order_ops/scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4576290Z copying torch/_higher_order_ops/run_const_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4584570Z copying torch/_higher_order_ops/associative_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4598830Z copying torch/_higher_order_ops/auto_functionalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4613410Z copying torch/_higher_order_ops/triton_kernel_wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4643530Z copying torch/_higher_order_ops/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4659580Z copying torch/_higher_order_ops/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4668010Z copying torch/_higher_order_ops/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops 2025-07-24T03:54:58.4677380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-24T03:54:58.4677750Z copying torch/_prims/debug_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-24T03:54:58.4690940Z copying torch/_prims/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-24T03:54:58.4712980Z copying torch/_prims/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-24T03:54:58.4720750Z copying torch/_prims/rng_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-24T03:54:58.4729410Z copying torch/_prims/executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims 2025-07-24T03:54:58.4744460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-24T03:54:58.4744850Z copying torch/_logging/_internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-24T03:54:58.4771140Z copying torch/_logging/scribe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-24T03:54:58.4778050Z copying torch/_logging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-24T03:54:58.4779050Z copying torch/_logging/_registrations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-24T03:54:58.4786880Z copying torch/_logging/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_logging 2025-07-24T03:54:58.4796580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4796990Z copying torch/_functorch/partitioners.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4827860Z copying torch/_functorch/compile_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4842170Z copying torch/_functorch/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4850130Z copying torch/_functorch/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4866180Z copying torch/_functorch/python_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4879950Z copying torch/_functorch/pytree_hacks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4887890Z copying torch/_functorch/pyfunctorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4895930Z copying torch/_functorch/deprecated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4902860Z copying torch/_functorch/top_operators_github_usage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4916980Z copying torch/_functorch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4924150Z copying torch/_functorch/batch_norm_replacement.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4930970Z copying torch/_functorch/fx_minifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4944870Z copying torch/_functorch/apis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4958700Z copying torch/_functorch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4965830Z copying torch/_functorch/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4990100Z copying torch/_functorch/compilers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.4998400Z copying torch/_functorch/eager_transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.5020240Z copying torch/_functorch/vmap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.5034140Z copying torch/_functorch/benchmark_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.5041070Z copying torch/_functorch/make_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.5055010Z copying torch/_functorch/functional_call.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch 2025-07-24T03:54:58.5064380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5064760Z copying torch/_numpy/_reductions_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5072060Z copying torch/_numpy/_getlimits.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5078880Z copying torch/_numpy/_unary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5091840Z copying torch/_numpy/_casting_dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5106720Z copying torch/_numpy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5115000Z copying torch/_numpy/_binary_ufuncs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5122440Z copying torch/_numpy/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5129580Z copying torch/_numpy/_dtypes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5137710Z copying torch/_numpy/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5146190Z copying torch/_numpy/_ndarray.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5161320Z copying torch/_numpy/_ufuncs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5168690Z copying torch/_numpy/_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5176600Z copying torch/_numpy/_normalizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5184270Z copying torch/_numpy/_dtypes_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5191140Z copying torch/_numpy/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5198620Z copying torch/_numpy/_funcs_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5219670Z copying torch/_numpy/_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy 2025-07-24T03:54:58.5228730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5229090Z copying torch/_export/error.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5236020Z copying torch/_export/tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5249860Z copying torch/_export/converter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5278470Z copying torch/_export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5286510Z copying torch/_export/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5301200Z copying torch/_export/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5322540Z copying torch/_export/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5336540Z copying torch/_export/non_strict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5351040Z copying torch/_export/verifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export 2025-07-24T03:54:58.5365560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-07-24T03:54:58.5365920Z copying torch/monitor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/monitor 2025-07-24T03:54:58.5374080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-07-24T03:54:58.5374520Z copying torch/_dispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-07-24T03:54:58.5375050Z copying torch/_dispatch/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch 2025-07-24T03:54:58.5390010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-24T03:54:58.5390440Z copying torch/_subclasses/functional_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-24T03:54:58.5404200Z copying torch/_subclasses/meta_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-24T03:54:58.5405580Z copying torch/_subclasses/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-24T03:54:58.5413670Z copying torch/_subclasses/_fake_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-24T03:54:58.5421510Z copying torch/_subclasses/fake_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-24T03:54:58.5423960Z copying torch/_subclasses/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-24T03:54:58.5481890Z copying torch/_subclasses/schema_check_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-24T03:54:58.5490330Z copying torch/_subclasses/fake_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses 2025-07-24T03:54:58.5499160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-07-24T03:54:58.5499520Z copying torch/futures/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/futures 2025-07-24T03:54:58.5507710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-07-24T03:54:58.5508080Z copying torch/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/linalg 2025-07-24T03:54:58.5537490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-07-24T03:54:58.5537870Z copying torch/_custom_op/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-07-24T03:54:58.5538600Z copying torch/_custom_op/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-07-24T03:54:58.5547060Z copying torch/_custom_op/impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op 2025-07-24T03:54:58.5562090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:54:58.5562430Z copying torch/nn/common_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:54:58.5569620Z copying torch/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:54:58.5576360Z copying torch/nn/_reduction.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:54:58.5583650Z copying torch/nn/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:54:58.5590530Z copying torch/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:54:58.5633230Z copying torch/nn/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:54:58.5653740Z copying torch/nn/grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:54:58.5661920Z copying torch/nn/parameter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:54:58.5670260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-07-24T03:54:58.5670590Z copying torch/mps/event.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-07-24T03:54:58.5678710Z copying torch/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-07-24T03:54:58.5685740Z copying torch/mps/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mps 2025-07-24T03:54:58.5701670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5702030Z copying torch/onnx/_type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5709890Z copying torch/onnx/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5717310Z copying torch/onnx/symbolic_opset15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5723940Z copying torch/onnx/_onnx_supported_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5730590Z copying torch/onnx/symbolic_opset7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5743810Z copying torch/onnx/symbolic_opset11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5773920Z copying torch/onnx/verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5796650Z copying torch/onnx/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5811280Z copying torch/onnx/symbolic_opset10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5812390Z copying torch/onnx/symbolic_opset20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5827130Z copying torch/onnx/symbolic_opset14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5835690Z copying torch/onnx/_globals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5850440Z copying torch/onnx/symbolic_helper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5884610Z copying torch/onnx/symbolic_opset9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5926620Z copying torch/onnx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5941900Z copying torch/onnx/symbolic_opset8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5948790Z copying torch/onnx/symbolic_opset19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5967480Z copying torch/onnx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.5989210Z copying torch/onnx/_experimental.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.6002290Z copying torch/onnx/symbolic_opset18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.6009270Z copying torch/onnx/errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.6028910Z copying torch/onnx/symbolic_opset13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.6042980Z copying torch/onnx/operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.6050800Z copying torch/onnx/symbolic_opset17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.6057510Z copying torch/onnx/symbolic_opset16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.6064260Z copying torch/onnx/symbolic_opset12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx 2025-07-24T03:54:58.6072650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-07-24T03:54:58.6073010Z copying torch/_vendor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor 2025-07-24T03:54:58.6074420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-07-24T03:54:58.6075010Z copying torch/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu 2025-07-24T03:54:58.6085890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6086320Z copying torch/distributed/_composable_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6100580Z copying torch/distributed/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6114270Z copying torch/distributed/rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6122500Z copying torch/distributed/run.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6137540Z copying torch/distributed/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6156020Z copying torch/distributed/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6164830Z copying torch/distributed/distributed_c10d.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6167150Z copying torch/distributed/argparse_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6180040Z copying torch/distributed/_checkpointable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6188000Z copying torch/distributed/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6201310Z copying torch/distributed/c10d_logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6220240Z copying torch/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6221140Z copying torch/distributed/_dist2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6235690Z copying torch/distributed/collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6243260Z copying torch/distributed/_functional_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6244300Z copying torch/distributed/launch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6252230Z copying torch/distributed/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6259690Z copying torch/distributed/remote_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6267130Z copying torch/distributed/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6268580Z copying torch/distributed/_functional_collectives_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed 2025-07-24T03:54:58.6284180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6284580Z copying torch/autograd/anomaly_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6298810Z copying torch/autograd/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6314390Z copying torch/autograd/forward_ad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6322030Z copying torch/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6337620Z copying torch/autograd/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6344840Z copying torch/autograd/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6367360Z copying torch/autograd/grad_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6375370Z copying torch/autograd/profiler_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6390150Z copying torch/autograd/profiler_legacy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6397990Z copying torch/autograd/gradcheck.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6427020Z copying torch/autograd/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6448920Z copying torch/autograd/function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd 2025-07-24T03:54:58.6465350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6465680Z copying torch/fx/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6474020Z copying torch/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6475070Z copying torch/fx/operator_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6491020Z copying torch/fx/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6504820Z copying torch/fx/proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6525730Z copying torch/fx/_lazy_graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6526550Z copying torch/fx/traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6527560Z copying torch/fx/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6556360Z copying torch/fx/tensor_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6564190Z copying torch/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6571340Z copying torch/fx/immutable_collections.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6590650Z copying torch/fx/annotate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6596940Z copying torch/fx/subgraph_rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6604450Z copying torch/fx/interpreter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6605540Z copying torch/fx/_symbolic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6626570Z copying torch/fx/node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6640260Z copying torch/fx/_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6647850Z copying torch/fx/_graph_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6661750Z copying torch/fx/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx 2025-07-24T03:54:58.6669740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-07-24T03:54:58.6670140Z copying torch/_prims_common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-07-24T03:54:58.6692870Z copying torch/_prims_common/wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common 2025-07-24T03:54:58.6707350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-24T03:54:58.6707790Z copying torch/multiprocessing/queue.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-24T03:54:58.6714940Z copying torch/multiprocessing/_atfork.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-24T03:54:58.6721030Z copying torch/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-24T03:54:58.6734630Z copying torch/multiprocessing/spawn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-24T03:54:58.6742090Z copying torch/multiprocessing/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-24T03:54:58.6755700Z copying torch/multiprocessing/pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing 2025-07-24T03:54:58.6765680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6766050Z copying torch/cuda/_pin_memory_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6779500Z copying torch/cuda/gds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6787260Z copying torch/cuda/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6794960Z copying torch/cuda/error.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6795550Z copying torch/cuda/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6809950Z copying torch/cuda/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6811070Z copying torch/cuda/jiterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6819240Z copying torch/cuda/nccl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6826960Z copying torch/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6828240Z copying torch/cuda/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6835900Z copying torch/cuda/_sanitizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6850250Z copying torch/cuda/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6857070Z copying torch/cuda/_memory_viz.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6871890Z copying torch/cuda/tunable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6887150Z copying torch/cuda/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6894600Z copying torch/cuda/nvtx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6901390Z copying torch/cuda/graphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6915600Z copying torch/cuda/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6923430Z copying torch/cuda/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda 2025-07-24T03:54:58.6931680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-07-24T03:54:58.6932070Z copying torch/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends 2025-07-24T03:54:58.6939710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-24T03:54:58.6940120Z copying torch/_decomp/decompositions_for_jvp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-24T03:54:58.6946590Z copying torch/_decomp/decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-24T03:54:58.6991920Z copying torch/_decomp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-24T03:54:58.7007090Z copying torch/_decomp/decompositions_for_rng.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp 2025-07-24T03:54:58.7015980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-24T03:54:58.7016350Z copying torch/xpu/streams.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-24T03:54:58.7024070Z copying torch/xpu/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-24T03:54:58.7031490Z copying torch/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-24T03:54:58.7045920Z copying torch/xpu/_gpu_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-24T03:54:58.7052990Z copying torch/xpu/random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-24T03:54:58.7060230Z copying torch/xpu/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/xpu 2025-07-24T03:54:58.7080470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-07-24T03:54:58.7080830Z copying torch/masked/_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-07-24T03:54:58.7102950Z copying torch/masked/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-07-24T03:54:58.7117050Z copying torch/masked/_docs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked 2025-07-24T03:54:58.7140580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7140950Z copying torch/optim/lr_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7171720Z copying torch/optim/rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7187040Z copying torch/optim/_adafactor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7202390Z copying torch/optim/sparse_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7209760Z copying torch/optim/rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7225500Z copying torch/optim/sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7239840Z copying torch/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7246960Z copying torch/optim/adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7262440Z copying torch/optim/adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7263380Z copying torch/optim/adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7272770Z copying torch/optim/swa_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7292580Z copying torch/optim/lbfgs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7306120Z copying torch/optim/radam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7320290Z copying torch/optim/adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7336060Z copying torch/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7356910Z copying torch/optim/nadam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7371820Z copying torch/optim/asgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7378940Z copying torch/optim/_functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7398310Z copying torch/optim/adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim 2025-07-24T03:54:58.7417930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7418350Z copying torch/_inductor/dtype_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7426460Z copying torch/_inductor/cudagraph_trees.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7461070Z copying torch/_inductor/select_algorithm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7462530Z copying torch/_inductor/ops_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7483230Z copying torch/_inductor/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7490810Z copying torch/_inductor/codecache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7554140Z copying torch/_inductor/mock_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7563070Z copying torch/_inductor/optimize_indexing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7571010Z copying torch/_inductor/freezing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7583400Z copying torch/_inductor/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7595240Z copying torch/_inductor/cpp_builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7596450Z copying torch/_inductor/cpu_vec_isa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7604410Z copying torch/_inductor/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7605540Z copying torch/_inductor/compile_fx_ext.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7619610Z copying torch/_inductor/comms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7640120Z copying torch/_inductor/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7659840Z copying torch/_inductor/mkldnn_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7679530Z copying torch/_inductor/async_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7692440Z copying torch/_inductor/pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7693840Z copying torch/_inductor/quantized_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7702160Z copying torch/_inductor/triton_bundler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7710300Z copying torch/_inductor/aoti_eager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7718100Z copying torch/_inductor/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7719400Z copying torch/_inductor/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7721850Z copying torch/_inductor/jagged_lowerings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7729190Z copying torch/_inductor/test_operators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7730060Z copying torch/_inductor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7738320Z copying torch/_inductor/compile_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7739790Z copying torch/_inductor/cudagraph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7748320Z copying torch/_inductor/sizevars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7762740Z copying torch/_inductor/ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7765560Z copying torch/_inductor/analyze_preserves_zero_mask.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7772810Z copying torch/_inductor/compile_fx_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7780040Z copying torch/_inductor/index_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7787610Z copying torch/_inductor/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7794930Z copying torch/_inductor/inductor_prims.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7803070Z copying torch/_inductor/virtualized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7810890Z copying torch/_inductor/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7818180Z copying torch/_inductor/autotune_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7839670Z copying torch/_inductor/standalone_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7851950Z copying torch/_inductor/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7858890Z copying torch/_inductor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7860210Z copying torch/_inductor/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7861840Z copying torch/_inductor/__autotune_main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7875800Z copying torch/_inductor/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7889400Z copying torch/_inductor/comm_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7897210Z copying torch/_inductor/decomposition.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7898260Z copying torch/_inductor/fx_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7912290Z copying torch/_inductor/compile_fx_subproc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7925260Z copying torch/_inductor/scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7927460Z copying torch/_inductor/mkldnn_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7941970Z copying torch/_inductor/wrapper_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7942810Z copying torch/_inductor/choices.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7960010Z copying torch/_inductor/remote_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7960850Z copying torch/_inductor/comm_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7969080Z copying torch/_inductor/compiler_bisector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7983110Z copying torch/_inductor/extern_node_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.7996520Z copying torch/_inductor/bounds.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.8003620Z copying torch/_inductor/output_code.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.8018640Z copying torch/_inductor/custom_graph_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.8031930Z copying torch/_inductor/freezing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.8039180Z copying torch/_inductor/dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.8040180Z copying torch/_inductor/tiling_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.8053950Z copying torch/_inductor/loop_body.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.8068380Z copying torch/_inductor/subgraph_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.8075660Z copying torch/_inductor/template_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:54:58.8081810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8082160Z copying torch/utils/_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8104670Z copying torch/utils/_appending_byte_serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8117600Z copying torch/utils/_foreach_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8136650Z copying torch/utils/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8144590Z copying torch/utils/_traceback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8153040Z copying torch/utils/_cpp_extension_versioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8172710Z copying torch/utils/_mode_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8185860Z copying torch/utils/checkpoint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8214110Z copying torch/utils/show_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8222850Z copying torch/utils/deterministic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8236040Z copying torch/utils/file_baton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8248730Z copying torch/utils/_freeze.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8249620Z copying torch/utils/backend_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8263700Z copying torch/utils/module_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8271880Z copying torch/utils/model_zoo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8279700Z copying torch/utils/_zip.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8294110Z copying torch/utils/collect_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8295190Z copying torch/utils/throughput_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8302480Z copying torch/utils/dlpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8303360Z copying torch/utils/_cxx_pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8318600Z copying torch/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8319440Z copying torch/utils/_functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8326710Z copying torch/utils/_import_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8327730Z copying torch/utils/_cpp_embed_headers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8328920Z copying torch/utils/_dtype_abbrs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8335870Z copying torch/utils/bundled_inputs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8350290Z copying torch/utils/_helion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8357000Z copying torch/utils/mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8364650Z copying torch/utils/cpp_backtrace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8371900Z copying torch/utils/_contextlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8379780Z copying torch/utils/_python_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8394490Z copying torch/utils/_exposed_in.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8401710Z copying torch/utils/_filelock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8408520Z copying torch/utils/_thunk.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8415440Z copying torch/utils/_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8431030Z copying torch/utils/_device.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8438710Z copying torch/utils/flop_counter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8458930Z copying torch/utils/_typing_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8466180Z copying torch/utils/_stats.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8473010Z copying torch/utils/cpp_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8503610Z copying torch/utils/_backport_slots.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8510910Z copying torch/utils/_get_clean_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8518020Z copying torch/utils/_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8524900Z copying torch/utils/_content_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8532290Z copying torch/utils/_ordered_set.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8539240Z copying torch/utils/weak.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8546320Z copying torch/utils/mobile_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:54:58.8555030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-07-24T03:54:58.8555460Z copying torch/contrib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-07-24T03:54:58.8556850Z copying torch/contrib/_tensorboard_vis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/contrib 2025-07-24T03:54:58.8566720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8567150Z copying torch/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8574470Z copying torch/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8582080Z copying torch/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8589370Z copying torch/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8597050Z copying torch/quantization/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8604550Z copying torch/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8612260Z copying torch/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8619660Z copying torch/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8627160Z copying torch/quantization/_quantized_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8634160Z copying torch/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8642010Z copying torch/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8649670Z copying torch/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8657060Z copying torch/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8664540Z copying torch/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8672110Z copying torch/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8679410Z copying torch/quantization/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization 2025-07-24T03:54:58.8686750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-07-24T03:54:58.8687110Z copying torch/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/special 2025-07-24T03:54:58.8703650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-24T03:54:58.8704020Z copying torch/testing/_creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-24T03:54:58.8712390Z copying torch/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-24T03:54:58.8720610Z copying torch/testing/_comparison.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-24T03:54:58.8742780Z copying torch/testing/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing 2025-07-24T03:54:58.8751630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8752000Z copying torch/_library/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8760390Z copying torch/_library/fake_profile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8768240Z copying torch/_library/infer_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8776120Z copying torch/_library/simple_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8784180Z copying torch/_library/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8785310Z copying torch/_library/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8793170Z copying torch/_library/fake_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8800830Z copying torch/_library/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8808520Z copying torch/_library/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8809480Z copying torch/_library/fake_class_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_library 2025-07-24T03:54:58.8818010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-07-24T03:54:58.8818410Z copying torch/accelerator/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-07-24T03:54:58.8819510Z copying torch/accelerator/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator 2025-07-24T03:54:58.8828370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-07-24T03:54:58.8829210Z copying torch/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-07-24T03:54:58.8844390Z copying torch/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-07-24T03:54:58.8860170Z copying torch/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/amp 2025-07-24T03:54:58.8870460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8870820Z copying torch/jit/_ir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8878890Z copying torch/jit/_monkeytype_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8886180Z copying torch/jit/_decompositions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8893880Z copying torch/jit/_recursive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8908970Z copying torch/jit/_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8916920Z copying torch/jit/_serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8924570Z copying torch/jit/quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8932560Z copying torch/jit/_script.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8957860Z copying torch/jit/_shape_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8973930Z copying torch/jit/_decomposition_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8982370Z copying torch/jit/_freeze.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8989740Z copying torch/jit/_pickle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.8996750Z copying torch/jit/_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9004260Z copying torch/jit/unsupported_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9011300Z copying torch/jit/frontend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9024950Z copying torch/jit/supported_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9032820Z copying torch/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9040260Z copying torch/jit/_fuser.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9048090Z copying torch/jit/_builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9054650Z copying torch/jit/_dataclass_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9061480Z copying torch/jit/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9083120Z copying torch/jit/generate_bytecode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9090390Z copying torch/jit/_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9097320Z copying torch/jit/_async.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9103990Z copying torch/jit/annotations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9118120Z copying torch/jit/_await.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:54:58.9130380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9130740Z copying torch/_dynamo/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9152780Z copying torch/_dynamo/cache_size.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9160320Z copying torch/_dynamo/callback.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9168350Z copying torch/_dynamo/comptime.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9175620Z copying torch/_dynamo/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9183500Z copying torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9184210Z copying torch/_dynamo/hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9192280Z copying torch/_dynamo/precompile_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9206050Z copying torch/_dynamo/graph_break_hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9213210Z copying torch/_dynamo/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9228040Z copying torch/_dynamo/guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9265740Z copying torch/_dynamo/test_minifier_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9278550Z copying torch/_dynamo/create_parameter_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9285850Z copying torch/_dynamo/graph_region_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9300710Z copying torch/_dynamo/device_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9315830Z copying torch/_dynamo/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9323020Z copying torch/_dynamo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9330070Z copying torch/_dynamo/mutation_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9336840Z copying torch/_dynamo/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9344800Z copying torch/_dynamo/metrics_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9352540Z copying torch/_dynamo/bytecode_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9359980Z copying torch/_dynamo/tensor_version_op.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9366930Z copying torch/_dynamo/external_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9373390Z copying torch/_dynamo/test_case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9380490Z copying torch/_dynamo/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9386420Z copying torch/_dynamo/resume_execution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9400600Z copying torch/_dynamo/output_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9431440Z copying torch/_dynamo/compiled_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9454810Z copying torch/_dynamo/exc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9469930Z copying torch/_dynamo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9508330Z copying torch/_dynamo/test_dont_skip_tracing_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9515790Z copying torch/_dynamo/replay_record.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9522610Z copying torch/_dynamo/side_effects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9543870Z copying torch/_dynamo/trace_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9545490Z copying torch/_dynamo/bytecode_transformation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9566480Z copying torch/_dynamo/convert_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9589210Z copying torch/_dynamo/funcname_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9596970Z copying torch/_dynamo/testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9610030Z copying torch/_dynamo/pgo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9624150Z copying torch/_dynamo/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9631420Z copying torch/_dynamo/symbolic_convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9636940Z copying torch/_dynamo/codegen.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9649830Z copying torch/_dynamo/source.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9663860Z copying torch/_dynamo/eval_frame.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9692330Z copying torch/_dynamo/code_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9699790Z copying torch/_dynamo/graph_deduplication.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9713280Z copying torch/_dynamo/current_scope_id.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9720400Z copying torch/_dynamo/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9734470Z copying torch/_dynamo/decorators.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:54:58.9750200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9750820Z copying torch/_lazy/metrics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9758280Z copying torch/_lazy/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9765380Z copying torch/_lazy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9773610Z copying torch/_lazy/tensor_factory_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9780800Z copying torch/_lazy/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9788430Z copying torch/_lazy/extract_compiled_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9795560Z copying torch/_lazy/ir_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9803090Z copying torch/_lazy/ts_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9810460Z copying torch/_lazy/computation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9817160Z copying torch/_lazy/closure.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9824660Z copying torch/_lazy/device_context.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy 2025-07-24T03:54:58.9832180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-07-24T03:54:58.9832520Z copying torch/ao/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao 2025-07-24T03:54:58.9840850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-07-24T03:54:58.9841200Z copying torch/mtia/memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-07-24T03:54:58.9848550Z copying torch/mtia/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-07-24T03:54:58.9855950Z copying torch/mtia/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/mtia 2025-07-24T03:54:58.9864600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-07-24T03:54:58.9864970Z copying torch/_refs/_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-07-24T03:54:58.9873860Z copying torch/_refs/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-07-24T03:54:58.9915220Z copying torch/_refs/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs 2025-07-24T03:54:58.9931100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-07-24T03:54:58.9931440Z copying torch/fft/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fft 2025-07-24T03:54:58.9954170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-24T03:54:58.9954560Z copying torch/profiler/_memory_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-24T03:54:58.9969760Z copying torch/profiler/itt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-24T03:54:58.9977690Z copying torch/profiler/_pattern_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-24T03:54:58.9992990Z copying torch/profiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-24T03:54:59.0000820Z copying torch/profiler/profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-24T03:54:59.0014960Z copying torch/profiler/python_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-24T03:54:59.0022490Z copying torch/profiler/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/profiler 2025-07-24T03:54:59.0030400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-24T03:54:59.0030800Z copying torch/sparse/_semi_structured_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-24T03:54:59.0038710Z copying torch/sparse/_semi_structured_conversions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-24T03:54:59.0046760Z copying torch/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-24T03:54:59.0061100Z copying torch/sparse/semi_structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-24T03:54:59.0075980Z copying torch/sparse/_triton_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-24T03:54:59.0106400Z copying torch/sparse/_triton_ops_meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/sparse 2025-07-24T03:54:59.0165340Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-07-24T03:54:59.0165700Z copying torch/_awaits/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits 2025-07-24T03:54:59.0174720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0175090Z copying torch/export/_safeguard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0182720Z copying torch/export/exported_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0183890Z copying torch/export/unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0205730Z copying torch/export/custom_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0213360Z copying torch/export/custom_obj.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0220420Z copying torch/export/_remove_effect_tokens_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0232470Z copying torch/export/_remove_auto_functionalized_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0239710Z copying torch/export/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0240620Z copying torch/export/_unlift.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0241850Z copying torch/export/_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0243380Z copying torch/export/graph_signature.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0257570Z copying torch/export/_wrapper_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0265320Z copying torch/export/decomp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0272630Z copying torch/export/_swap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0287390Z copying torch/export/_draft_export.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0288430Z copying torch/export/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0310640Z copying torch/export/_tree_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export 2025-07-24T03:54:59.0319500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-07-24T03:54:59.0319860Z copying torch/nested/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested 2025-07-24T03:54:59.0336530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-07-24T03:54:59.0336980Z copying torch/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-07-24T03:54:59.0345040Z copying torch/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-07-24T03:54:59.0345700Z copying torch/_strobelight/compile_time_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight 2025-07-24T03:54:59.0354980Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-07-24T03:54:59.0355420Z copying torch/compiler/_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-07-24T03:54:59.0363140Z copying torch/compiler/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-07-24T03:54:59.0370340Z copying torch/compiler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/compiler 2025-07-24T03:54:59.0371890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-07-24T03:54:59.0372530Z copying torch/signal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal 2025-07-24T03:54:59.0384730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0385170Z copying torch/distributions/inverse_gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0399180Z copying torch/distributions/laplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0406360Z copying torch/distributions/relaxed_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0413120Z copying torch/distributions/categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0420670Z copying torch/distributions/transforms.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0435870Z copying torch/distributions/dirichlet.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0449540Z copying torch/distributions/log_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0456970Z copying torch/distributions/transformed_distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0464620Z copying torch/distributions/geometric.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0472420Z copying torch/distributions/generalized_pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0479900Z copying torch/distributions/weibull.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0487110Z copying torch/distributions/studentT.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0494590Z copying torch/distributions/multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0502130Z copying torch/distributions/normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0509500Z copying torch/distributions/poisson.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0516990Z copying torch/distributions/beta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0524860Z copying torch/distributions/kumaraswamy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0531980Z copying torch/distributions/half_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0539190Z copying torch/distributions/relaxed_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0546930Z copying torch/distributions/lowrank_multivariate_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0555140Z copying torch/distributions/half_cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0562920Z copying torch/distributions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0570330Z copying torch/distributions/lkj_cholesky.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0577650Z copying torch/distributions/independent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0585350Z copying torch/distributions/multinomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0592930Z copying torch/distributions/exponential.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0600540Z copying torch/distributions/pareto.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0608200Z copying torch/distributions/negative_binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0616120Z copying torch/distributions/cauchy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0623770Z copying torch/distributions/von_mises.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0631600Z copying torch/distributions/distribution.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0639070Z copying torch/distributions/gumbel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0646990Z copying torch/distributions/constraint_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0653980Z copying torch/distributions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0662170Z copying torch/distributions/kl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0677220Z copying torch/distributions/mixture_same_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0684930Z copying torch/distributions/continuous_bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0693250Z copying torch/distributions/fishersnedecor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0700810Z copying torch/distributions/constraints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0715860Z copying torch/distributions/uniform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0723810Z copying torch/distributions/bernoulli.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0730620Z copying torch/distributions/exp_family.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0737770Z copying torch/distributions/logistic_normal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0744860Z copying torch/distributions/one_hot_categorical.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0751350Z copying torch/distributions/wishart.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0759180Z copying torch/distributions/gamma.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0766510Z copying torch/distributions/chi2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0773740Z copying torch/distributions/binomial.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributions 2025-07-24T03:54:59.0783080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0783490Z copying torch/package/package_exporter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0805980Z copying torch/package/file_structure_representation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0813420Z copying torch/package/_mock.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0821070Z copying torch/package/importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0829660Z copying torch/package/_stdlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0837140Z copying torch/package/_mangling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0844540Z copying torch/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0851480Z copying torch/package/package_importer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0865840Z copying torch/package/_package_unpickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0873260Z copying torch/package/glob_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0880310Z copying torch/package/find_file_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0886690Z copying torch/package/_package_pickler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0893240Z copying torch/package/_importlib.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0900740Z copying torch/package/_directory_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0907360Z copying torch/package/_digraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package 2025-07-24T03:54:59.0915150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-07-24T03:54:59.0915590Z copying torch/func/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/func 2025-07-24T03:54:59.0924910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-24T03:54:59.0925630Z copying torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-24T03:54:59.0933580Z copying torch/_functorch/_activation_checkpointing/knapsack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-24T03:54:59.0940710Z copying torch/_functorch/_activation_checkpointing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-24T03:54:59.0947500Z copying torch/_functorch/_activation_checkpointing/ac_logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-24T03:54:59.0954540Z copying torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing 2025-07-24T03:54:59.0963920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.0964470Z copying torch/_functorch/_aot_autograd/input_output_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.0980030Z copying torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1011170Z copying torch/_functorch/_aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1018680Z copying torch/_functorch/_aot_autograd/functional_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1033220Z copying torch/_functorch/_aot_autograd/autograd_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1054970Z copying torch/_functorch/_aot_autograd/graph_capture_wrappers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1076650Z copying torch/_functorch/_aot_autograd/schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1099570Z copying torch/_functorch/_aot_autograd/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1112780Z copying torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1126380Z copying torch/_functorch/_aot_autograd/frontend_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1134660Z copying torch/_functorch/_aot_autograd/graph_capture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1142080Z copying torch/_functorch/_aot_autograd/graph_compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1164590Z copying torch/_functorch/_aot_autograd/subclass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1179680Z copying torch/_functorch/_aot_autograd/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1187800Z copying torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd 2025-07-24T03:54:59.1195720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-07-24T03:54:59.1196240Z copying torch/_numpy/testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-07-24T03:54:59.1203990Z copying torch/_numpy/testing/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing 2025-07-24T03:54:59.1228160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-07-24T03:54:59.1228610Z copying torch/_export/pass_infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-07-24T03:54:59.1229480Z copying torch/_export/pass_infra/proxy_value.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-07-24T03:54:59.1237090Z copying torch/_export/pass_infra/node_metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra 2025-07-24T03:54:59.1245940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1246410Z copying torch/_export/passes/insert_custom_op_guards.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1253860Z copying torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1268950Z copying torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1276160Z copying torch/_export/passes/collect_tracepoints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1283800Z copying torch/_export/passes/replace_with_hop_pass_util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1291100Z copying torch/_export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1298460Z copying torch/_export/passes/_node_metadata_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1305520Z copying torch/_export/passes/lift_constants_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1319180Z copying torch/_export/passes/constant_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1326280Z copying torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1334540Z copying torch/_export/passes/replace_autocast_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1342630Z copying torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1349530Z copying torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1356150Z copying torch/_export/passes/remove_runtime_assertions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes 2025-07-24T03:54:59.1364490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-24T03:54:59.1364890Z copying torch/_export/db/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-24T03:54:59.1381070Z copying torch/_export/db/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-24T03:54:59.1388310Z copying torch/_export/db/gen_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-24T03:54:59.1395690Z copying torch/_export/db/case.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db 2025-07-24T03:54:59.1403840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-24T03:54:59.1404270Z copying torch/_export/serde/serialize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-24T03:54:59.1436800Z copying torch/_export/serde/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-24T03:54:59.1437390Z copying torch/_export/serde/schema_check.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-24T03:54:59.1451260Z copying torch/_export/serde/dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-24T03:54:59.1458870Z copying torch/_export/serde/union.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-24T03:54:59.1466220Z copying torch/_export/serde/schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-24T03:54:59.1477550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1478110Z copying torch/_export/db/examples/list_unpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1486140Z copying torch/_export/db/examples/specialized_attribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1493280Z copying torch/_export/db/examples/static_for_loop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1499960Z copying torch/_export/db/examples/cond_closed_over_variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1519610Z copying torch/_export/db/examples/fn_with_kwargs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1526350Z copying torch/_export/db/examples/constrain_as_value_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1533390Z copying torch/_export/db/examples/dynamic_shape_slicing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1540570Z copying torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1547360Z copying torch/_export/db/examples/autograd_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1553990Z copying torch/_export/db/examples/type_reflection_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1560320Z copying torch/_export/db/examples/cond_operands.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1566890Z copying torch/_export/db/examples/decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1573990Z copying torch/_export/db/examples/dynamic_shape_view.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1581040Z copying torch/_export/db/examples/dynamic_shape_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1588150Z copying torch/_export/db/examples/nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1595210Z copying torch/_export/db/examples/dynamic_shape_constructor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1602370Z copying torch/_export/db/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1608980Z copying torch/_export/db/examples/dynamic_shape_if_guard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1616210Z copying torch/_export/db/examples/assume_constant_result.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1623420Z copying torch/_export/db/examples/cond_branch_class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1630520Z copying torch/_export/db/examples/class_method.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1637580Z copying torch/_export/db/examples/pytree_flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1645180Z copying torch/_export/db/examples/scalar_output.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1653240Z copying torch/_export/db/examples/cond_predicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1661300Z copying torch/_export/db/examples/dynamic_shape_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1668330Z copying torch/_export/db/examples/unsupported_operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1674620Z copying torch/_export/db/examples/tensor_setattr.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1682260Z copying torch/_export/db/examples/optional_input.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1689950Z copying torch/_export/db/examples/constrain_as_size_example.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1696540Z copying torch/_export/db/examples/static_if.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1703320Z copying torch/_export/db/examples/dictionary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1710460Z copying torch/_export/db/examples/list_contains.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1717170Z copying torch/_export/db/examples/dynamic_shape_round.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1724170Z copying torch/_export/db/examples/user_input_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1731320Z copying torch/_export/db/examples/null_context_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1739020Z copying torch/_export/db/examples/cond_branch_nested_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1745660Z copying torch/_export/db/examples/model_attr_mutation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples 2025-07-24T03:54:59.1753770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-24T03:54:59.1754220Z copying torch/nn/attention/bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-24T03:54:59.1761630Z copying torch/nn/attention/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-24T03:54:59.1769800Z copying torch/nn/attention/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-24T03:54:59.1771120Z copying torch/nn/attention/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention 2025-07-24T03:54:59.1781370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-24T03:54:59.1781800Z copying torch/nn/parallel/parallel_apply.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-24T03:54:59.1789370Z copying torch/nn/parallel/comm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-24T03:54:59.1797420Z copying torch/nn/parallel/scatter_gather.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-24T03:54:59.1805180Z copying torch/nn/parallel/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-24T03:54:59.1813030Z copying torch/nn/parallel/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-24T03:54:59.1820150Z copying torch/nn/parallel/data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-24T03:54:59.1828030Z copying torch/nn/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-24T03:54:59.1835100Z copying torch/nn/parallel/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel 2025-07-24T03:54:59.1866820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-07-24T03:54:59.1867170Z copying torch/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat 2025-07-24T03:54:59.1876370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-07-24T03:54:59.1876770Z copying torch/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-07-24T03:54:59.1883620Z copying torch/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized 2025-07-24T03:54:59.1891240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-07-24T03:54:59.1891630Z copying torch/nn/backends/thnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-07-24T03:54:59.1898440Z copying torch/nn/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends 2025-07-24T03:54:59.1901280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1901700Z copying torch/nn/utils/_named_member_accessor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1910430Z copying torch/nn/utils/spectral_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1918350Z copying torch/nn/utils/convert_parameters.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1926170Z copying torch/nn/utils/stateless.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1938760Z copying torch/nn/utils/parametrize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1947810Z copying torch/nn/utils/memory_format.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1955240Z copying torch/nn/utils/_per_sample_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1962760Z copying torch/nn/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1970460Z copying torch/nn/utils/weight_norm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1977700Z copying torch/nn/utils/fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.1984750Z copying torch/nn/utils/prune.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.2007710Z copying torch/nn/utils/parametrizations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.2022500Z copying torch/nn/utils/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.2030380Z copying torch/nn/utils/_deprecation_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.2037640Z copying torch/nn/utils/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.2051930Z copying torch/nn/utils/clip_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils 2025-07-24T03:54:59.2059830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-07-24T03:54:59.2060290Z copying torch/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable 2025-07-24T03:54:59.2068030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-07-24T03:54:59.2068440Z copying torch/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic 2025-07-24T03:54:59.2078030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2078510Z copying torch/nn/modules/upsampling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2086500Z copying torch/nn/modules/channelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2094480Z copying torch/nn/modules/instancenorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2109200Z copying torch/nn/modules/flatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2116560Z copying torch/nn/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2132610Z copying torch/nn/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2140730Z copying torch/nn/modules/_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2148760Z copying torch/nn/modules/pooling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2171790Z copying torch/nn/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2179280Z copying torch/nn/modules/distance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2186600Z copying torch/nn/modules/container.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2201280Z copying torch/nn/modules/pixelshuffle.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2209050Z copying torch/nn/modules/adaptive.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2216550Z copying torch/nn/modules/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2244390Z copying torch/nn/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2267970Z copying torch/nn/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2274890Z copying torch/nn/modules/transformer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2301380Z copying torch/nn/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2314530Z copying torch/nn/modules/module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2349540Z copying torch/nn/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2357450Z copying torch/nn/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2379410Z copying torch/nn/modules/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2386830Z copying torch/nn/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2394880Z copying torch/nn/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2417470Z copying torch/nn/modules/padding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2432000Z copying torch/nn/modules/fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules 2025-07-24T03:54:59.2440520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-07-24T03:54:59.2441030Z copying torch/nn/attention/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-07-24T03:54:59.2449040Z copying torch/nn/attention/experimental/_paged_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental 2025-07-24T03:54:59.2456410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-07-24T03:54:59.2456830Z copying torch/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic 2025-07-24T03:54:59.2465690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-24T03:54:59.2466130Z copying torch/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-24T03:54:59.2474110Z copying torch/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-24T03:54:59.2480420Z copying torch/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-24T03:54:59.2487360Z copying torch/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules 2025-07-24T03:54:59.2494850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-07-24T03:54:59.2495340Z copying torch/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-07-24T03:54:59.2502060Z copying torch/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules 2025-07-24T03:54:59.2509440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-07-24T03:54:59.2509930Z copying torch/nn/quantized/_reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference 2025-07-24T03:54:59.2517600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-07-24T03:54:59.2518080Z copying torch/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic 2025-07-24T03:54:59.2526590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2527070Z copying torch/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2534130Z copying torch/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2541460Z copying torch/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2548670Z copying torch/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2555670Z copying torch/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2563310Z copying torch/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2570610Z copying torch/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2578250Z copying torch/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2585280Z copying torch/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2592760Z copying torch/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2600150Z copying torch/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules 2025-07-24T03:54:59.2608500Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-24T03:54:59.2609260Z copying torch/nn/quantized/_reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-24T03:54:59.2617090Z copying torch/nn/quantized/_reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-24T03:54:59.2624860Z copying torch/nn/quantized/_reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-24T03:54:59.2631990Z copying torch/nn/quantized/_reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-24T03:54:59.2638820Z copying torch/nn/quantized/_reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-24T03:54:59.2645980Z copying torch/nn/quantized/_reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules 2025-07-24T03:54:59.2654000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-24T03:54:59.2654550Z copying torch/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-24T03:54:59.2661820Z copying torch/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-24T03:54:59.2669200Z copying torch/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-24T03:54:59.2676260Z copying torch/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules 2025-07-24T03:54:59.2685000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2685620Z copying torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2693370Z copying torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2700570Z copying torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2708420Z copying torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2715640Z copying torch/nn/utils/_expanded_weights/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2723590Z copying torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2730580Z copying torch/nn/utils/_expanded_weights/conv_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2738520Z copying torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2746550Z copying torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2753810Z copying torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights 2025-07-24T03:54:59.2762140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-07-24T03:54:59.2762640Z copying torch/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-07-24T03:54:59.2770870Z copying torch/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-07-24T03:54:59.2778180Z copying torch/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules 2025-07-24T03:54:59.2786210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-07-24T03:54:59.2786660Z copying torch/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat 2025-07-24T03:54:59.2795190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-07-24T03:54:59.2795680Z copying torch/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized 2025-07-24T03:54:59.2804400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-07-24T03:54:59.2804880Z copying torch/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-07-24T03:54:59.2812440Z copying torch/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules 2025-07-24T03:54:59.2820290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-24T03:54:59.2820810Z copying torch/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-24T03:54:59.2829060Z copying torch/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-24T03:54:59.2835910Z copying torch/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-24T03:54:59.2843750Z copying torch/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules 2025-07-24T03:54:59.2851430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-07-24T03:54:59.2851990Z copying torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic 2025-07-24T03:54:59.2860080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-24T03:54:59.2860630Z copying torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-24T03:54:59.2867590Z copying torch/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-24T03:54:59.2875190Z copying torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-24T03:54:59.2882230Z copying torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules 2025-07-24T03:54:59.2889910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:54:59.2890540Z copying torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:54:59.2898340Z copying torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:54:59.2906520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-24T03:54:59.2906960Z copying torch/onnx/_internal/registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-24T03:54:59.2915080Z copying torch/onnx/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-24T03:54:59.2915740Z copying torch/onnx/_internal/_lazy_import.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-24T03:54:59.2923540Z copying torch/onnx/_internal/_exporter_legacy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-24T03:54:59.2930920Z copying torch/onnx/_internal/onnx_proto_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-24T03:54:59.2938590Z copying torch/onnx/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal 2025-07-24T03:54:59.2948050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-24T03:54:59.2948460Z copying torch/onnx/ops/_dtype_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-24T03:54:59.2956640Z copying torch/onnx/ops/_symbolic_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-24T03:54:59.2964630Z copying torch/onnx/ops/_impl.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-24T03:54:59.2972870Z copying torch/onnx/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops 2025-07-24T03:54:59.2988990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-24T03:54:59.2989440Z copying torch/onnx/_internal/fx/type_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-24T03:54:59.2997510Z copying torch/onnx/_internal/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-24T03:54:59.3005300Z copying torch/onnx/_internal/fx/patcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-24T03:54:59.3012830Z copying torch/onnx/_internal/fx/_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-24T03:54:59.3023810Z copying torch/onnx/_internal/fx/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx 2025-07-24T03:54:59.3034220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3034710Z copying torch/onnx/_internal/exporter/_constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3042390Z copying torch/onnx/_internal/exporter/_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3050250Z copying torch/onnx/_internal/exporter/_flags.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3059460Z copying torch/onnx/_internal/exporter/_errors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3068230Z copying torch/onnx/_internal/exporter/_capture_strategies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3075870Z copying torch/onnx/_internal/exporter/_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3083120Z copying torch/onnx/_internal/exporter/_dispatching.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3090700Z copying torch/onnx/_internal/exporter/_isolated.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3098330Z copying torch/onnx/_internal/exporter/_decomp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3105070Z copying torch/onnx/_internal/exporter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3105670Z copying torch/onnx/_internal/exporter/_onnx_program.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3119790Z copying torch/onnx/_internal/exporter/_building.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3134490Z copying torch/onnx/_internal/exporter/_dynamic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3141610Z copying torch/onnx/_internal/exporter/_schemas.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3156180Z copying torch/onnx/_internal/exporter/_core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3179190Z copying torch/onnx/_internal/exporter/_verification.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3187640Z copying torch/onnx/_internal/exporter/_reporting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3194960Z copying torch/onnx/_internal/exporter/_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3202430Z copying torch/onnx/_internal/exporter/_testing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3209290Z copying torch/onnx/_internal/exporter/_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3210170Z copying torch/onnx/_internal/exporter/_ir_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3217290Z copying torch/onnx/_internal/exporter/_type_casting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3224350Z copying torch/onnx/_internal/exporter/_fx_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter 2025-07-24T03:54:59.3226020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-07-24T03:54:59.3226570Z copying torch/onnx/_internal/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-07-24T03:54:59.3233870Z copying torch/onnx/_internal/fx/passes/type_promotion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-07-24T03:54:59.3255420Z copying torch/onnx/_internal/fx/passes/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes 2025-07-24T03:54:59.3263730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-07-24T03:54:59.3264320Z copying torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-07-24T03:54:59.3271860Z copying torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-07-24T03:54:59.3272550Z copying torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib 2025-07-24T03:54:59.3281270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:54:59.3281850Z copying torch/onnx/_internal/exporter/_torchlib/ops/nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:54:59.3289370Z copying torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:54:59.3296510Z copying torch/onnx/_internal/exporter/_torchlib/ops/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:54:59.3304250Z copying torch/onnx/_internal/exporter/_torchlib/ops/symops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:54:59.3310730Z copying torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:54:59.3318210Z copying torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:54:59.3327100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-07-24T03:54:59.3327540Z copying torch/_vendor/packaging/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-07-24T03:54:59.3335320Z copying torch/_vendor/packaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-07-24T03:54:59.3343090Z copying torch/_vendor/packaging/_structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging 2025-07-24T03:54:59.3351400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-07-24T03:54:59.3351930Z copying torch/cpu/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-07-24T03:54:59.3359460Z copying torch/cpu/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-07-24T03:54:59.3366760Z copying torch/cpu/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp 2025-07-24T03:54:59.3374810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-07-24T03:54:59.3375290Z copying torch/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-07-24T03:54:59.3382730Z copying torch/distributed/_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-07-24T03:54:59.3391550Z copying torch/distributed/_tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor 2025-07-24T03:54:59.3400110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-07-24T03:54:59.3400670Z copying torch/distributed/_sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec 2025-07-24T03:54:59.3409380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-07-24T03:54:59.3409860Z copying torch/distributed/launcher/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-07-24T03:54:59.3417360Z copying torch/distributed/launcher/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher 2025-07-24T03:54:59.3429210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3429750Z copying torch/distributed/checkpoint/_async_process_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3437890Z copying torch/distributed/checkpoint/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3453600Z copying torch/distributed/checkpoint/format_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3460860Z copying torch/distributed/checkpoint/planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3468640Z copying torch/distributed/checkpoint/_consolidate_hf_safetensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3489780Z copying torch/distributed/checkpoint/_dedup_save_plans.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3501760Z copying torch/distributed/checkpoint/state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3522320Z copying torch/distributed/checkpoint/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3529380Z copying torch/distributed/checkpoint/_storage_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3535770Z copying torch/distributed/checkpoint/_version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3542700Z copying torch/distributed/checkpoint/_traverse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3549780Z copying torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3556770Z copying torch/distributed/checkpoint/_dedup_tensors.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3563830Z copying torch/distributed/checkpoint/filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3577160Z copying torch/distributed/checkpoint/state_dict_saver.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3584710Z copying torch/distributed/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3591550Z copying torch/distributed/checkpoint/_hf_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3598550Z copying torch/distributed/checkpoint/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3605540Z copying torch/distributed/checkpoint/_pg_transport.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3606360Z copying torch/distributed/checkpoint/resharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3612990Z copying torch/distributed/checkpoint/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3619210Z copying torch/distributed/checkpoint/state_dict_loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3626710Z copying torch/distributed/checkpoint/_async_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3634000Z copying torch/distributed/checkpoint/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3642600Z copying torch/distributed/checkpoint/default_planner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3656100Z copying torch/distributed/checkpoint/storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3663510Z copying torch/distributed/checkpoint/_state_dict_stager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3671230Z copying torch/distributed/checkpoint/planner_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3684830Z copying torch/distributed/checkpoint/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3691980Z copying torch/distributed/checkpoint/_async_thread_executor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3692750Z copying torch/distributed/checkpoint/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3700890Z copying torch/distributed/checkpoint/_checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3708680Z copying torch/distributed/checkpoint/stateful.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3716320Z copying torch/distributed/checkpoint/_fsspec_filesystem.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3723140Z copying torch/distributed/checkpoint/_extension.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3730350Z copying torch/distributed/checkpoint/_nested_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3738630Z copying torch/distributed/checkpoint/hf_storage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint 2025-07-24T03:54:59.3740070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-07-24T03:54:59.3740720Z copying torch/distributed/_sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor 2025-07-24T03:54:59.3749320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-07-24T03:54:59.3749790Z copying torch/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-07-24T03:54:59.3757540Z copying torch/distributed/nn/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn 2025-07-24T03:54:59.3765880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-07-24T03:54:59.3766350Z copying torch/distributed/elastic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-07-24T03:54:59.3774730Z copying torch/distributed/elastic/control_plane.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic 2025-07-24T03:54:59.3782000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-07-24T03:54:59.3782470Z copying torch/distributed/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd 2025-07-24T03:54:59.3791540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3792020Z copying torch/distributed/pipelining/_IR.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3813930Z copying torch/distributed/pipelining/_unflatten.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3821770Z copying torch/distributed/pipelining/_schedule_visualizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3828600Z copying torch/distributed/pipelining/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3836490Z copying torch/distributed/pipelining/microbatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3844930Z copying torch/distributed/pipelining/_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3852230Z copying torch/distributed/pipelining/_debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3859710Z copying torch/distributed/pipelining/stage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3881960Z copying torch/distributed/pipelining/schedules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3914690Z copying torch/distributed/pipelining/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining 2025-07-24T03:54:59.3923450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-07-24T03:54:59.3923930Z copying torch/distributed/algorithms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-07-24T03:54:59.3930880Z copying torch/distributed/algorithms/join.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms 2025-07-24T03:54:59.3940320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.3940800Z copying torch/distributed/optim/_deprecation_warning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.3948940Z copying torch/distributed/optim/named_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.3956440Z copying torch/distributed/optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.3963280Z copying torch/distributed/optim/functional_sgd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.3969950Z copying torch/distributed/optim/functional_adagrad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.3977360Z copying torch/distributed/optim/functional_adamw.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.3985030Z copying torch/distributed/optim/apply_optimizer_in_backward.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.3992420Z copying torch/distributed/optim/functional_adam.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.3999370Z copying torch/distributed/optim/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.4006090Z copying torch/distributed/optim/functional_rprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.4013400Z copying torch/distributed/optim/post_localSGD_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.4020280Z copying torch/distributed/optim/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.4028120Z copying torch/distributed/optim/functional_adadelta.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.4035730Z copying torch/distributed/optim/functional_rmsprop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.4042150Z copying torch/distributed/optim/zero_redundancy_optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.4064390Z copying torch/distributed/optim/functional_adamax.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:54:59.4073110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-24T03:54:59.4073690Z copying torch/distributed/_composable/replicate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-24T03:54:59.4081090Z copying torch/distributed/_composable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-24T03:54:59.4087930Z copying torch/distributed/_composable/contract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-24T03:54:59.4095460Z copying torch/distributed/_composable/checkpoint_activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable 2025-07-24T03:54:59.4104120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4104580Z copying torch/distributed/_tools/mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4119750Z copying torch/distributed/_tools/ilp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4132630Z copying torch/distributed/_tools/runtime_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4148370Z copying torch/distributed/_tools/fsdp2_mem_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4161990Z copying torch/distributed/_tools/sac_estimator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4180800Z copying torch/distributed/_tools/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4186090Z copying torch/distributed/_tools/memory_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4193500Z copying torch/distributed/_tools/fake_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4194310Z copying torch/distributed/_tools/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4202120Z copying torch/distributed/_tools/sac_ilp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4210130Z copying torch/distributed/_tools/mod_tracker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools 2025-07-24T03:54:59.4220610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4221090Z copying torch/distributed/fsdp/_exec_order_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4229010Z copying torch/distributed/fsdp/_traversal_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4236550Z copying torch/distributed/fsdp/sharded_grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4249540Z copying torch/distributed/fsdp/_state_dict_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4263300Z copying torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4292250Z copying torch/distributed/fsdp/_wrap_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4300410Z copying torch/distributed/fsdp/_optim_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4328330Z copying torch/distributed/fsdp/_trace_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4335730Z copying torch/distributed/fsdp/_common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4351320Z copying torch/distributed/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4359170Z copying torch/distributed/fsdp/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4373690Z copying torch/distributed/fsdp/_limiter_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4381140Z copying torch/distributed/fsdp/_dynamo_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4388090Z copying torch/distributed/fsdp/_unshard_param_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4394750Z copying torch/distributed/fsdp/_shard_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4402120Z copying torch/distributed/fsdp/wrap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4415900Z copying torch/distributed/fsdp/_runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4437970Z copying torch/distributed/fsdp/_fsdp_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4445460Z copying torch/distributed/fsdp/_init_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4459770Z copying torch/distributed/fsdp/_debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4467780Z copying torch/distributed/fsdp/_flat_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp 2025-07-24T03:54:59.4498580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-24T03:54:59.4499040Z copying torch/distributed/_shard/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-24T03:54:59.4506410Z copying torch/distributed/_shard/op_registry_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-24T03:54:59.4513260Z copying torch/distributed/_shard/sharder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-24T03:54:59.4520010Z copying torch/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-24T03:54:59.4527340Z copying torch/distributed/_shard/common_op_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-24T03:54:59.4533870Z copying torch/distributed/_shard/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-24T03:54:59.4541100Z copying torch/distributed/_shard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard 2025-07-24T03:54:59.4549530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-07-24T03:54:59.4550080Z copying torch/distributed/_symmetric_memory/_nvshmem_triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-07-24T03:54:59.4551040Z copying torch/distributed/_symmetric_memory/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory 2025-07-24T03:54:59.4580710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4581190Z copying torch/distributed/tensor/_shards_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4595250Z copying torch/distributed/tensor/_redistribute.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4602840Z copying torch/distributed/tensor/_sharding_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4603800Z copying torch/distributed/tensor/_collective_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4604800Z copying torch/distributed/tensor/_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4626700Z copying torch/distributed/tensor/_dtensor_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4627490Z copying torch/distributed/tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4635430Z copying torch/distributed/tensor/_dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4649250Z copying torch/distributed/tensor/_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4663150Z copying torch/distributed/tensor/_op_schema.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4664120Z copying torch/distributed/tensor/placement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4684410Z copying torch/distributed/tensor/_tp_conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4692250Z copying torch/distributed/tensor/device_mesh.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4699390Z copying torch/distributed/tensor/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor 2025-07-24T03:54:59.4708390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4708830Z copying torch/distributed/rpc/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4716120Z copying torch/distributed/rpc/options.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4723590Z copying torch/distributed/rpc/internal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4731360Z copying torch/distributed/rpc/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4738730Z copying torch/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4745750Z copying torch/distributed/rpc/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4760150Z copying torch/distributed/rpc/rref_proxy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4768140Z copying torch/distributed/rpc/server_process_global_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4775650Z copying torch/distributed/rpc/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4783630Z copying torch/distributed/rpc/backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc 2025-07-24T03:54:59.4792280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4792880Z copying torch/distributed/checkpoint/_experimental/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4800540Z copying torch/distributed/checkpoint/_experimental/barriers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4807960Z copying torch/distributed/checkpoint/_experimental/checkpointer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4816000Z copying torch/distributed/checkpoint/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4823460Z copying torch/distributed/checkpoint/_experimental/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4830160Z copying torch/distributed/checkpoint/_experimental/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4837480Z copying torch/distributed/checkpoint/_experimental/checkpoint_reader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4845130Z copying torch/distributed/checkpoint/_experimental/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4852630Z copying torch/distributed/checkpoint/_experimental/checkpoint_process.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4860080Z copying torch/distributed/checkpoint/_experimental/checkpoint_writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4867040Z copying torch/distributed/checkpoint/_experimental/staging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental 2025-07-24T03:54:59.4875410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-07-24T03:54:59.4875970Z copying torch/distributed/nn/jit/instantiator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-07-24T03:54:59.4883290Z copying torch/distributed/nn/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit 2025-07-24T03:54:59.4884470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-07-24T03:54:59.4885180Z copying torch/distributed/nn/api/remote_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-07-24T03:54:59.4900300Z copying torch/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api 2025-07-24T03:54:59.4901620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-07-24T03:54:59.4902300Z copying torch/distributed/nn/jit/templates/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-07-24T03:54:59.4903190Z copying torch/distributed/nn/jit/templates/remote_module_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates 2025-07-24T03:54:59.4911920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-07-24T03:54:59.4912450Z copying torch/distributed/elastic/metrics/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-07-24T03:54:59.4919970Z copying torch/distributed/elastic/metrics/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics 2025-07-24T03:54:59.4929510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.4930070Z copying torch/distributed/elastic/rendezvous/etcd_store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.4939030Z copying torch/distributed/elastic/rendezvous/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.4946970Z copying torch/distributed/elastic/rendezvous/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.4954390Z copying torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.4961440Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.4977270Z copying torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.4985910Z copying torch/distributed/elastic/rendezvous/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.4994520Z copying torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.5001970Z copying torch/distributed/elastic/rendezvous/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.5009250Z copying torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.5031250Z copying torch/distributed/elastic/rendezvous/etcd_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.5039140Z copying torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous 2025-07-24T03:54:59.5047490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-24T03:54:59.5048100Z copying torch/distributed/elastic/multiprocessing/tail_log.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-24T03:54:59.5055390Z copying torch/distributed/elastic/multiprocessing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-24T03:54:59.5063670Z copying torch/distributed/elastic/multiprocessing/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-24T03:54:59.5079200Z copying torch/distributed/elastic/multiprocessing/redirects.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing 2025-07-24T03:54:59.5087960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-24T03:54:59.5088480Z copying torch/distributed/elastic/timer/local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-24T03:54:59.5095830Z copying torch/distributed/elastic/timer/debug_info_logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-24T03:54:59.5103210Z copying torch/distributed/elastic/timer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-24T03:54:59.5110650Z copying torch/distributed/elastic/timer/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-24T03:54:59.5118320Z copying torch/distributed/elastic/timer/file_based_local_timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer 2025-07-24T03:54:59.5134140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-24T03:54:59.5134660Z copying torch/distributed/elastic/utils/store.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-24T03:54:59.5143860Z copying torch/distributed/elastic/utils/logging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-24T03:54:59.5153370Z copying torch/distributed/elastic/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-24T03:54:59.5160420Z copying torch/distributed/elastic/utils/log_level.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-24T03:54:59.5167290Z copying torch/distributed/elastic/utils/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-24T03:54:59.5174630Z copying torch/distributed/elastic/utils/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils 2025-07-24T03:54:59.5182440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-07-24T03:54:59.5182960Z copying torch/distributed/elastic/agent/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent 2025-07-24T03:54:59.5184510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-07-24T03:54:59.5185130Z copying torch/distributed/elastic/events/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-07-24T03:54:59.5193160Z copying torch/distributed/elastic/events/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-07-24T03:54:59.5200850Z copying torch/distributed/elastic/events/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events 2025-07-24T03:54:59.5209220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-24T03:54:59.5210080Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-24T03:54:59.5217450Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-24T03:54:59.5224730Z copying torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-24T03:54:59.5232790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-07-24T03:54:59.5233490Z copying torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-07-24T03:54:59.5241150Z copying torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-07-24T03:54:59.5249070Z copying torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors 2025-07-24T03:54:59.5257230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-07-24T03:54:59.5257910Z copying torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-07-24T03:54:59.5266120Z copying torch/distributed/elastic/utils/data/cycling_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-07-24T03:54:59.5272810Z copying torch/distributed/elastic/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data 2025-07-24T03:54:59.5280470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-24T03:54:59.5281090Z copying torch/distributed/elastic/agent/server/health_check_server.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-24T03:54:59.5287990Z copying torch/distributed/elastic/agent/server/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-24T03:54:59.5294830Z copying torch/distributed/elastic/agent/server/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-24T03:54:59.5309090Z copying torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server 2025-07-24T03:54:59.5323100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-07-24T03:54:59.5323700Z copying torch/distributed/algorithms/_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-07-24T03:54:59.5331220Z copying torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks 2025-07-24T03:54:59.5338700Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-07-24T03:54:59.5339310Z copying torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-07-24T03:54:59.5347730Z copying torch/distributed/algorithms/_checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint 2025-07-24T03:54:59.5349150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-24T03:54:59.5349780Z copying torch/distributed/algorithms/model_averaging/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-24T03:54:59.5350780Z copying torch/distributed/algorithms/model_averaging/averagers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-24T03:54:59.5359880Z copying torch/distributed/algorithms/model_averaging/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-24T03:54:59.5367210Z copying torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging 2025-07-24T03:54:59.5375330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5375970Z copying torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5383540Z copying torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5391480Z copying torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5398710Z copying torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5406180Z copying torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5414240Z copying torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5429150Z copying torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5436130Z copying torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5443540Z copying torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:54:59.5458440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-07-24T03:54:59.5459110Z copying torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-07-24T03:54:59.5466330Z copying torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap 2025-07-24T03:54:59.5473850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-07-24T03:54:59.5474470Z copying torch/distributed/algorithms/_quantization/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-07-24T03:54:59.5481880Z copying torch/distributed/algorithms/_quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization 2025-07-24T03:54:59.5483090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-07-24T03:54:59.5483820Z copying torch/distributed/_composable/fsdp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-07-24T03:54:59.5490970Z copying torch/distributed/_composable/fsdp/fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp 2025-07-24T03:54:59.5499410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5499940Z copying torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5507700Z copying torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5508640Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5524270Z copying torch/distributed/fsdp/_fully_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5531450Z copying torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5532540Z copying torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5539610Z copying torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5554500Z copying torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5571030Z copying torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard 2025-07-24T03:54:59.5585250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-07-24T03:54:59.5585830Z copying torch/distributed/_shard/checkpoint/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint 2025-07-24T03:54:59.5594290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-24T03:54:59.5594880Z copying torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-24T03:54:59.5601490Z copying torch/distributed/_shard/sharded_tensor/metadata.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-24T03:54:59.5608970Z copying torch/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-24T03:54:59.5622930Z copying torch/distributed/_shard/sharded_tensor/logger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-24T03:54:59.5630260Z copying torch/distributed/_shard/sharded_tensor/reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-24T03:54:59.5638070Z copying torch/distributed/_shard/sharded_tensor/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-24T03:54:59.5659720Z copying torch/distributed/_shard/sharded_tensor/shard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-24T03:54:59.5667420Z copying torch/distributed/_shard/sharded_tensor/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor 2025-07-24T03:54:59.5675400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-07-24T03:54:59.5675950Z copying torch/distributed/_shard/sharding_plan/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-07-24T03:54:59.5683660Z copying torch/distributed/_shard/sharding_plan/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan 2025-07-24T03:54:59.5691820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-24T03:54:59.5692400Z copying torch/distributed/_shard/sharding_spec/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-24T03:54:59.5700030Z copying torch/distributed/_shard/sharding_spec/_internals.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-24T03:54:59.5707460Z copying torch/distributed/_shard/sharding_spec/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-24T03:54:59.5714980Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec 2025-07-24T03:54:59.5723420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-07-24T03:54:59.5723970Z copying torch/distributed/_shard/sharded_optim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-07-24T03:54:59.5732390Z copying torch/distributed/_shard/sharded_optim/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim 2025-07-24T03:54:59.5740550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:54:59.5741160Z copying torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:54:59.5748820Z copying torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:54:59.5756700Z copying torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:54:59.5763840Z copying torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:54:59.5770730Z copying torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:54:59.5778640Z copying torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:54:59.5787020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:54:59.5787770Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:54:59.5795510Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:54:59.5803890Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:54:59.5804840Z copying torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:54:59.5820060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-24T03:54:59.5820650Z copying torch/distributed/tensor/experimental/_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-24T03:54:59.5849050Z copying torch/distributed/tensor/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-24T03:54:59.5856740Z copying torch/distributed/tensor/experimental/_tp_transform.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-24T03:54:59.5874760Z copying torch/distributed/tensor/experimental/_register_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-24T03:54:59.5884300Z copying torch/distributed/tensor/experimental/_func_map.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental 2025-07-24T03:54:59.5892420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-24T03:54:59.5892950Z copying torch/distributed/tensor/parallel/ddp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-24T03:54:59.5899660Z copying torch/distributed/tensor/parallel/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-24T03:54:59.5906630Z copying torch/distributed/tensor/parallel/style.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-24T03:54:59.5920340Z copying torch/distributed/tensor/parallel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-24T03:54:59.5927160Z copying torch/distributed/tensor/parallel/api.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-24T03:54:59.5934750Z copying torch/distributed/tensor/parallel/loss.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-24T03:54:59.5949220Z copying torch/distributed/tensor/parallel/input_reshard.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-24T03:54:59.5955880Z copying torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel 2025-07-24T03:54:59.5963430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.5963950Z copying torch/distributed/tensor/_ops/_einsum_strategy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.5971170Z copying torch/distributed/tensor/_ops/_embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.5979420Z copying torch/distributed/tensor/_ops/_tensor_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.5980620Z copying torch/distributed/tensor/_ops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.5988340Z copying torch/distributed/tensor/_ops/_conv_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.5995420Z copying torch/distributed/tensor/_ops/_pointwise_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.5996810Z copying torch/distributed/tensor/_ops/_matrix_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.6010130Z copying torch/distributed/tensor/_ops/_math_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.6011180Z copying torch/distributed/tensor/_ops/_common_rules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.6019210Z copying torch/distributed/tensor/_ops/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.6020060Z copying torch/distributed/tensor/_ops/_random_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.6030460Z copying torch/distributed/tensor/_ops/_view_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops 2025-07-24T03:54:59.6048060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-24T03:54:59.6048570Z copying torch/distributed/tensor/debug/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-24T03:54:59.6056180Z copying torch/distributed/tensor/debug/_op_coverage.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-24T03:54:59.6063660Z copying torch/distributed/tensor/debug/_visualize_sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-24T03:54:59.6071450Z copying torch/distributed/tensor/debug/_comm_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug 2025-07-24T03:54:59.6086810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-07-24T03:54:59.6087300Z copying torch/distributed/rpc/_testing/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-07-24T03:54:59.6094290Z copying torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing 2025-07-24T03:54:59.6101940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-07-24T03:54:59.6102400Z copying torch/autograd/_functions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-07-24T03:54:59.6109210Z copying torch/autograd/_functions/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-07-24T03:54:59.6116320Z copying torch/autograd/_functions/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions 2025-07-24T03:54:59.6126670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6127120Z copying torch/fx/experimental/validator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6143070Z copying torch/fx/experimental/meta_tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6150920Z copying torch/fx/experimental/_dynamism.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6158280Z copying torch/fx/experimental/partitioner_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6165220Z copying torch/fx/experimental/recording.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6179160Z copying torch/fx/experimental/rewriter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6185640Z copying torch/fx/experimental/const_fold.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6195790Z copying torch/fx/experimental/accelerator_partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6212420Z copying torch/fx/experimental/normalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6220470Z copying torch/fx/experimental/_constant_symnode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6227950Z copying torch/fx/experimental/optimization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6242840Z copying torch/fx/experimental/refinement_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6249630Z copying torch/fx/experimental/graph_gradual_typechecker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6264110Z copying torch/fx/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6264620Z copying torch/fx/experimental/sym_node.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6286810Z copying torch/fx/experimental/unify_refinements.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6294380Z copying torch/fx/experimental/merge_matmul.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6301790Z copying torch/fx/experimental/debug.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6309190Z copying torch/fx/experimental/schema_type_annotation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6316170Z copying torch/fx/experimental/symbolic_shapes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6319110Z copying torch/fx/experimental/_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6327100Z copying torch/fx/experimental/_backward_state.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6334320Z copying torch/fx/experimental/proxy_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental 2025-07-24T03:54:59.6366230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6366740Z copying torch/fx/passes/net_min_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6386760Z copying torch/fx/passes/param_fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6388460Z copying torch/fx/passes/tools_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6395970Z copying torch/fx/passes/split_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6403880Z copying torch/fx/passes/shape_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6411690Z copying torch/fx/passes/split_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6426700Z copying torch/fx/passes/runtime_assert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6427600Z copying torch/fx/passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6441900Z copying torch/fx/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6449240Z copying torch/fx/passes/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6456300Z copying torch/fx/passes/_tensorify_python_scalars.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6463980Z copying torch/fx/passes/fake_tensor_prop.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6471500Z copying torch/fx/passes/operator_support.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6479120Z copying torch/fx/passes/annotate_getitem_nodes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6486880Z copying torch/fx/passes/graph_manipulation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6494110Z copying torch/fx/passes/graph_drawer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6507360Z copying torch/fx/passes/splitter_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6521200Z copying torch/fx/passes/graph_transform_observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes 2025-07-24T03:54:59.6523630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-24T03:54:59.6524180Z copying torch/fx/experimental/unification/dispatch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-24T03:54:59.6531700Z copying torch/fx/experimental/unification/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-24T03:54:59.6538630Z copying torch/fx/experimental/unification/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-24T03:54:59.6545290Z copying torch/fx/experimental/unification/unification_tools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-24T03:54:59.6552930Z copying torch/fx/experimental/unification/variable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-24T03:54:59.6560680Z copying torch/fx/experimental/unification/more.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-24T03:54:59.6567880Z copying torch/fx/experimental/unification/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-24T03:54:59.6575720Z copying torch/fx/experimental/unification/match.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification 2025-07-24T03:54:59.6584030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:54:59.6584660Z copying torch/fx/experimental/migrate_gradual_types/constraint.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:54:59.6600710Z copying torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:54:59.6616220Z copying torch/fx/experimental/migrate_gradual_types/util.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:54:59.6624780Z copying torch/fx/experimental/migrate_gradual_types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:54:59.6625530Z copying torch/fx/experimental/migrate_gradual_types/operation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:54:59.6632490Z copying torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:54:59.6639980Z copying torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:54:59.6647020Z copying torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:54:59.6670410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:54:59.6671210Z copying torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:54:59.6679620Z copying torch/fx/experimental/unification/multipledispatch/variadic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:54:59.6686730Z copying torch/fx/experimental/unification/multipledispatch/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:54:59.6693300Z copying torch/fx/experimental/unification/multipledispatch/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:54:59.6700380Z copying torch/fx/experimental/unification/multipledispatch/conflict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:54:59.6707640Z copying torch/fx/experimental/unification/multipledispatch/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:54:59.6715380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-24T03:54:59.6715850Z copying torch/fx/passes/infra/partitioner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-24T03:54:59.6731240Z copying torch/fx/passes/infra/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-24T03:54:59.6738040Z copying torch/fx/passes/infra/pass_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-24T03:54:59.6746060Z copying torch/fx/passes/infra/pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra 2025-07-24T03:54:59.6755750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-07-24T03:54:59.6756210Z copying torch/fx/passes/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-07-24T03:54:59.6756890Z copying torch/fx/passes/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends 2025-07-24T03:54:59.6765200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-07-24T03:54:59.6765640Z copying torch/fx/passes/tests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-07-24T03:54:59.6766410Z copying torch/fx/passes/tests/test_pass_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests 2025-07-24T03:54:59.6775000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-24T03:54:59.6775470Z copying torch/fx/passes/utils/source_matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-24T03:54:59.6782980Z copying torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-24T03:54:59.6790310Z copying torch/fx/passes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-24T03:54:59.6797790Z copying torch/fx/passes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-24T03:54:59.6805320Z copying torch/fx/passes/utils/matcher_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-24T03:54:59.6818250Z copying torch/fx/passes/utils/fuser_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils 2025-07-24T03:54:59.6825460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-07-24T03:54:59.6825960Z copying torch/fx/passes/dialect/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect 2025-07-24T03:54:59.6827940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-07-24T03:54:59.6828460Z copying torch/fx/passes/dialect/common/cse_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-07-24T03:54:59.6835830Z copying torch/fx/passes/dialect/common/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common 2025-07-24T03:54:59.6837270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-24T03:54:59.6837810Z copying torch/cuda/amp/autocast_mode.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-24T03:54:59.6845850Z copying torch/cuda/amp/grad_scaler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-24T03:54:59.6852590Z copying torch/cuda/amp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-24T03:54:59.6860290Z copying torch/cuda/amp/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp 2025-07-24T03:54:59.6868510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-07-24T03:54:59.6869000Z copying torch/backends/opt_einsum/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum 2025-07-24T03:54:59.6876310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-07-24T03:54:59.6876730Z copying torch/backends/mha/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha 2025-07-24T03:54:59.6885310Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-07-24T03:54:59.6885750Z copying torch/backends/nnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack 2025-07-24T03:54:59.6893860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-07-24T03:54:59.6894270Z copying torch/backends/mps/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps 2025-07-24T03:54:59.6902020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-07-24T03:54:59.6902430Z copying torch/backends/cpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu 2025-07-24T03:54:59.6910200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-07-24T03:54:59.6910650Z copying torch/backends/_coreml/preprocess.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-07-24T03:54:59.6918120Z copying torch/backends/_coreml/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml 2025-07-24T03:54:59.6919130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-07-24T03:54:59.6919660Z copying torch/backends/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda 2025-07-24T03:54:59.6935520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-07-24T03:54:59.6935980Z copying torch/backends/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized 2025-07-24T03:54:59.6944510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-07-24T03:54:59.6945090Z copying torch/backends/mkl/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl 2025-07-24T03:54:59.6952870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-07-24T03:54:59.6953320Z copying torch/backends/xnnpack/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack 2025-07-24T03:54:59.6962180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-07-24T03:54:59.6962630Z copying torch/backends/kleidiai/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai 2025-07-24T03:54:59.6970900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-07-24T03:54:59.6971360Z copying torch/backends/cusparselt/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt 2025-07-24T03:54:59.6978890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-07-24T03:54:59.6979320Z copying torch/backends/mkldnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn 2025-07-24T03:54:59.6986970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-07-24T03:54:59.6987520Z copying torch/backends/xeon/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-07-24T03:54:59.6988370Z copying torch/backends/xeon/run_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon 2025-07-24T03:54:59.7004060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-07-24T03:54:59.7004490Z copying torch/backends/_nnapi/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-07-24T03:54:59.7005210Z copying torch/backends/_nnapi/serializer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-07-24T03:54:59.7035330Z copying torch/backends/_nnapi/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi 2025-07-24T03:54:59.7042820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-07-24T03:54:59.7043260Z copying torch/backends/openmp/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp 2025-07-24T03:54:59.7050990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-07-24T03:54:59.7051410Z copying torch/backends/cudnn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-07-24T03:54:59.7058480Z copying torch/backends/cudnn/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn 2025-07-24T03:54:59.7066740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-24T03:54:59.7067200Z copying torch/masked/maskedtensor/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-24T03:54:59.7075160Z copying torch/masked/maskedtensor/creation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-24T03:54:59.7082160Z copying torch/masked/maskedtensor/_ops_refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-24T03:54:59.7083240Z copying torch/masked/maskedtensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-24T03:54:59.7090830Z copying torch/masked/maskedtensor/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-24T03:54:59.7098380Z copying torch/masked/maskedtensor/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-24T03:54:59.7106070Z copying torch/masked/maskedtensor/reductions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-24T03:54:59.7113540Z copying torch/masked/maskedtensor/passthrough.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor 2025-07-24T03:54:59.7121670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-07-24T03:54:59.7122120Z copying torch/optim/_multi_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-07-24T03:54:59.7130370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-07-24T03:54:59.7130840Z copying torch/_inductor/analysis/device_info.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-07-24T03:54:59.7138320Z copying torch/_inductor/analysis/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-07-24T03:54:59.7139170Z copying torch/_inductor/analysis/profile_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis 2025-07-24T03:54:59.7155650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7156110Z copying torch/_inductor/runtime/cache_dir_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7163670Z copying torch/_inductor/runtime/triton_heuristics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7194570Z copying torch/_inductor/runtime/runtime_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7203580Z copying torch/_inductor/runtime/halide_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7210380Z copying torch/_inductor/runtime/coordinate_descent_tuner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7217800Z copying torch/_inductor/runtime/triton_compat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7224650Z copying torch/_inductor/runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7225200Z copying torch/_inductor/runtime/compile_tasks.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7232930Z copying torch/_inductor/runtime/triton_helpers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7247430Z copying torch/_inductor/runtime/autotune_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7248370Z copying torch/_inductor/runtime/hints.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7255870Z copying torch/_inductor/runtime/static_cuda_launcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7262860Z copying torch/_inductor/runtime/benchmarking.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime 2025-07-24T03:54:59.7273630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7274120Z copying torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7290460Z copying torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7304570Z copying torch/_inductor/codegen/wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7306140Z copying torch/_inductor/codegen/mps_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7313650Z copying torch/_inductor/codegen/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7314410Z copying torch/_inductor/codegen/triton.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7316750Z copying torch/_inductor/codegen/cpp_bmm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7323940Z copying torch/_inductor/codegen/mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7325150Z copying torch/_inductor/codegen/aoti_hipify_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7332310Z copying torch/_inductor/codegen/simd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7333670Z copying torch/_inductor/codegen/triton_combo_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7348480Z copying torch/_inductor/codegen/memory_planning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7364400Z copying torch/_inductor/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7365030Z copying torch/_inductor/codegen/cpp_flex_attention_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7366370Z copying torch/_inductor/codegen/wrapper_fxir.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7382140Z copying torch/_inductor/codegen/cpp_micro_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7405070Z copying torch/_inductor/codegen/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7407410Z copying torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7408590Z copying torch/_inductor/codegen/block_analysis.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7417000Z copying torch/_inductor/codegen/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7446980Z copying torch/_inductor/codegen/cpp_wrapper_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7447850Z copying torch/_inductor/codegen/cpp_template_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7449120Z copying torch/_inductor/codegen/cpp_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7471540Z copying torch/_inductor/codegen/cpu_device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7479290Z copying torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7493190Z copying torch/_inductor/codegen/triton_split_scan.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7500840Z copying torch/_inductor/codegen/halide.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7529070Z copying torch/_inductor/codegen/cpp_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7537590Z copying torch/_inductor/codegen/cuda_combined_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7545060Z copying torch/_inductor/codegen/multi_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7559950Z copying torch/_inductor/codegen/subgraph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7566700Z copying torch/_inductor/codegen/cpp_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7581790Z copying torch/_inductor/codegen/debug_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7589820Z copying torch/_inductor/codegen/simd_kernel_features.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen 2025-07-24T03:54:59.7606070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-24T03:54:59.7606600Z copying torch/_inductor/compile_worker/tracked_process_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-24T03:54:59.7614180Z copying torch/_inductor/compile_worker/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-24T03:54:59.7614810Z copying torch/_inductor/compile_worker/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-24T03:54:59.7622090Z copying torch/_inductor/compile_worker/subproc_pool.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-24T03:54:59.7629260Z copying torch/_inductor/compile_worker/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker 2025-07-24T03:54:59.7637460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-24T03:54:59.7637970Z copying torch/_inductor/autoheuristic/autoheuristic.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-24T03:54:59.7646300Z copying torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-24T03:54:59.7653740Z copying torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-24T03:54:59.7662320Z copying torch/_inductor/autoheuristic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-24T03:54:59.7663090Z copying torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic 2025-07-24T03:54:59.7672950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7673470Z copying torch/_inductor/fx_passes/post_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7695660Z copying torch/_inductor/fx_passes/fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7703240Z copying torch/_inductor/fx_passes/replace_random.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7709650Z copying torch/_inductor/fx_passes/ddp_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7724710Z copying torch/_inductor/fx_passes/numeric_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7732530Z copying torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7740790Z copying torch/_inductor/fx_passes/reinplace.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7754600Z copying torch/_inductor/fx_passes/quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7785870Z copying torch/_inductor/fx_passes/split_cat.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7820170Z copying torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7830270Z copying torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7837060Z copying torch/_inductor/fx_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7837640Z copying torch/_inductor/fx_passes/group_batch_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7860030Z copying torch/_inductor/fx_passes/pre_grad.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7860990Z copying torch/_inductor/fx_passes/binary_folding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7878340Z copying torch/_inductor/fx_passes/fuse_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7892560Z copying torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7893550Z copying torch/_inductor/fx_passes/joint_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7909410Z copying torch/_inductor/fx_passes/bucketing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7910600Z copying torch/_inductor/fx_passes/b2b_gemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7925220Z copying torch/_inductor/fx_passes/mkldnn_fusion.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7926270Z copying torch/_inductor/fx_passes/pad_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7940220Z copying torch/_inductor/fx_passes/freezing_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7947530Z copying torch/_inductor/fx_passes/misc_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes 2025-07-24T03:54:59.7955890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.7956330Z copying torch/_inductor/kernel/mm_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.7975090Z copying torch/_inductor/kernel/flex_decoding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.7989330Z copying torch/_inductor/kernel/mm_grouped.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.8003930Z copying torch/_inductor/kernel/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.8011220Z copying torch/_inductor/kernel/mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.8012270Z copying torch/_inductor/kernel/bmm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.8042750Z copying torch/_inductor/kernel/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.8058020Z copying torch/_inductor/kernel/mm_plus_mm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.8065480Z copying torch/_inductor/kernel/flex_attention.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel 2025-07-24T03:54:59.8097180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-07-24T03:54:59.8097620Z copying torch/_inductor/package/package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-07-24T03:54:59.8098530Z copying torch/_inductor/package/build_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-07-24T03:54:59.8105590Z copying torch/_inductor/package/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package 2025-07-24T03:54:59.8113460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8113960Z copying torch/_inductor/codegen/cuda/cutlass_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8115350Z copying torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8122790Z copying torch/_inductor/codegen/cuda/cuda_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8123570Z copying torch/_inductor/codegen/cuda/gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8125060Z copying torch/_inductor/codegen/cuda/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8125900Z copying torch/_inductor/codegen/cuda/cutlass_presets.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8133430Z copying torch/_inductor/codegen/cuda/cutlass_python_evt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8141040Z copying torch/_inductor/codegen/cuda/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8148540Z copying torch/_inductor/codegen/cuda/cuda_env.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8155550Z copying torch/_inductor/codegen/cuda/serialization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8168880Z copying torch/_inductor/codegen/cuda/cutlass_cache.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8175120Z copying torch/_inductor/codegen/cuda/cuda_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda 2025-07-24T03:54:59.8189830Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-07-24T03:54:59.8190300Z copying torch/_inductor/codegen/xpu/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-07-24T03:54:59.8191020Z copying torch/_inductor/codegen/xpu/device_op_overrides.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu 2025-07-24T03:54:59.8200350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8200860Z copying torch/_inductor/codegen/rocm/ck_tile_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8208400Z copying torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8215610Z copying torch/_inductor/codegen/rocm/rocm_kernel.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8223460Z copying torch/_inductor/codegen/rocm/rocm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8230980Z copying torch/_inductor/codegen/rocm/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8231580Z copying torch/_inductor/codegen/rocm/compile_command.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8239530Z copying torch/_inductor/codegen/rocm/rocm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8247490Z copying torch/_inductor/codegen/rocm/ck_conv_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8263710Z copying torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8273160Z copying torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8287290Z copying torch/_inductor/codegen/rocm/ck_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8294830Z copying torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8302290Z copying torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm 2025-07-24T03:54:59.8318160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-24T03:54:59.8318860Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-24T03:54:59.8332350Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-24T03:54:59.8333170Z copying torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-24T03:54:59.8340880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:54:59.8341480Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:54:59.8348280Z copying torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:54:59.8355490Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:54:59.8369580Z copying torch/_inductor/autoheuristic/artifacts/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:54:59.8370320Z copying torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:54:59.8384220Z copying torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:54:59.8394180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8400540Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8402310Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8416670Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8425130Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8440270Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8447880Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8455220Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8480370Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8488280Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8495670Z copying torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8502390Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8516320Z copying torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8517080Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8524180Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8531730Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8539470Z copying torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8546250Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8560040Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8566980Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8574480Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8582620Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8590100Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8597780Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8605740Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8613480Z copying torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8620810Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8628310Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8635890Z copying torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:54:59.8643560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-07-24T03:54:59.8644000Z copying torch/utils/benchmark/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark 2025-07-24T03:54:59.8652930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8653360Z copying torch/utils/_sympy/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8674920Z copying torch/utils/_sympy/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8675490Z copying torch/utils/_sympy/symbol.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8683020Z copying torch/utils/_sympy/numbers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8690110Z copying torch/utils/_sympy/reference.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8697950Z copying torch/utils/_sympy/singleton_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8704840Z copying torch/utils/_sympy/value_ranges.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8719250Z copying torch/utils/_sympy/printers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8734190Z copying torch/utils/_sympy/solve.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8741590Z copying torch/utils/_sympy/interp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy 2025-07-24T03:54:59.8749690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-07-24T03:54:59.8750260Z copying torch/utils/serialization/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-07-24T03:54:59.8757990Z copying torch/utils/serialization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization 2025-07-24T03:54:59.8765990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-07-24T03:54:59.8766430Z copying torch/utils/backcompat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat 2025-07-24T03:54:59.8774930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-24T03:54:59.8775340Z copying torch/utils/hipify/version.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-24T03:54:59.8782750Z copying torch/utils/hipify/cuda_to_hip_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-24T03:54:59.8837180Z copying torch/utils/hipify/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-24T03:54:59.8845340Z copying torch/utils/hipify/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-24T03:54:59.8852780Z copying torch/utils/hipify/hipify_python.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify 2025-07-24T03:54:59.8868620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-07-24T03:54:59.8869130Z copying torch/utils/bottleneck/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-07-24T03:54:59.8870500Z copying torch/utils/bottleneck/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck 2025-07-24T03:54:59.8878540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-07-24T03:54:59.8878920Z copying torch/utils/viz/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-07-24T03:54:59.8879660Z copying torch/utils/viz/_cycles.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz 2025-07-24T03:54:59.8895300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-07-24T03:54:59.8895680Z copying torch/utils/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-07-24T03:54:59.8896460Z copying torch/utils/jit/log_extract.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit 2025-07-24T03:54:59.8905440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8905910Z copying torch/utils/tensorboard/_pytorch_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8913980Z copying torch/utils/tensorboard/_proto_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8921710Z copying torch/utils/tensorboard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8929100Z copying torch/utils/tensorboard/_embedding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8936220Z copying torch/utils/tensorboard/_onnx_graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8943180Z copying torch/utils/tensorboard/summary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8958640Z copying torch/utils/tensorboard/_convert_np.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8965990Z copying torch/utils/tensorboard/writer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8981410Z copying torch/utils/tensorboard/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard 2025-07-24T03:54:59.8990230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-24T03:54:59.8990660Z copying torch/utils/model_dump/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-24T03:54:59.9005470Z copying torch/utils/model_dump/__main__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-24T03:54:59.9014020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-24T03:54:59.9014490Z copying torch/utils/data/graph_settings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-24T03:54:59.9021370Z copying torch/utils/data/graph.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-24T03:54:59.9028150Z copying torch/utils/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-24T03:54:59.9035270Z copying torch/utils/data/dataset.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-24T03:54:59.9049720Z copying torch/utils/data/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-24T03:54:59.9057500Z copying torch/utils/data/backward_compatibility.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-24T03:54:59.9064980Z copying torch/utils/data/dataloader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-24T03:54:59.9088000Z copying torch/utils/data/sampler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data 2025-07-24T03:54:59.9097000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-07-24T03:54:59.9097490Z copying torch/utils/_strobelight/cli_function_profiler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-07-24T03:54:59.9105100Z copying torch/utils/_strobelight/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight 2025-07-24T03:54:59.9106780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-24T03:54:59.9107710Z copying torch/utils/benchmark/op_fuzzers/binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-24T03:54:59.9115110Z copying torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-24T03:54:59.9123010Z copying torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-24T03:54:59.9130260Z copying torch/utils/benchmark/op_fuzzers/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-24T03:54:59.9130880Z copying torch/utils/benchmark/op_fuzzers/spectral.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-24T03:54:59.9138180Z copying torch/utils/benchmark/op_fuzzers/unary.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers 2025-07-24T03:54:59.9146620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9147100Z copying torch/utils/benchmark/utils/timer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9160770Z copying torch/utils/benchmark/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9161410Z copying torch/utils/benchmark/utils/sparse_fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9168540Z copying torch/utils/benchmark/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9176040Z copying torch/utils/benchmark/utils/compile.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9183270Z copying torch/utils/benchmark/utils/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9197790Z copying torch/utils/benchmark/utils/cpp_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9205020Z copying torch/utils/benchmark/utils/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9213480Z copying torch/utils/benchmark/utils/_stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:54:59.9222080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-24T03:54:59.9222670Z copying torch/utils/benchmark/examples/op_benchmark.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-24T03:54:59.9229090Z copying torch/utils/benchmark/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-24T03:54:59.9229740Z copying torch/utils/benchmark/examples/simple_timeit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-24T03:54:59.9237740Z copying torch/utils/benchmark/examples/fuzzer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-24T03:54:59.9245360Z copying torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-24T03:54:59.9251630Z copying torch/utils/benchmark/examples/compare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples 2025-07-24T03:54:59.9259360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:54:59.9260010Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:54:59.9275540Z copying torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:54:59.9277080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-24T03:54:59.9277660Z copying torch/utils/data/_utils/fetch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-24T03:54:59.9285660Z copying torch/utils/data/_utils/worker.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-24T03:54:59.9293140Z copying torch/utils/data/_utils/collate.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-24T03:54:59.9301650Z copying torch/utils/data/_utils/pin_memory.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-24T03:54:59.9310520Z copying torch/utils/data/_utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-24T03:54:59.9317450Z copying torch/utils/data/_utils/signal_handling.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils 2025-07-24T03:54:59.9325130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-24T03:54:59.9325660Z copying torch/utils/data/datapipes/_decorator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-24T03:54:59.9332590Z copying torch/utils/data/datapipes/_typing.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-24T03:54:59.9340160Z copying torch/utils/data/datapipes/_hook_iterator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-24T03:54:59.9348260Z copying torch/utils/data/datapipes/datapipe.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-24T03:54:59.9363560Z copying torch/utils/data/datapipes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-24T03:54:59.9370530Z copying torch/utils/data/datapipes/gen_pyi.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-24T03:54:59.9372890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-24T03:54:59.9373450Z copying torch/utils/data/datapipes/dataframe/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-24T03:54:59.9380880Z copying torch/utils/data/datapipes/dataframe/datapipes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-24T03:54:59.9388230Z copying torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-24T03:54:59.9395840Z copying torch/utils/data/datapipes/dataframe/structures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-24T03:54:59.9402800Z copying torch/utils/data/datapipes/dataframe/dataframes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe 2025-07-24T03:54:59.9412130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9412670Z copying torch/utils/data/datapipes/iter/fileopener.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9413720Z copying torch/utils/data/datapipes/iter/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9414800Z copying torch/utils/data/datapipes/iter/sharding.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9415940Z copying torch/utils/data/datapipes/iter/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9416980Z copying torch/utils/data/datapipes/iter/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9425340Z copying torch/utils/data/datapipes/iter/selecting.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9426050Z copying torch/utils/data/datapipes/iter/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9427260Z copying torch/utils/data/datapipes/iter/filelister.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9428280Z copying torch/utils/data/datapipes/iter/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9435940Z copying torch/utils/data/datapipes/iter/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9436890Z copying torch/utils/data/datapipes/iter/streamreader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9437970Z copying torch/utils/data/datapipes/iter/routeddecoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter 2025-07-24T03:54:59.9440260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-24T03:54:59.9440780Z copying torch/utils/data/datapipes/utils/decoder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-24T03:54:59.9448340Z copying torch/utils/data/datapipes/utils/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-24T03:54:59.9448970Z copying torch/utils/data/datapipes/utils/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-24T03:54:59.9456350Z copying torch/utils/data/datapipes/utils/snapshot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils 2025-07-24T03:54:59.9464690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-24T03:54:59.9465290Z copying torch/utils/data/datapipes/map/callable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-24T03:54:59.9466080Z copying torch/utils/data/datapipes/map/grouping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-24T03:54:59.9467180Z copying torch/utils/data/datapipes/map/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-24T03:54:59.9474430Z copying torch/utils/data/datapipes/map/combining.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-24T03:54:59.9475320Z copying torch/utils/data/datapipes/map/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-24T03:54:59.9482580Z copying torch/utils/data/datapipes/map/combinatorics.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map 2025-07-24T03:54:59.9485770Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9486340Z copying torch/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9493740Z copying torch/quantization/fx/fusion_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9500740Z copying torch/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9507930Z copying torch/quantization/fx/quantization_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9514900Z copying torch/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9522020Z copying torch/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9529930Z copying torch/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9536400Z copying torch/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9543530Z copying torch/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9550690Z copying torch/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9558920Z copying torch/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9565750Z copying torch/quantization/fx/quantization_patterns.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx 2025-07-24T03:54:59.9577610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9578060Z copying torch/testing/_internal/common_dtype.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9586040Z copying torch/testing/_internal/common_pruning.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9593730Z copying torch/testing/_internal/fake_config_module3.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9600790Z copying torch/testing/_internal/hop_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9608790Z copying torch/testing/_internal/triton_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9609860Z copying torch/testing/_internal/static_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9618070Z copying torch/testing/_internal/subclasses.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9625040Z copying torch/testing/_internal/common_nn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9666070Z copying torch/testing/_internal/custom_op_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9680400Z copying torch/testing/_internal/fake_config_module2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9687220Z copying torch/testing/_internal/autocast_test_lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9700920Z copying torch/testing/_internal/common_fsdp.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9724100Z copying torch/testing/_internal/two_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9732060Z copying torch/testing/_internal/torchbind_impls.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9739100Z copying torch/testing/_internal/common_optimizers.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9767800Z copying torch/testing/_internal/common_device_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9789930Z copying torch/testing/_internal/autograd_function_db.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9804200Z copying torch/testing/_internal/common_mkldnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9811550Z copying torch/testing/_internal/inductor_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9812390Z copying torch/testing/_internal/common_distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9861700Z copying torch/testing/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9862320Z copying torch/testing/_internal/common_methods_invocations.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9869150Z copying torch/testing/_internal/custom_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9880650Z copying torch/testing/_internal/logging_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9890870Z copying torch/testing/_internal/hypothesis_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9899140Z copying torch/testing/_internal/common_cuda.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9906360Z copying torch/testing/_internal/common_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:54:59.9936070Z copying torch/testing/_internal/common_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0000550Z copying torch/testing/_internal/common_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0008510Z copying torch/testing/_internal/common_mps.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0009600Z copying torch/testing/_internal/jit_metaprogramming_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0023690Z copying torch/testing/_internal/dynamo_test_failures.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0031180Z copying torch/testing/_internal/check_kernel_launches.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0038560Z copying torch/testing/_internal/common_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0040570Z copying torch/testing/_internal/quantization_torch_package_models.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0047900Z copying torch/testing/_internal/common_quantized.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0061400Z copying torch/testing/_internal/common_dist_composable.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0068220Z copying torch/testing/_internal/common_subclass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0077380Z copying torch/testing/_internal/composite_compliance.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0092960Z copying torch/testing/_internal/logging_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0103760Z copying torch/testing/_internal/dist_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0110630Z copying torch/testing/_internal/fake_config_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0116210Z copying torch/testing/_internal/jit_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal 2025-07-24T03:55:00.0130020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-07-24T03:55:00.0130600Z copying torch/testing/_internal/generated/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-07-24T03:55:00.0131270Z copying torch/testing/_internal/generated/annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated 2025-07-24T03:55:00.0136100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-24T03:55:00.0136590Z copying torch/testing/_internal/opinfo/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-24T03:55:00.0142990Z copying torch/testing/_internal/opinfo/core.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-24T03:55:00.0173390Z copying torch/testing/_internal/opinfo/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-24T03:55:00.0181550Z copying torch/testing/_internal/opinfo/refs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo 2025-07-24T03:55:00.0190170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-07-24T03:55:00.0190700Z copying torch/testing/_internal/test_module/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-07-24T03:55:00.0191430Z copying torch/testing/_internal/test_module/future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-07-24T03:55:00.0198320Z copying torch/testing/_internal/test_module/no_future_div.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module 2025-07-24T03:55:00.0205730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0206320Z copying torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0220340Z copying torch/testing/_internal/distributed/fake_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0227620Z copying torch/testing/_internal/distributed/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0228300Z copying torch/testing/_internal/distributed/checkpoint_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0235100Z copying torch/testing/_internal/distributed/distributed_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0241410Z copying torch/testing/_internal/distributed/distributed_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0301340Z copying torch/testing/_internal/distributed/multi_threaded_pg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0316220Z copying torch/testing/_internal/distributed/common_state_dict.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0322370Z copying torch/testing/_internal/distributed/rpc_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed 2025-07-24T03:55:00.0329600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-24T03:55:00.0330100Z copying torch/testing/_internal/optests/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-24T03:55:00.0336760Z copying torch/testing/_internal/optests/fake_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-24T03:55:00.0343540Z copying torch/testing/_internal/optests/aot_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-24T03:55:00.0349640Z copying torch/testing/_internal/optests/make_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-24T03:55:00.0356070Z copying torch/testing/_internal/optests/generate_tests.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-24T03:55:00.0369520Z copying torch/testing/_internal/optests/autograd_registration.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests 2025-07-24T03:55:00.0377550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-07-24T03:55:00.0378060Z copying torch/testing/_internal/codegen/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen 2025-07-24T03:55:00.0386260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-07-24T03:55:00.0386740Z copying torch/testing/_internal/data/network1.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-07-24T03:55:00.0394120Z copying torch/testing/_internal/data/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-07-24T03:55:00.0400790Z copying torch/testing/_internal/data/network2.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data 2025-07-24T03:55:00.0408850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:00.0409560Z copying torch/testing/_internal/opinfo/definitions/signal.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:00.0417430Z copying torch/testing/_internal/opinfo/definitions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:00.0424950Z copying torch/testing/_internal/opinfo/definitions/_masked.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:00.0439090Z copying torch/testing/_internal/opinfo/definitions/linalg.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:00.0469000Z copying torch/testing/_internal/opinfo/definitions/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:00.0483790Z copying torch/testing/_internal/opinfo/definitions/fft.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:00.0499770Z copying torch/testing/_internal/opinfo/definitions/special.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:00.0513000Z copying torch/testing/_internal/opinfo/definitions/nested.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:00.0514760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-07-24T03:55:00.0515400Z copying torch/testing/_internal/distributed/_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-07-24T03:55:00.0516320Z copying torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor 2025-07-24T03:55:00.0518060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-07-24T03:55:00.0518660Z copying torch/testing/_internal/distributed/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn 2025-07-24T03:55:00.0520190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-07-24T03:55:00.0520800Z copying torch/testing/_internal/distributed/_shard/test_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-07-24T03:55:00.0528140Z copying torch/testing/_internal/distributed/_shard/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard 2025-07-24T03:55:00.0536600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:00.0537370Z copying torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:00.0543580Z copying torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:00.0551310Z copying torch/testing/_internal/distributed/rpc/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:00.0552030Z copying torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:00.0583950Z copying torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:00.0592100Z copying torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:00.0599150Z copying torch/testing/_internal/distributed/rpc/rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:00.0641130Z copying torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:00.0650110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-07-24T03:55:00.0650700Z copying torch/testing/_internal/distributed/nn/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-07-24T03:55:00.0651450Z copying torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api 2025-07-24T03:55:00.0666720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-24T03:55:00.0667490Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-24T03:55:00.0674700Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-24T03:55:00.0681000Z copying torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-24T03:55:00.0688370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:00.0694660Z copying torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:00.0695460Z copying torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:00.0696240Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:00.0715960Z copying torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:00.0724370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-07-24T03:55:00.0725010Z copying torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-07-24T03:55:00.0725870Z copying torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-07-24T03:55:00.0734160Z copying torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples 2025-07-24T03:55:00.0741540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-07-24T03:55:00.0742020Z copying torch/jit/_passes/_property_propagation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-07-24T03:55:00.0749080Z copying torch/jit/_passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes 2025-07-24T03:55:00.0750200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-07-24T03:55:00.0750810Z copying torch/jit/mobile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile 2025-07-24T03:55:00.0760360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0760800Z copying torch/_dynamo/backends/registry.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0768480Z copying torch/_dynamo/backends/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0769250Z copying torch/_dynamo/backends/debugging.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0777130Z copying torch/_dynamo/backends/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0791430Z copying torch/_dynamo/backends/common.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0798220Z copying torch/_dynamo/backends/inductor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0805960Z copying torch/_dynamo/backends/onnxrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0811840Z copying torch/_dynamo/backends/tvm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0817940Z copying torch/_dynamo/backends/cudagraphs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0825200Z copying torch/_dynamo/backends/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0832290Z copying torch/_dynamo/backends/torchxla.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends 2025-07-24T03:55:00.0841000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0841500Z copying torch/_dynamo/variables/functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0843180Z copying torch/_dynamo/variables/iter.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0857300Z copying torch/_dynamo/variables/misc.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0878880Z copying torch/_dynamo/variables/lists.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0880020Z copying torch/_dynamo/variables/script_object.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0887460Z copying torch/_dynamo/variables/torch_function.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0902130Z copying torch/_dynamo/variables/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0909970Z copying torch/_dynamo/variables/user_defined.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0932260Z copying torch/_dynamo/variables/nn_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0953620Z copying torch/_dynamo/variables/builder.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.0993150Z copying torch/_dynamo/variables/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1014400Z copying torch/_dynamo/variables/higher_order_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1046190Z copying torch/_dynamo/variables/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1054120Z copying torch/_dynamo/variables/distributed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1061220Z copying torch/_dynamo/variables/optimizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1073670Z copying torch/_dynamo/variables/builtin.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1075030Z copying torch/_dynamo/variables/constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1076040Z copying torch/_dynamo/variables/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1083510Z copying torch/_dynamo/variables/torch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1112510Z copying torch/_dynamo/variables/ctx_manager.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1134570Z copying torch/_dynamo/variables/dicts.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1135770Z copying torch/_dynamo/variables/base.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables 2025-07-24T03:55:00.1149550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-24T03:55:00.1149980Z copying torch/_dynamo/repro/after_dynamo.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-24T03:55:00.1164450Z copying torch/_dynamo/repro/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-24T03:55:00.1165350Z copying torch/_dynamo/repro/after_aot.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-24T03:55:00.1179540Z copying torch/_dynamo/repro/aoti.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro 2025-07-24T03:55:00.1195530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1195970Z copying torch/_dynamo/polyfills/functools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1202880Z copying torch/_dynamo/polyfills/builtins.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1209840Z copying torch/_dynamo/polyfills/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1216520Z copying torch/_dynamo/polyfills/os.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1223520Z copying torch/_dynamo/polyfills/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1224210Z copying torch/_dynamo/polyfills/tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1231720Z copying torch/_dynamo/polyfills/loader.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1239500Z copying torch/_dynamo/polyfills/fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1246870Z copying torch/_dynamo/polyfills/struct.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1253910Z copying torch/_dynamo/polyfills/sys.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1261390Z copying torch/_dynamo/polyfills/pytree.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1269330Z copying torch/_dynamo/polyfills/itertools.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills 2025-07-24T03:55:00.1277710Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-07-24T03:55:00.1278070Z copying torch/ao/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn 2025-07-24T03:55:00.1286250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-07-24T03:55:00.1286680Z copying torch/ao/ns/_numeric_suite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-07-24T03:55:00.1301130Z copying torch/ao/ns/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-07-24T03:55:00.1301670Z copying torch/ao/ns/_numeric_suite_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns 2025-07-24T03:55:00.1317510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1317960Z copying torch/ao/quantization/observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1348520Z copying torch/ao/quantization/fuse_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1356260Z copying torch/ao/quantization/_learnable_fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1364410Z copying torch/ao/quantization/quantization_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1372580Z copying torch/ao/quantization/_correct_bias.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1379620Z copying torch/ao/quantization/quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1395350Z copying torch/ao/quantization/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1403030Z copying torch/ao/quantization/fake_quantize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1417480Z copying torch/ao/quantization/qconfig.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1418530Z copying torch/ao/quantization/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1419660Z copying torch/ao/quantization/qconfig_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1427020Z copying torch/ao/quantization/stubs.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1433490Z copying torch/ao/quantization/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1434430Z copying torch/ao/quantization/fuser_method_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1442250Z copying torch/ao/quantization/quantize_jit.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1450300Z copying torch/ao/quantization/quantize_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1458060Z copying torch/ao/quantization/quant_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1465220Z copying torch/ao/quantization/quantize_fx.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization 2025-07-24T03:55:00.1479860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-07-24T03:55:00.1480250Z copying torch/ao/pruning/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-07-24T03:55:00.1487100Z copying torch/ao/pruning/_mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning 2025-07-24T03:55:00.1494590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-07-24T03:55:00.1494960Z copying torch/ao/nn/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat 2025-07-24T03:55:00.1502610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-07-24T03:55:00.1503090Z copying torch/ao/nn/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-07-24T03:55:00.1510780Z copying torch/ao/nn/quantized/functional.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized 2025-07-24T03:55:00.1526490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-07-24T03:55:00.1527020Z copying torch/ao/nn/quantizable/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable 2025-07-24T03:55:00.1534650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-07-24T03:55:00.1535090Z copying torch/ao/nn/intrinsic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic 2025-07-24T03:55:00.1543520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-07-24T03:55:00.1543920Z copying torch/ao/nn/sparse/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse 2025-07-24T03:55:00.1551880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-07-24T03:55:00.1552320Z copying torch/ao/nn/qat/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic 2025-07-24T03:55:00.1560550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-24T03:55:00.1560990Z copying torch/ao/nn/qat/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-24T03:55:00.1568130Z copying torch/ao/nn/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-24T03:55:00.1575340Z copying torch/ao/nn/qat/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-24T03:55:00.1582410Z copying torch/ao/nn/qat/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules 2025-07-24T03:55:00.1591350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-07-24T03:55:00.1591860Z copying torch/ao/nn/qat/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-07-24T03:55:00.1599390Z copying torch/ao/nn/qat/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules 2025-07-24T03:55:00.1607210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-07-24T03:55:00.1607700Z copying torch/ao/nn/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic 2025-07-24T03:55:00.1617530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1618040Z copying torch/ao/nn/quantized/modules/batchnorm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1625930Z copying torch/ao/nn/quantized/modules/functional_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1634570Z copying torch/ao/nn/quantized/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1642340Z copying torch/ao/nn/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1649420Z copying torch/ao/nn/quantized/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1657640Z copying torch/ao/nn/quantized/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1665020Z copying torch/ao/nn/quantized/modules/dropout.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1672550Z copying torch/ao/nn/quantized/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1687390Z copying torch/ao/nn/quantized/modules/normalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1695580Z copying torch/ao/nn/quantized/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1709380Z copying torch/ao/nn/quantized/modules/embedding_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules 2025-07-24T03:55:00.1717580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-07-24T03:55:00.1718140Z copying torch/ao/nn/quantized/reference/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference 2025-07-24T03:55:00.1725910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:00.1726580Z copying torch/ao/nn/quantized/dynamic/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:00.1734430Z copying torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:00.1741610Z copying torch/ao/nn/quantized/dynamic/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:00.1756050Z copying torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:00.1777640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:00.1778240Z copying torch/ao/nn/quantized/reference/modules/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:00.1785470Z copying torch/ao/nn/quantized/reference/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:00.1793000Z copying torch/ao/nn/quantized/reference/modules/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:00.1800330Z copying torch/ao/nn/quantized/reference/modules/sparse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:00.1807700Z copying torch/ao/nn/quantized/reference/modules/conv.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:00.1816070Z copying torch/ao/nn/quantized/reference/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:00.1831890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-07-24T03:55:00.1832400Z copying torch/ao/nn/quantizable/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-07-24T03:55:00.1839300Z copying torch/ao/nn/quantizable/modules/activation.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-07-24T03:55:00.1853450Z copying torch/ao/nn/quantizable/modules/rnn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules 2025-07-24T03:55:00.1866920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-07-24T03:55:00.1867380Z copying torch/ao/nn/intrinsic/qat/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat 2025-07-24T03:55:00.1874750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-07-24T03:55:00.1875260Z copying torch/ao/nn/intrinsic/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized 2025-07-24T03:55:00.1883400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-07-24T03:55:00.1883900Z copying torch/ao/nn/intrinsic/modules/fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-07-24T03:55:00.1891140Z copying torch/ao/nn/intrinsic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules 2025-07-24T03:55:00.1899930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:00.1900470Z copying torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:00.1914960Z copying torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:00.1923070Z copying torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:00.1931220Z copying torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:00.1938950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-07-24T03:55:00.1939520Z copying torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic 2025-07-24T03:55:00.1948360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:00.1948930Z copying torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:00.1956090Z copying torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:00.1962780Z copying torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:00.1969660Z copying torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:00.1977090Z copying torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:00.1985480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:55:00.1986120Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:55:00.1993910Z copying torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:55:00.2001890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-07-24T03:55:00.2002390Z copying torch/ao/nn/sparse/quantized/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-07-24T03:55:00.2010070Z copying torch/ao/nn/sparse/quantized/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-07-24T03:55:00.2018220Z copying torch/ao/nn/sparse/quantized/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized 2025-07-24T03:55:00.2025580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-07-24T03:55:00.2026140Z copying torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-07-24T03:55:00.2033780Z copying torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic 2025-07-24T03:55:00.2043130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2043520Z copying torch/ao/ns/fx/graph_passes.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2058960Z copying torch/ao/ns/fx/weight_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2068220Z copying torch/ao/ns/fx/graph_matcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2083270Z copying torch/ao/ns/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2083790Z copying torch/ao/ns/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2099210Z copying torch/ao/ns/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2106890Z copying torch/ao/ns/fx/ns_types.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2113720Z copying torch/ao/ns/fx/n_shadows_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2135140Z copying torch/ao/ns/fx/mappings.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2148690Z copying torch/ao/ns/fx/qconfig_multi_mapping.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx 2025-07-24T03:55:00.2157020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2157630Z copying torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2171410Z copying torch/ao/quantization/backend_config/qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2179590Z copying torch/ao/quantization/backend_config/fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2186750Z copying torch/ao/quantization/backend_config/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2193620Z copying torch/ao/quantization/backend_config/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2200770Z copying torch/ao/quantization/backend_config/observation_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2201530Z copying torch/ao/quantization/backend_config/onednn.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2215650Z copying torch/ao/quantization/backend_config/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2222970Z copying torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2230310Z copying torch/ao/quantization/backend_config/executorch.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2244480Z copying torch/ao/quantization/backend_config/backend_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2258880Z copying torch/ao/quantization/backend_config/x86.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2267310Z copying torch/ao/quantization/backend_config/tensorrt.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config 2025-07-24T03:55:00.2275670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2276180Z copying torch/ao/quantization/pt2e/port_metadata_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2283600Z copying torch/ao/quantization/pt2e/export_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2290960Z copying torch/ao/quantization/pt2e/qat_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2306260Z copying torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2313940Z copying torch/ao/quantization/pt2e/lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2320730Z copying torch/ao/quantization/pt2e/graph_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2328400Z copying torch/ao/quantization/pt2e/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2328970Z copying torch/ao/quantization/pt2e/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2344590Z copying torch/ao/quantization/pt2e/_affine_quantization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2359840Z copying torch/ao/quantization/pt2e/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2374560Z copying torch/ao/quantization/pt2e/_numeric_debugger.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e 2025-07-24T03:55:00.2384540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2385020Z copying torch/ao/quantization/fx/graph_module.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2392490Z copying torch/ao/quantization/fx/lower_to_fbgemm.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2399350Z copying torch/ao/quantization/fx/_equalize.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2413390Z copying torch/ao/quantization/fx/lower_to_qnnpack.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2421110Z copying torch/ao/quantization/fx/convert.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2443140Z copying torch/ao/quantization/fx/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2451170Z copying torch/ao/quantization/fx/quantize_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2459050Z copying torch/ao/quantization/fx/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2474440Z copying torch/ao/quantization/fx/pattern_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2482660Z copying torch/ao/quantization/fx/_lower_to_native_backend.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2504810Z copying torch/ao/quantization/fx/custom_config.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2518700Z copying torch/ao/quantization/fx/fuse.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2526690Z copying torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2534590Z copying torch/ao/quantization/fx/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2542970Z copying torch/ao/quantization/fx/prepare.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2575810Z copying torch/ao/quantization/fx/tracer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2584320Z copying torch/ao/quantization/fx/_decomposed.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2597500Z copying torch/ao/quantization/fx/fuse_handler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2605110Z copying torch/ao/quantization/fx/lstm_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx 2025-07-24T03:55:00.2613930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2614490Z copying torch/ao/quantization/quantizer/embedding_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2621840Z copying torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2643060Z copying torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2651140Z copying torch/ao/quantization/quantizer/composable_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2658730Z copying torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2665390Z copying torch/ao/quantization/quantizer/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2671930Z copying torch/ao/quantization/quantizer/quantizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2678760Z copying torch/ao/quantization/quantizer/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2686070Z copying torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer 2025-07-24T03:55:00.2700300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-07-24T03:55:00.2700910Z copying torch/ao/quantization/pt2e/representation/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-07-24T03:55:00.2708250Z copying torch/ao/quantization/pt2e/representation/rewrite.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation 2025-07-24T03:55:00.2723590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:00.2724150Z copying torch/ao/quantization/fx/_model_report/detector.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:00.2746360Z copying torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:00.2761240Z copying torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:00.2768760Z copying torch/ao/quantization/fx/_model_report/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:00.2769450Z copying torch/ao/quantization/fx/_model_report/model_report.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:00.2785880Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-24T03:55:00.2786420Z copying torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-24T03:55:00.2794250Z copying torch/ao/pruning/sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-24T03:55:00.2794840Z copying torch/ao/pruning/sparsifier/utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-24T03:55:00.2803070Z copying torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-24T03:55:00.2810590Z copying torch/ao/pruning/sparsifier/base_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier 2025-07-24T03:55:00.2818550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-07-24T03:55:00.2819090Z copying torch/ao/pruning/_experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental 2025-07-24T03:55:00.2820760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-24T03:55:00.2821270Z copying torch/ao/pruning/scheduler/base_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-24T03:55:00.2828890Z copying torch/ao/pruning/scheduler/cubic_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-24T03:55:00.2841630Z copying torch/ao/pruning/scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-24T03:55:00.2842260Z copying torch/ao/pruning/scheduler/lambda_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler 2025-07-24T03:55:00.2844790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:00.2845520Z copying torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:00.2853330Z copying torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:00.2861560Z copying torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:00.2868910Z copying torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:00.2876940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:00.2877510Z copying torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:00.2885200Z copying torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:00.2891990Z copying torch/ao/pruning/_experimental/pruner/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:00.2899360Z copying torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:00.2906780Z copying torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:00.2921290Z copying torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:00.2928080Z copying torch/ao/pruning/_experimental/pruner/parametrization.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:00.2935740Z copying torch/ao/pruning/_experimental/pruner/match_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:00.2943610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-24T03:55:00.2944340Z copying torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-24T03:55:00.2958960Z copying torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-24T03:55:00.2960150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-07-24T03:55:00.2960770Z copying torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-07-24T03:55:00.2968840Z copying torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler 2025-07-24T03:55:00.2977180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-07-24T03:55:00.2977890Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-07-24T03:55:00.2979210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-24T03:55:00.2980060Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-24T03:55:00.2987610Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-24T03:55:00.2988680Z copying torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-24T03:55:00.2996170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-07-24T03:55:00.2996720Z copying torch/_refs/linalg/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg 2025-07-24T03:55:00.3005220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-07-24T03:55:00.3005630Z copying torch/_refs/nn/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn 2025-07-24T03:55:00.3014230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-07-24T03:55:00.3014650Z copying torch/_refs/special/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special 2025-07-24T03:55:00.3023090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-07-24T03:55:00.3023550Z copying torch/_refs/nn/functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional 2025-07-24T03:55:00.3040650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-07-24T03:55:00.3041180Z copying torch/export/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-07-24T03:55:00.3042350Z copying torch/export/experimental/_utils.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental 2025-07-24T03:55:00.3077940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-07-24T03:55:00.3078360Z copying torch/export/passes/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes 2025-07-24T03:55:00.3086650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-24T03:55:00.3087100Z copying torch/export/pt2_archive/_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-24T03:55:00.3088190Z copying torch/export/pt2_archive/_package_weights.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-24T03:55:00.3095300Z copying torch/export/pt2_archive/constants.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-24T03:55:00.3102850Z copying torch/export/pt2_archive/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive 2025-07-24T03:55:00.3111040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-24T03:55:00.3111540Z copying torch/nested/_internal/nested_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-24T03:55:00.3126810Z copying torch/nested/_internal/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-24T03:55:00.3127380Z copying torch/nested/_internal/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-24T03:55:00.3160020Z copying torch/nested/_internal/sdpa.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-24T03:55:00.3175090Z copying torch/nested/_internal/nested_int.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal 2025-07-24T03:55:00.3183170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-07-24T03:55:00.3183690Z copying torch/signal/windows/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-07-24T03:55:00.3190940Z copying torch/signal/windows/windows.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows 2025-07-24T03:55:00.3207020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-24T03:55:00.3207490Z copying torch/package/analyze/trace_dependencies.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-24T03:55:00.3214800Z copying torch/package/analyze/find_first_use_of_broken_modules.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-24T03:55:00.3221950Z copying torch/package/analyze/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-24T03:55:00.3228980Z copying torch/package/analyze/is_from_package.py -> build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze 2025-07-24T03:55:00.3236720Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-07-24T03:55:00.3237290Z copying torchgen/selective_build/selector.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-07-24T03:55:00.3238850Z copying torchgen/selective_build/operator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-07-24T03:55:00.3240060Z copying torchgen/selective_build/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build 2025-07-24T03:55:00.3242460Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-24T03:55:00.3242920Z copying torchgen/static_runtime/config.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-24T03:55:00.3251020Z copying torchgen/static_runtime/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-24T03:55:00.3251890Z copying torchgen/static_runtime/generator.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-24T03:55:00.3266790Z copying torchgen/static_runtime/gen_static_runtime_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime 2025-07-24T03:55:00.3275010Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-07-24T03:55:00.3275490Z copying torchgen/operator_versions/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-07-24T03:55:00.3276880Z copying torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-07-24T03:55:00.3283680Z copying torchgen/operator_versions/gen_mobile_upgraders.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions 2025-07-24T03:55:00.3291840Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-24T03:55:00.3292230Z copying torchgen/dest/lazy_ts_lowering.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-24T03:55:00.3293510Z copying torchgen/dest/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-24T03:55:00.3294330Z copying torchgen/dest/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-24T03:55:00.3295430Z copying torchgen/dest/native_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-24T03:55:00.3296390Z copying torchgen/dest/lazy_ir.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-24T03:55:00.3297670Z copying torchgen/dest/register_dispatch_key.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest 2025-07-24T03:55:00.3300780Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3301190Z copying torchgen/api/dispatcher.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3302260Z copying torchgen/api/translate.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3303450Z copying torchgen/api/ufunc.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3304490Z copying torchgen/api/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3305300Z copying torchgen/api/native.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3306330Z copying torchgen/api/cpp.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3307410Z copying torchgen/api/unboxing.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3315560Z copying torchgen/api/functionalization.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3316140Z copying torchgen/api/autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3317430Z copying torchgen/api/structured.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3318530Z copying torchgen/api/python.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3319950Z copying torchgen/api/lazy.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3321070Z copying torchgen/api/meta.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api 2025-07-24T03:55:00.3323220Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-07-24T03:55:00.3323590Z copying torchgen/aoti/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-07-24T03:55:00.3324350Z copying torchgen/aoti/fallback_ops.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti 2025-07-24T03:55:00.3326680Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-24T03:55:00.3327100Z copying torchgen/api/types/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-24T03:55:00.3328080Z copying torchgen/api/types/types.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-24T03:55:00.3329250Z copying torchgen/api/types/signatures.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-24T03:55:00.3330320Z copying torchgen/api/types/types_base.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types 2025-07-24T03:55:00.3332740Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-07-24T03:55:00.3333190Z copying functorch/experimental/control_flow.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-07-24T03:55:00.3339930Z copying functorch/experimental/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-07-24T03:55:00.3347790Z copying functorch/experimental/ops.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental 2025-07-24T03:55:00.3355540Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-07-24T03:55:00.3355910Z copying functorch/_src/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src 2025-07-24T03:55:00.3358340Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3358720Z copying functorch/dim/magic_trace.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3366350Z copying functorch/dim/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3374110Z copying functorch/dim/delayed_mul_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3381990Z copying functorch/dim/op_properties.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3389400Z copying functorch/dim/batch_tensor.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3397160Z copying functorch/dim/wrap_type.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3404370Z copying functorch/dim/reference.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3419330Z copying functorch/dim/dim.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3426480Z copying functorch/dim/tree_map.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/dim 2025-07-24T03:55:00.3433900Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-07-24T03:55:00.3434310Z copying functorch/compile/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/compile 2025-07-24T03:55:00.3441680Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-07-24T03:55:00.3442240Z copying functorch/einops/_parsing.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-07-24T03:55:00.3450760Z copying functorch/einops/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-07-24T03:55:00.3458190Z copying functorch/einops/rearrange.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/einops 2025-07-24T03:55:00.3465660Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-07-24T03:55:00.3466210Z copying functorch/_src/make_functional/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional 2025-07-24T03:55:00.3474240Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-07-24T03:55:00.3474740Z copying functorch/_src/eager_transforms/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms 2025-07-24T03:55:00.3482270Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-07-24T03:55:00.3482750Z copying functorch/_src/aot_autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd 2025-07-24T03:55:00.3490710Z creating build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-07-24T03:55:00.3491130Z copying functorch/_src/vmap/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap 2025-07-24T03:55:00.6442640Z copying torch/return_types.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:55:00.6445940Z copying torch/_VF.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:55:00.6453100Z copying torch/py.typed -> build/lib.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:55:00.6454110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-07-24T03:55:00.6454720Z copying torch/bin/protoc-3.13.0.0 -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-07-24T03:55:00.6613760Z copying torch/bin/torch_shm_manager -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-07-24T03:55:00.6638240Z copying torch/bin/protoc -> build/lib.macosx-14.0-arm64-cpython-312/torch/bin 2025-07-24T03:55:00.6695810Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:55:00.6705380Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:55:00.6706980Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:55:00.6712360Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-07-24T03:55:00.6717940Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:55:00.6724480Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-24T03:55:00.6726070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6726660Z copying torch/_C/_profiler.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6732470Z copying torch/_C/_onnx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6738850Z copying torch/_C/_distributed_c10d.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6754030Z copying torch/_C/_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6764450Z copying torch/_C/_monitor.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6770650Z copying torch/_C/_itt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6776570Z copying torch/_C/_lazy.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6782910Z copying torch/_C/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6786340Z copying torch/_C/_nvtx.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6793100Z copying torch/_C/_cpu.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6799280Z copying torch/_C/_nn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6800280Z copying torch/_C/_cusparselt.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6807630Z copying torch/_C/_instruction_counter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6813640Z copying torch/_C/_jit_tree_views.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6820500Z copying torch/_C/_lazy_ts_backend.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6826670Z copying torch/_C/_functorch.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6831870Z copying torch/_C/_VariableFunctions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6838620Z copying torch/_C/_distributed_rpc.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6849950Z copying torch/_C/_verbose.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6858910Z copying torch/_C/_aoti.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6866000Z copying torch/_C/_functions.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6872540Z copying torch/_C/_distributed_rpc_testing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6878680Z copying torch/_C/_cudnn.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6885000Z copying torch/_C/_distributed_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C 2025-07-24T03:55:00.6891520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-07-24T03:55:00.6892020Z copying torch/_C/_export/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-07-24T03:55:00.6898820Z copying torch/_C/_export/pt2_archive_constants.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export 2025-07-24T03:55:00.6904850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-24T03:55:00.6905550Z copying torch/_C/_dynamo/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-24T03:55:00.6911790Z copying torch/_C/_dynamo/compiled_autograd.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-24T03:55:00.6917990Z copying torch/_C/_dynamo/guards.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-24T03:55:00.6924940Z copying torch/_C/_dynamo/eval_frame.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo 2025-07-24T03:55:00.6931760Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:55:00.6946910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-07-24T03:55:00.6947330Z copying torch/_C_flatbuffer/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer 2025-07-24T03:55:00.6958490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-24T03:55:00.6958840Z copying torch/lib/libshm.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-24T03:55:00.6978890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-07-24T03:55:00.6979350Z copying torch/lib/libshm_windows/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows 2025-07-24T03:55:00.6985690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-24T03:55:00.6986070Z copying torch/lib/libshm/err.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-24T03:55:00.6987250Z copying torch/lib/libshm/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-24T03:55:00.6988450Z copying torch/lib/libshm/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-24T03:55:00.6989650Z copying torch/lib/libshm/alloc_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm 2025-07-24T03:55:00.6990900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.6991440Z copying torch/include/sleef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.6993990Z copying torch/include/cpuinfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.6995050Z copying torch/include/nnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.6996530Z copying torch/include/xnnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.6998930Z copying torch/include/libshm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.6999700Z copying torch/include/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.7000880Z copying torch/include/qnnpack_func.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.7002110Z copying torch/include/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.7003890Z copying torch/include/clog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.7005120Z copying torch/include/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.7006510Z copying torch/include/experiments-config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.7007750Z copying torch/include/fxdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:00.7009120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7009690Z copying torch/include/pybind11/attr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7011010Z copying torch/include/pybind11/embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7012250Z copying torch/include/pybind11/numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7013880Z copying torch/include/pybind11/pybind11.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7015770Z copying torch/include/pybind11/operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7016930Z copying torch/include/pybind11/iostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7018170Z copying torch/include/pybind11/gil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7019340Z copying torch/include/pybind11/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7020510Z copying torch/include/pybind11/typing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7021840Z copying torch/include/pybind11/stl_bind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7023310Z copying torch/include/pybind11/buffer_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7024530Z copying torch/include/pybind11/options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7025750Z copying torch/include/pybind11/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7027020Z copying torch/include/pybind11/stl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7028330Z copying torch/include/pybind11/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7029510Z copying torch/include/pybind11/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7030670Z copying torch/include/pybind11/cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7032490Z copying torch/include/pybind11/type_caster_pyobject_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7033670Z copying torch/include/pybind11/eigen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7034970Z copying torch/include/pybind11/gil_safe_call_once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7036180Z copying torch/include/pybind11/pytypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7037960Z copying torch/include/pybind11/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11 2025-07-24T03:55:00.7039260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-07-24T03:55:00.7040010Z copying torch/include/pybind11/eigen/matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-07-24T03:55:00.7041330Z copying torch/include/pybind11/eigen/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-07-24T03:55:00.7042560Z copying torch/include/pybind11/eigen/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen 2025-07-24T03:55:00.7043960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-07-24T03:55:00.7044570Z copying torch/include/pybind11/stl/filesystem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl 2025-07-24T03:55:00.7046030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7046620Z copying torch/include/pybind11/detail/type_caster_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7048180Z copying torch/include/pybind11/detail/exception_translation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7049360Z copying torch/include/pybind11/detail/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7050580Z copying torch/include/pybind11/detail/descr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7051850Z copying torch/include/pybind11/detail/internals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7053220Z copying torch/include/pybind11/detail/cpp_conduit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7054430Z copying torch/include/pybind11/detail/value_and_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7055960Z copying torch/include/pybind11/detail/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7057330Z copying torch/include/pybind11/detail/class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7058630Z copying torch/include/pybind11/detail/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail 2025-07-24T03:55:00.7059910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7060460Z copying torch/include/fmt/ostream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7061860Z copying torch/include/fmt/format-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7063470Z copying torch/include/fmt/ranges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7064770Z copying torch/include/fmt/xchar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7066010Z copying torch/include/fmt/core.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7067190Z copying torch/include/fmt/chrono.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7068900Z copying torch/include/fmt/os.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7070080Z copying torch/include/fmt/color.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7071940Z copying torch/include/fmt/args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7072680Z copying torch/include/fmt/printf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7074170Z copying torch/include/fmt/compile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7075570Z copying torch/include/fmt/format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7077770Z copying torch/include/fmt/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7078940Z copying torch/include/fmt/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt 2025-07-24T03:55:00.7081120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2 2025-07-24T03:55:00.7081470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-07-24T03:55:00.7081930Z copying torch/include/caffe2/core/timer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-07-24T03:55:00.7083150Z copying torch/include/caffe2/core/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-07-24T03:55:00.7084290Z copying torch/include/caffe2/core/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core 2025-07-24T03:55:00.7085590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-07-24T03:55:00.7086230Z copying torch/include/caffe2/perfkernels/batch_box_cox_vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-07-24T03:55:00.7087580Z copying torch/include/caffe2/perfkernels/embedding_lookup_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-07-24T03:55:00.7094650Z copying torch/include/caffe2/perfkernels/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels 2025-07-24T03:55:00.7095300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-24T03:55:00.7095830Z copying torch/include/caffe2/serialize/in_memory_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-24T03:55:00.7096500Z copying torch/include/caffe2/serialize/read_adapter_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-24T03:55:00.7097160Z copying torch/include/caffe2/serialize/crc_alt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-24T03:55:00.7097780Z copying torch/include/caffe2/serialize/versions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-24T03:55:00.7098420Z copying torch/include/caffe2/serialize/inline_container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-24T03:55:00.7099070Z copying torch/include/caffe2/serialize/file_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-24T03:55:00.7099720Z copying torch/include/caffe2/serialize/istream_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize 2025-07-24T03:55:00.7100230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-07-24T03:55:00.7100720Z copying torch/include/caffe2/utils/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-07-24T03:55:00.7101320Z copying torch/include/caffe2/utils/fixed_divisor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-07-24T03:55:00.7102440Z copying torch/include/caffe2/utils/proto_wrap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils 2025-07-24T03:55:00.7103870Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:00.7104450Z copying torch/include/caffe2/utils/threadpool/ThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:00.7105630Z copying torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:00.7106800Z copying torch/include/caffe2/utils/threadpool/pthreadpool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:00.7108000Z copying torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:00.7109230Z copying torch/include/caffe2/utils/threadpool/WorkersPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:00.7110530Z copying torch/include/caffe2/utils/threadpool/thread_pool_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:00.7111630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google 2025-07-24T03:55:00.7112120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7113000Z copying torch/include/google/protobuf/source_context.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7113950Z copying torch/include/google/protobuf/repeated_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7115740Z copying torch/include/google/protobuf/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7117020Z copying torch/include/google/protobuf/wire_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7118370Z copying torch/include/google/protobuf/inlined_string_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7119560Z copying torch/include/google/protobuf/map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7121030Z copying torch/include/google/protobuf/arenastring.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7122240Z copying torch/include/google/protobuf/map_entry_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7123570Z copying torch/include/google/protobuf/service.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7124800Z copying torch/include/google/protobuf/struct.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7126150Z copying torch/include/google/protobuf/empty.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7127540Z copying torch/include/google/protobuf/descriptor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7129170Z copying torch/include/google/protobuf/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7130680Z copying torch/include/google/protobuf/wrappers.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7132480Z copying torch/include/google/protobuf/text_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7133780Z copying torch/include/google/protobuf/has_bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7135040Z copying torch/include/google/protobuf/arena_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7136160Z copying torch/include/google/protobuf/api.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7137800Z copying torch/include/google/protobuf/metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7138990Z copying torch/include/google/protobuf/extension_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7140660Z copying torch/include/google/protobuf/reflection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7141970Z copying torch/include/google/protobuf/generated_message_table_driven.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7143330Z copying torch/include/google/protobuf/duration.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7144500Z copying torch/include/google/protobuf/generated_message_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7145820Z copying torch/include/google/protobuf/unknown_field_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7146940Z copying torch/include/google/protobuf/type.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7148720Z copying torch/include/google/protobuf/map_field_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7149950Z copying torch/include/google/protobuf/timestamp.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7151290Z copying torch/include/google/protobuf/field_mask.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7152580Z copying torch/include/google/protobuf/descriptor.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7156800Z copying torch/include/google/protobuf/map_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7157650Z copying torch/include/google/protobuf/message_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7158960Z copying torch/include/google/protobuf/generated_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7160210Z copying torch/include/google/protobuf/descriptor_database.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7161640Z copying torch/include/google/protobuf/map_field.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7163090Z copying torch/include/google/protobuf/generated_enum_reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7164340Z copying torch/include/google/protobuf/generated_enum_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7165640Z copying torch/include/google/protobuf/any.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7167180Z copying torch/include/google/protobuf/map_type_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7168740Z copying torch/include/google/protobuf/parse_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7170100Z copying torch/include/google/protobuf/extension_set_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7171550Z copying torch/include/google/protobuf/map_field_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7172660Z copying torch/include/google/protobuf/metadata_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7174190Z copying torch/include/google/protobuf/implicit_weak_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7175160Z copying torch/include/google/protobuf/arena.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7176660Z copying torch/include/google/protobuf/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7177940Z copying torch/include/google/protobuf/reflection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7180660Z copying torch/include/google/protobuf/dynamic_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7182000Z copying torch/include/google/protobuf/wire_format_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf 2025-07-24T03:55:00.7184600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7185260Z copying torch/include/google/protobuf/stubs/stringpiece.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7186560Z copying torch/include/google/protobuf/stubs/stl_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7187820Z copying torch/include/google/protobuf/stubs/port.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7189250Z copying torch/include/google/protobuf/stubs/status.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7190650Z copying torch/include/google/protobuf/stubs/template_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7192030Z copying torch/include/google/protobuf/stubs/map_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7193570Z copying torch/include/google/protobuf/stubs/casts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7194900Z copying torch/include/google/protobuf/stubs/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7196140Z copying torch/include/google/protobuf/stubs/bytestream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7197400Z copying torch/include/google/protobuf/stubs/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7198740Z copying torch/include/google/protobuf/stubs/macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7200110Z copying torch/include/google/protobuf/stubs/platform_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7201320Z copying torch/include/google/protobuf/stubs/once.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7202610Z copying torch/include/google/protobuf/stubs/fastmem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7204010Z copying torch/include/google/protobuf/stubs/mutex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7205150Z copying torch/include/google/protobuf/stubs/callback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7206590Z copying torch/include/google/protobuf/stubs/strutil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7208160Z copying torch/include/google/protobuf/stubs/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs 2025-07-24T03:55:00.7209430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-24T03:55:00.7210060Z copying torch/include/google/protobuf/util/time_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-24T03:55:00.7211480Z copying torch/include/google/protobuf/util/field_mask_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-24T03:55:00.7212720Z copying torch/include/google/protobuf/util/json_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-24T03:55:00.7214060Z copying torch/include/google/protobuf/util/type_resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-24T03:55:00.7215320Z copying torch/include/google/protobuf/util/field_comparator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-24T03:55:00.7216530Z copying torch/include/google/protobuf/util/type_resolver_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-24T03:55:00.7217960Z copying torch/include/google/protobuf/util/message_differencer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-24T03:55:00.7219450Z copying torch/include/google/protobuf/util/delimited_message_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util 2025-07-24T03:55:00.7220560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7221240Z copying torch/include/google/protobuf/io/zero_copy_stream_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7222470Z copying torch/include/google/protobuf/io/printer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7223820Z copying torch/include/google/protobuf/io/gzip_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7225070Z copying torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7226920Z copying torch/include/google/protobuf/io/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7227740Z copying torch/include/google/protobuf/io/tokenizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7229270Z copying torch/include/google/protobuf/io/zero_copy_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7230460Z copying torch/include/google/protobuf/io/io_win32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7231730Z copying torch/include/google/protobuf/io/coded_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io 2025-07-24T03:55:00.7233460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-24T03:55:00.7234180Z copying torch/include/google/protobuf/compiler/code_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-24T03:55:00.7235460Z copying torch/include/google/protobuf/compiler/plugin.pb.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-24T03:55:00.7237090Z copying torch/include/google/protobuf/compiler/plugin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-24T03:55:00.7238330Z copying torch/include/google/protobuf/compiler/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-24T03:55:00.7239840Z copying torch/include/google/protobuf/compiler/command_line_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-24T03:55:00.7241170Z copying torch/include/google/protobuf/compiler/importer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler 2025-07-24T03:55:00.7242450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python 2025-07-24T03:55:00.7243170Z copying torch/include/google/protobuf/compiler/python/python_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python 2025-07-24T03:55:00.7244570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-07-24T03:55:00.7245210Z copying torch/include/google/protobuf/compiler/js/well_known_types_embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-07-24T03:55:00.7246540Z copying torch/include/google/protobuf/compiler/js/js_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js 2025-07-24T03:55:00.7247750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-07-24T03:55:00.7248430Z copying torch/include/google/protobuf/compiler/java/java_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-07-24T03:55:00.7249900Z copying torch/include/google/protobuf/compiler/java/java_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java 2025-07-24T03:55:00.7250760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php 2025-07-24T03:55:00.7251450Z copying torch/include/google/protobuf/compiler/php/php_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php 2025-07-24T03:55:00.7252680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp 2025-07-24T03:55:00.7253380Z copying torch/include/google/protobuf/compiler/cpp/cpp_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp 2025-07-24T03:55:00.7254590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-07-24T03:55:00.7255310Z copying torch/include/google/protobuf/compiler/csharp/csharp_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-07-24T03:55:00.7256560Z copying torch/include/google/protobuf/compiler/csharp/csharp_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp 2025-07-24T03:55:00.7257630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby 2025-07-24T03:55:00.7258340Z copying torch/include/google/protobuf/compiler/ruby/ruby_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby 2025-07-24T03:55:00.7259490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-07-24T03:55:00.7260200Z copying torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-07-24T03:55:00.7261470Z copying torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec 2025-07-24T03:55:00.7262940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-24T03:55:00.7263360Z copying torch/include/torch/script.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-24T03:55:00.7264460Z copying torch/include/torch/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-24T03:55:00.7265950Z copying torch/include/torch/custom_class_detail.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-24T03:55:00.7267100Z copying torch/include/torch/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-24T03:55:00.7268440Z copying torch/include/torch/extension.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch 2025-07-24T03:55:00.7269760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly 2025-07-24T03:55:00.7270540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-07-24T03:55:00.7271460Z copying torch/include/torch/headeronly/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/util 2025-07-24T03:55:00.7273330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-07-24T03:55:00.7273920Z copying torch/include/torch/headeronly/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-07-24T03:55:00.7275300Z copying torch/include/torch/headeronly/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-07-24T03:55:00.7276480Z copying torch/include/torch/headeronly/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros 2025-07-24T03:55:00.7278210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7278660Z copying torch/include/torch/csrc/Size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7279900Z copying torch/include/torch/csrc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7281110Z copying torch/include/torch/csrc/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7282370Z copying torch/include/torch/csrc/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7283560Z copying torch/include/torch/csrc/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7284820Z copying torch/include/torch/csrc/THConcat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7286010Z copying torch/include/torch/csrc/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7287210Z copying torch/include/torch/csrc/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7288620Z copying torch/include/torch/csrc/serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7289690Z copying torch/include/torch/csrc/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7290960Z copying torch/include/torch/csrc/itt_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7292210Z copying torch/include/torch/csrc/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7293400Z copying torch/include/torch/csrc/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7294780Z copying torch/include/torch/csrc/DataLoader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7295990Z copying torch/include/torch/csrc/THP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7297500Z copying torch/include/torch/csrc/python_headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7298510Z copying torch/include/torch/csrc/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7299900Z copying torch/include/torch/csrc/DynamicTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7301170Z copying torch/include/torch/csrc/copy_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7302650Z copying torch/include/torch/csrc/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7303640Z copying torch/include/torch/csrc/itt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7305000Z copying torch/include/torch/csrc/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7306210Z copying torch/include/torch/csrc/StorageSharing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7307800Z copying torch/include/torch/csrc/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7309140Z copying torch/include/torch/csrc/Dtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7310410Z copying torch/include/torch/csrc/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7311590Z copying torch/include/torch/csrc/python_dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7312900Z copying torch/include/torch/csrc/CudaIPCTypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7314050Z copying torch/include/torch/csrc/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7315260Z copying torch/include/torch/csrc/TypeInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7316570Z copying torch/include/torch/csrc/StorageMethods.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc 2025-07-24T03:55:00.7317750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-07-24T03:55:00.7318380Z copying torch/include/torch/csrc/stable/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-07-24T03:55:00.7319770Z copying torch/include/torch/csrc/stable/ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-07-24T03:55:00.7320920Z copying torch/include/torch/csrc/stable/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable 2025-07-24T03:55:00.7322180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-24T03:55:00.7322830Z copying torch/include/torch/csrc/inductor/inductor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-24T03:55:00.7324140Z copying torch/include/torch/csrc/inductor/array_ref_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-24T03:55:00.7325390Z copying torch/include/torch/csrc/inductor/static_cuda_launcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-24T03:55:00.7326640Z copying torch/include/torch/csrc/inductor/cpp_prefix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor 2025-07-24T03:55:00.7328180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-07-24T03:55:00.7328810Z copying torch/include/torch/csrc/inductor/aoti_package/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-07-24T03:55:00.7330110Z copying torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package 2025-07-24T03:55:00.7331290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-07-24T03:55:00.7331950Z copying torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-07-24T03:55:00.7333270Z copying torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager 2025-07-24T03:55:00.7334460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:00.7335150Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:00.7336420Z copying torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:00.7337690Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:00.7338960Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:00.7340260Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:00.7341550Z copying torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:00.7342850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7343520Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7344740Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7345930Z copying torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7347240Z copying torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7348440Z copying torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7349710Z copying torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7350970Z copying torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7352200Z copying torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7353590Z copying torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7354760Z copying torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7355990Z copying torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7357150Z copying torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7358400Z copying torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7359850Z copying torch/include/torch/csrc/inductor/aoti_runtime/model_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:00.7361160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:00.7361810Z copying torch/include/torch/csrc/inductor/aoti_include/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:00.7363130Z copying torch/include/torch/csrc/inductor/aoti_include/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:00.7364340Z copying torch/include/torch/csrc/inductor/aoti_include/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:00.7365550Z copying torch/include/torch/csrc/inductor/aoti_include/cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:00.7366800Z copying torch/include/torch/csrc/inductor/aoti_include/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:00.7368070Z copying torch/include/torch/csrc/inductor/aoti_include/array_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:00.7369410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:00.7370470Z copying torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:00.7371360Z copying torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:00.7372680Z copying torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:00.7373900Z copying torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:00.7375120Z copying torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:00.7376360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:00.7377220Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:00.7379280Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:00.7380540Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:00.7382210Z copying torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:00.7383460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:00.7384110Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:00.7385660Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:00.7386910Z 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-07-24T03:55:00.7388260Z 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-07-24T03:55:00.7389530Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:00.7390720Z copying torch/include/torch/csrc/inductor/aoti_torch/c/shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:00.7392240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:00.7392920Z copying torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:00.7394190Z copying torch/include/torch/csrc/inductor/cpp_wrapper/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:00.7395410Z copying torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:00.7396670Z copying torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:00.7397880Z copying torch/include/torch/csrc/inductor/cpp_wrapper/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:00.7399140Z copying torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:00.7400550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:00.7401390Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:00.7402460Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:00.7403680Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:00.7405130Z copying torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:00.7406230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-07-24T03:55:00.7406750Z copying torch/include/torch/csrc/monitor/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-07-24T03:55:00.7407980Z copying torch/include/torch/csrc/monitor/counters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-07-24T03:55:00.7409230Z copying torch/include/torch/csrc/monitor/python_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor 2025-07-24T03:55:00.7410640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-07-24T03:55:00.7411310Z copying torch/include/torch/csrc/instruction_counter/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter 2025-07-24T03:55:00.7412520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-07-24T03:55:00.7413080Z copying torch/include/torch/csrc/mps/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps 2025-07-24T03:55:00.7414350Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-07-24T03:55:00.7414920Z copying torch/include/torch/csrc/onnx/back_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-07-24T03:55:00.7416160Z copying torch/include/torch/csrc/onnx/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-07-24T03:55:00.7417350Z copying torch/include/torch/csrc/onnx/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx 2025-07-24T03:55:00.7418600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-07-24T03:55:00.7419210Z copying torch/include/torch/csrc/cpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu 2025-07-24T03:55:00.7420570Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed 2025-07-24T03:55:00.7421140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-07-24T03:55:00.7421780Z copying torch/include/torch/csrc/distributed/autograd/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-07-24T03:55:00.7423440Z copying torch/include/torch/csrc/distributed/autograd/python_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-07-24T03:55:00.7424510Z copying torch/include/torch/csrc/distributed/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd 2025-07-24T03:55:00.7425810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-07-24T03:55:00.7426650Z copying torch/include/torch/csrc/distributed/autograd/context/container.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-07-24T03:55:00.7427740Z copying torch/include/torch/csrc/distributed/autograd/context/context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context 2025-07-24T03:55:00.7428950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7429760Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7430940Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7432170Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7433470Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7434730Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7441600Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7442660Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7443680Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7444680Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7445690Z copying torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:00.7446470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-07-24T03:55:00.7447230Z copying torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-07-24T03:55:00.7448240Z copying torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions 2025-07-24T03:55:00.7448990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine 2025-07-24T03:55:00.7449700Z copying torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine 2025-07-24T03:55:00.7450380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7450970Z copying torch/include/torch/csrc/distributed/rpc/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7451720Z copying torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7452500Z copying torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7453280Z copying torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7454080Z copying torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7454870Z copying torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7455640Z copying torch/include/torch/csrc/distributed/rpc/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7456630Z copying torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7457850Z copying torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7459090Z copying torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7460410Z copying torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7461600Z copying torch/include/torch/csrc/distributed/rpc/message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7462860Z copying torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7464070Z copying torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7465330Z copying torch/include/torch/csrc/distributed/rpc/python_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7466630Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7468130Z copying torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7469330Z copying torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7470580Z copying torch/include/torch/csrc/distributed/rpc/rpc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7471790Z copying torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7473660Z copying torch/include/torch/csrc/distributed/rpc/script_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7474520Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7475930Z copying torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7477190Z copying torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7478610Z copying torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7479890Z copying torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7481310Z copying torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:00.7482510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics 2025-07-24T03:55:00.7483300Z copying torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics 2025-07-24T03:55:00.7484470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-07-24T03:55:00.7485350Z copying torch/include/torch/csrc/distributed/rpc/testing/testing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-07-24T03:55:00.7486540Z copying torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing 2025-07-24T03:55:00.7487810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-24T03:55:00.7488580Z copying torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-24T03:55:00.7489790Z copying torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-24T03:55:00.7490910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7491550Z copying torch/include/torch/csrc/distributed/c10d/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7492920Z copying torch/include/torch/csrc/distributed/c10d/debug.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7494200Z copying torch/include/torch/csrc/distributed/c10d/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7495460Z copying torch/include/torch/csrc/distributed/c10d/socket_fmt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7496720Z copying torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7497960Z copying torch/include/torch/csrc/distributed/c10d/c10d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7499270Z copying torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7500480Z copying torch/include/torch/csrc/distributed/c10d/exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7501640Z copying torch/include/torch/csrc/distributed/c10d/socket.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:00.7502930Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-24T03:55:00.7503710Z copying torch/include/torch/csrc/distributed/c10d/quantization/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-24T03:55:00.7505000Z copying torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-24T03:55:00.7506230Z copying torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-24T03:55:00.7507360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:00.7508270Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:00.7509230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7509860Z copying torch/include/torch/csrc/autograd/python_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7511140Z copying torch/include/torch/csrc/autograd/custom_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7512620Z copying torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7513860Z copying torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7515250Z copying torch/include/torch/csrc/autograd/record_function_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7516380Z copying torch/include/torch/csrc/autograd/engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7517590Z copying torch/include/torch/csrc/autograd/python_enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7518750Z copying torch/include/torch/csrc/autograd/graph_task.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7519990Z copying torch/include/torch/csrc/autograd/edge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7521250Z copying torch/include/torch/csrc/autograd/python_nested_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7523380Z copying torch/include/torch/csrc/autograd/variable_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7524170Z copying torch/include/torch/csrc/autograd/saved_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7525520Z copying torch/include/torch/csrc/autograd/python_engine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7526880Z copying torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7528170Z copying torch/include/torch/csrc/autograd/profiler_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7529420Z copying torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7530690Z copying torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7531960Z copying torch/include/torch/csrc/autograd/python_cpp_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7533210Z copying torch/include/torch/csrc/autograd/python_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7534490Z copying torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7535680Z copying torch/include/torch/csrc/autograd/python_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7537070Z copying torch/include/torch/csrc/autograd/profiler_kineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7538290Z copying torch/include/torch/csrc/autograd/variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7539840Z copying torch/include/torch/csrc/autograd/python_fft_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7541130Z copying torch/include/torch/csrc/autograd/python_variable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7542510Z copying torch/include/torch/csrc/autograd/python_torch_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7543880Z copying torch/include/torch/csrc/autograd/function_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7545140Z copying torch/include/torch/csrc/autograd/input_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7546540Z copying torch/include/torch/csrc/autograd/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7547600Z copying torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7548890Z copying torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7550040Z copying torch/include/torch/csrc/autograd/symbolic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7551350Z copying torch/include/torch/csrc/autograd/input_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7552830Z copying torch/include/torch/csrc/autograd/profiler_legacy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7554150Z copying torch/include/torch/csrc/autograd/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7555440Z copying torch/include/torch/csrc/autograd/cpp_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7556780Z copying torch/include/torch/csrc/autograd/python_special_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7558300Z copying torch/include/torch/csrc/autograd/FunctionsManual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7559850Z copying torch/include/torch/csrc/autograd/forward_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7561340Z copying torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7562710Z copying torch/include/torch/csrc/autograd/python_nn_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7564250Z copying torch/include/torch/csrc/autograd/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7566390Z copying torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7567640Z copying torch/include/torch/csrc/autograd/profiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7569020Z copying torch/include/torch/csrc/autograd/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7570520Z copying torch/include/torch/csrc/autograd/anomaly_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd 2025-07-24T03:55:00.7571920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:00.7572580Z copying torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:00.7573910Z copying torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:00.7575210Z copying torch/include/torch/csrc/autograd/generated/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:00.7576490Z copying torch/include/torch/csrc/autograd/generated/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:00.7577760Z copying torch/include/torch/csrc/autograd/generated/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:00.7581990Z copying torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:00.7583150Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:00.7583830Z copying torch/include/torch/csrc/autograd/utils/warnings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:00.7585110Z copying torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:00.7586360Z copying torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:00.7587600Z copying torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:00.7588850Z copying torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:00.7590040Z copying torch/include/torch/csrc/autograd/utils/error_messages.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:00.7591240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:00.7591860Z copying torch/include/torch/csrc/autograd/functions/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:00.7593160Z copying torch/include/torch/csrc/autograd/functions/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:00.7594320Z copying torch/include/torch/csrc/autograd/functions/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:00.7595550Z copying torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:00.7596840Z copying torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:00.7598030Z copying torch/include/torch/csrc/autograd/functions/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:00.7599170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-07-24T03:55:00.7599760Z copying torch/include/torch/csrc/fx/node.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx 2025-07-24T03:55:00.7601090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-07-24T03:55:00.7601690Z copying torch/include/torch/csrc/multiprocessing/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing 2025-07-24T03:55:00.7602920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7603670Z copying torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7604760Z copying torch/include/torch/csrc/cuda/GdsFile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7605980Z copying torch/include/torch/csrc/cuda/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7607160Z copying torch/include/torch/csrc/cuda/THCP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7608320Z copying torch/include/torch/csrc/cuda/nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7609560Z copying torch/include/torch/csrc/cuda/memory_snapshot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7610760Z copying torch/include/torch/csrc/cuda/python_nccl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7611970Z copying torch/include/torch/csrc/cuda/device_set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7613170Z copying torch/include/torch/csrc/cuda/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7614400Z copying torch/include/torch/csrc/cuda/python_comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7615580Z copying torch/include/torch/csrc/cuda/comm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7616830Z copying torch/include/torch/csrc/cuda/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7617990Z copying torch/include/torch/csrc/cuda/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda 2025-07-24T03:55:00.7619240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-07-24T03:55:00.7619840Z copying torch/include/torch/csrc/xpu/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-07-24T03:55:00.7621050Z copying torch/include/torch/csrc/xpu/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-07-24T03:55:00.7622260Z copying torch/include/torch/csrc/xpu/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu 2025-07-24T03:55:00.7623420Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7624060Z copying torch/include/torch/csrc/dynamo/cache_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7625280Z copying torch/include/torch/csrc/dynamo/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7626490Z copying torch/include/torch/csrc/dynamo/cpython_defs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7627700Z copying torch/include/torch/csrc/dynamo/cpp_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7628950Z copying torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7630170Z copying torch/include/torch/csrc/dynamo/cpython_includes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7631380Z copying torch/include/torch/csrc/dynamo/extra_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7632570Z copying torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7634190Z copying torch/include/torch/csrc/dynamo/eval_frame_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7635460Z copying torch/include/torch/csrc/dynamo/eval_frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7636800Z copying torch/include/torch/csrc/dynamo/debug_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7637950Z copying torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7639120Z copying torch/include/torch/csrc/dynamo/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7640380Z copying torch/include/torch/csrc/dynamo/guards.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo 2025-07-24T03:55:00.7641610Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7642200Z copying torch/include/torch/csrc/utils/object_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7643450Z copying torch/include/torch/csrc/utils/tensor_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7644680Z copying torch/include/torch/csrc/utils/tensor_dtypes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7645820Z copying torch/include/torch/csrc/utils/python_tuples.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7646980Z copying torch/include/torch/csrc/utils/nested.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7648180Z copying torch/include/torch/csrc/utils/python_raii.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7649430Z copying torch/include/torch/csrc/utils/python_numbers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7650620Z copying torch/include/torch/csrc/utils/python_scalars.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7651800Z copying torch/include/torch/csrc/utils/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7653050Z copying torch/include/torch/csrc/utils/tensor_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7654270Z copying torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7655410Z copying torch/include/torch/csrc/utils/python_arg_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7656880Z copying torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7658100Z copying torch/include/torch/csrc/utils/schema_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7659400Z copying torch/include/torch/csrc/utils/generated_serialization_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7661070Z copying torch/include/torch/csrc/utils/tensor_new.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7662260Z copying torch/include/torch/csrc/utils/tensor_qschemes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7663490Z copying torch/include/torch/csrc/utils/verbose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7664740Z copying torch/include/torch/csrc/utils/python_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7665960Z copying torch/include/torch/csrc/utils/tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7667180Z copying torch/include/torch/csrc/utils/invalid_arguments.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7668440Z copying torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7669930Z copying torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7671240Z copying torch/include/torch/csrc/utils/device_lazy_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7672450Z copying torch/include/torch/csrc/utils/python_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7673730Z copying torch/include/torch/csrc/utils/python_symnode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7674980Z copying torch/include/torch/csrc/utils/byte_order.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7676270Z copying torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7677440Z copying torch/include/torch/csrc/utils/cuda_enabled.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7678650Z copying torch/include/torch/csrc/utils/numpy_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7679940Z copying torch/include/torch/csrc/utils/out_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7681160Z copying torch/include/torch/csrc/utils/tensor_layouts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7682530Z copying torch/include/torch/csrc/utils/structseq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7683540Z copying torch/include/torch/csrc/utils/throughput_benchmark.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7684740Z copying torch/include/torch/csrc/utils/disable_torch_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7686070Z copying torch/include/torch/csrc/utils/pyobject_preservation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7687360Z copying torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7688490Z copying torch/include/torch/csrc/utils/tensor_flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7689750Z copying torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7691000Z copying torch/include/torch/csrc/utils/tensor_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7692360Z copying torch/include/torch/csrc/utils/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7693520Z copying torch/include/torch/csrc/utils/python_compat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7694650Z copying torch/include/torch/csrc/utils/six.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7695900Z copying torch/include/torch/csrc/utils/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7697290Z copying torch/include/torch/csrc/utils/variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils 2025-07-24T03:55:00.7698470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-07-24T03:55:00.7699100Z copying torch/include/torch/csrc/jit/jit_opt_limit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-07-24T03:55:00.7700450Z copying torch/include/torch/csrc/jit/jit_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-07-24T03:55:00.7701610Z copying torch/include/torch/csrc/jit/resource_guard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit 2025-07-24T03:55:00.7703010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7703710Z copying torch/include/torch/csrc/jit/frontend/error_report.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7704860Z copying torch/include/torch/csrc/jit/frontend/source_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7706230Z copying torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7707640Z copying torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7708860Z copying torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7710130Z copying torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7711320Z copying torch/include/torch/csrc/jit/frontend/tree_views.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7712870Z copying torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7714040Z copying torch/include/torch/csrc/jit/frontend/parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7715290Z copying torch/include/torch/csrc/jit/frontend/strtod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7716500Z copying torch/include/torch/csrc/jit/frontend/tree.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7717750Z copying torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7719060Z copying torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7720310Z copying torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7721520Z copying torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7722800Z copying torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7724360Z copying torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7725630Z copying torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7726820Z copying torch/include/torch/csrc/jit/frontend/tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7728090Z copying torch/include/torch/csrc/jit/frontend/resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7729440Z copying torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7730730Z copying torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7731910Z copying torch/include/torch/csrc/jit/frontend/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7733300Z copying torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7734630Z copying torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7735750Z copying torch/include/torch/csrc/jit/frontend/source_ref.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7737080Z copying torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7738320Z copying torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:00.7739550Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7740170Z copying torch/include/torch/csrc/jit/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7741590Z copying torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7742830Z copying torch/include/torch/csrc/jit/python/python_ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7744050Z copying torch/include/torch/csrc/jit/python/script_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7745330Z copying torch/include/torch/csrc/jit/python/python_tree_views.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7746550Z copying torch/include/torch/csrc/jit/python/python_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7747960Z copying torch/include/torch/csrc/jit/python/python_ivalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7749050Z copying torch/include/torch/csrc/jit/python/python_dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7750260Z copying torch/include/torch/csrc/jit/python/python_custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7751550Z copying torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7752810Z copying torch/include/torch/csrc/jit/python/python_tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7754030Z copying torch/include/torch/csrc/jit/python/pybind_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7755580Z copying torch/include/torch/csrc/jit/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7756860Z copying torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7758150Z copying torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7759330Z copying torch/include/torch/csrc/jit/python/module_python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python 2025-07-24T03:55:00.7760560Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7761400Z copying torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7762450Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7763650Z copying torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7764840Z copying torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7766040Z copying torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7767260Z copying torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7768480Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7769870Z copying torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7770930Z copying torch/include/torch/csrc/jit/tensorexpr/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7772120Z copying torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7773310Z copying torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7774800Z copying torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7776000Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7777290Z copying torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7778500Z copying torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7779760Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7780950Z copying torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7782130Z copying torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7783440Z copying torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7790230Z copying torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7790980Z copying torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7791730Z copying torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7792460Z copying torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7793180Z copying torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7793980Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7794750Z copying torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7795510Z copying torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7796290Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7797070Z copying torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7797770Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7798500Z copying torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7799350Z copying torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7800520Z copying torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7801830Z copying torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7802970Z copying torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7804120Z copying torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7805560Z copying torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7806790Z copying torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7808010Z copying torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7809200Z copying torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7810450Z copying torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7811640Z copying torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:00.7812950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7813630Z copying torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7814830Z copying torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7816070Z copying torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7817270Z copying torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7818530Z copying torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7819630Z copying torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7820840Z copying torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7822120Z copying torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7823340Z copying torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:00.7824440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7825090Z copying torch/include/torch/csrc/jit/ir/named_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7826270Z copying torch/include/torch/csrc/jit/ir/irparser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7827510Z copying torch/include/torch/csrc/jit/ir/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7829100Z copying torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7830310Z copying torch/include/torch/csrc/jit/ir/ir_views.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7831550Z copying torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7832710Z copying torch/include/torch/csrc/jit/ir/attributes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7833890Z copying torch/include/torch/csrc/jit/ir/type_hashing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7835080Z copying torch/include/torch/csrc/jit/ir/constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7836300Z copying torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7837550Z copying torch/include/torch/csrc/jit/ir/scope.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7838770Z copying torch/include/torch/csrc/jit/ir/graph_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7839940Z copying torch/include/torch/csrc/jit/ir/node_hashing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:00.7841130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-07-24T03:55:00.7841730Z copying torch/include/torch/csrc/jit/cuda/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda 2025-07-24T03:55:00.7843010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7843740Z copying torch/include/torch/csrc/jit/serialization/import_read.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7845030Z copying torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7846240Z copying torch/include/torch/csrc/jit/serialization/import_source.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7847580Z copying torch/include/torch/csrc/jit/serialization/export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7848740Z copying torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7850010Z copying torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7851140Z copying torch/include/torch/csrc/jit/serialization/pickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7852470Z copying torch/include/torch/csrc/jit/serialization/storage_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7853670Z copying torch/include/torch/csrc/jit/serialization/python_print.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7855020Z copying torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7856270Z copying torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7857650Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7858870Z copying torch/include/torch/csrc/jit/serialization/pickler_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7860150Z copying torch/include/torch/csrc/jit/serialization/pickle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7861420Z copying torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7862800Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7864050Z copying torch/include/torch/csrc/jit/serialization/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7865260Z copying torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7866430Z copying torch/include/torch/csrc/jit/serialization/unpickler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7867760Z copying torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7868960Z copying torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7870900Z copying torch/include/torch/csrc/jit/serialization/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:00.7872110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7873040Z copying torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7874030Z copying torch/include/torch/csrc/jit/backends/backend_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7875280Z copying torch/include/torch/csrc/jit/backends/backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7876530Z copying torch/include/torch/csrc/jit/backends/backend_exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7877700Z copying torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7878930Z copying torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7880290Z copying torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7881510Z copying torch/include/torch/csrc/jit/backends/backend_detail.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7882740Z copying torch/include/torch/csrc/jit/backends/backend_init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:00.7884010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml 2025-07-24T03:55:00.7884490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-07-24T03:55:00.7885230Z copying torch/include/torch/csrc/jit/backends/coreml/cpp/context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-07-24T03:55:00.7886380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:00.7887180Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:00.7888540Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:00.7889560Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:00.7890780Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:00.7892130Z copying torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:00.7893240Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack 2025-07-24T03:55:00.7893920Z copying torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack 2025-07-24T03:55:00.7895260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-07-24T03:55:00.7896040Z copying torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-07-24T03:55:00.7897060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-07-24T03:55:00.7897790Z copying torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-07-24T03:55:00.7898940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-07-24T03:55:00.7899670Z copying torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-07-24T03:55:00.7900720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7901470Z copying torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7902850Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7903890Z copying torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7905080Z copying torch/include/torch/csrc/jit/runtime/operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7906300Z copying torch/include/torch/csrc/jit/runtime/script_profile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7907550Z copying torch/include/torch/csrc/jit/runtime/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7908860Z copying torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7910340Z copying torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7911620Z copying torch/include/torch/csrc/jit/runtime/exception_message.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7912820Z copying torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7914150Z copying torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7915310Z copying torch/include/torch/csrc/jit/runtime/logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7916530Z copying torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7917790Z copying torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7919180Z copying torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7920450Z copying torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7921700Z copying torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7922950Z copying torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7924240Z copying torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7925500Z copying torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7926650Z copying torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7927890Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7929230Z copying torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7930570Z copying torch/include/torch/csrc/jit/runtime/autodiff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7931790Z copying torch/include/torch/csrc/jit/runtime/print_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7933390Z copying torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7934680Z copying torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7936060Z copying torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7937400Z copying torch/include/torch/csrc/jit/runtime/operator_options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7938690Z copying torch/include/torch/csrc/jit/runtime/instruction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7940190Z copying torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:00.7941430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:00.7942100Z copying torch/include/torch/csrc/jit/runtime/interpreter/frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:00.7943410Z copying torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:00.7944670Z copying torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:00.7945950Z copying torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:00.7947330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7948000Z copying torch/include/torch/csrc/jit/runtime/static/te_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7949230Z copying torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7950450Z copying torch/include/torch/csrc/jit/runtime/static/static_method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7951670Z copying torch/include/torch/csrc/jit/runtime/static/memory_planner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7952850Z copying torch/include/torch/csrc/jit/runtime/static/fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7954060Z copying torch/include/torch/csrc/jit/runtime/static/passes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7955280Z copying torch/include/torch/csrc/jit/runtime/static/ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7956470Z copying torch/include/torch/csrc/jit/runtime/static/impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7957910Z copying torch/include/torch/csrc/jit/runtime/static/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7959190Z copying torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:00.7960290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7960960Z copying torch/include/torch/csrc/jit/passes/remove_expands.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7962190Z copying torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7963380Z copying torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7964570Z copying torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7965760Z copying torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7967010Z copying torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7968250Z copying torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7969460Z copying torch/include/torch/csrc/jit/passes/freeze_module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7970620Z copying torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7971860Z copying torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7973080Z copying torch/include/torch/csrc/jit/passes/peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7974310Z copying torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7975500Z copying torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7976760Z copying torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7978010Z copying torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7979220Z copying torch/include/torch/csrc/jit/passes/liveness.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7980440Z copying torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7981700Z copying torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7982960Z copying torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7984130Z copying torch/include/torch/csrc/jit/passes/batch_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7985330Z copying torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7986580Z copying torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7987850Z copying torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7989150Z copying torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7990310Z copying torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7991600Z copying torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7992850Z copying torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7994120Z copying torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7995400Z copying torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7996600Z copying torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7997780Z copying torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.7999090Z copying torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8000330Z copying torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8001450Z copying torch/include/torch/csrc/jit/passes/insert_guards.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8002660Z copying torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8003900Z copying torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8005760Z copying torch/include/torch/csrc/jit/passes/inliner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8006990Z copying torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8008280Z copying torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8009760Z copying torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8010830Z copying torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8012060Z copying torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8013600Z copying torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8014560Z copying torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8015840Z copying torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8017030Z copying torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8018300Z copying torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8019630Z copying torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8020880Z copying torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8022100Z copying torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8023430Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8024680Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8025860Z copying torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8027100Z copying torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8028320Z copying torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8029610Z copying torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8030750Z copying torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8031970Z copying torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8033520Z copying torch/include/torch/csrc/jit/passes/concat_opt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8034900Z copying torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8036100Z copying torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8037310Z copying torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8038580Z copying torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8039820Z copying torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8041110Z copying torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8042350Z copying torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8043610Z copying torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8044890Z copying torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8046090Z copying torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8047300Z copying torch/include/torch/csrc/jit/passes/canonicalize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8048580Z copying torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8049870Z copying torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8051010Z copying torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8052330Z copying torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8053610Z copying torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8055010Z copying torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8056200Z copying torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8057530Z copying torch/include/torch/csrc/jit/passes/inplace_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8058920Z copying torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8059870Z copying torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8061130Z copying torch/include/torch/csrc/jit/passes/pass_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8062260Z copying torch/include/torch/csrc/jit/passes/onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8063480Z copying torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8064740Z copying torch/include/torch/csrc/jit/passes/lift_closures.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8066000Z copying torch/include/torch/csrc/jit/passes/autocast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8067230Z copying torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8068400Z copying torch/include/torch/csrc/jit/passes/lower_graph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:00.8069730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8070390Z copying torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8071700Z copying torch/include/torch/csrc/jit/passes/onnx/function_substitution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8072840Z copying torch/include/torch/csrc/jit/passes/onnx/helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8074230Z copying torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8075450Z copying torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8076690Z copying torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8077970Z copying torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8079240Z copying torch/include/torch/csrc/jit/passes/onnx/onnx_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8080520Z copying torch/include/torch/csrc/jit/passes/onnx/peephole.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8081800Z copying torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8083030Z copying torch/include/torch/csrc/jit/passes/onnx/constant_fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8084180Z copying torch/include/torch/csrc/jit/passes/onnx/constant_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8085430Z copying torch/include/torch/csrc/jit/passes/onnx/function_extraction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8086760Z copying torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8087950Z copying torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8089280Z copying torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8090570Z copying torch/include/torch/csrc/jit/passes/onnx/naming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8091770Z copying torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8092980Z copying torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8094280Z copying torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:00.8095520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:00.8096230Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:00.8097530Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:00.8098940Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:00.8100160Z copying torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:00.8101200Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-07-24T03:55:00.8101980Z copying torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-07-24T03:55:00.8103270Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:00.8103850Z copying torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:00.8105040Z copying torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:00.8106310Z copying torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:00.8107570Z copying torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:00.8108850Z copying torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:00.8110010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8110670Z copying torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8111950Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8113230Z copying torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8114440Z copying torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8115730Z copying torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8117320Z copying torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8118680Z copying torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8119900Z copying torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8121260Z copying torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:00.8122410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen 2025-07-24T03:55:00.8122950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda 2025-07-24T03:55:00.8123950Z copying torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda 2025-07-24T03:55:00.8124820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8125530Z copying torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8126840Z copying torch/include/torch/csrc/jit/codegen/onednn/operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8128020Z copying torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8129330Z copying torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8130490Z copying torch/include/torch/csrc/jit/codegen/onednn/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8131640Z copying torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8132840Z copying torch/include/torch/csrc/jit/codegen/onednn/kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8134140Z copying torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8135900Z copying torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8136660Z copying torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8138040Z copying torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:00.8139230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8140030Z copying torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8141050Z copying torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8142250Z copying torch/include/torch/csrc/jit/codegen/fuser/compiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8143410Z copying torch/include/torch/csrc/jit/codegen/fuser/fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8144630Z copying torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8145880Z copying torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8147070Z copying torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8148310Z copying torch/include/torch/csrc/jit/codegen/fuser/interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8149560Z copying torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8150790Z copying torch/include/torch/csrc/jit/codegen/fuser/codegen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8151990Z copying torch/include/torch/csrc/jit/codegen/fuser/executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8153350Z copying torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:00.8154640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-24T03:55:00.8155430Z copying torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-24T03:55:00.8156530Z copying torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-24T03:55:00.8157890Z copying torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-24T03:55:00.8158960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-24T03:55:00.8159620Z copying torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-24T03:55:00.8160880Z copying torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-24T03:55:00.8162030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-07-24T03:55:00.8162750Z copying torch/include/torch/csrc/jit/testing/file_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-07-24T03:55:00.8164050Z copying torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-07-24T03:55:00.8165320Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8165880Z copying torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8167120Z copying torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8168340Z copying torch/include/torch/csrc/jit/mobile/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8169660Z copying torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8170920Z copying torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8172270Z copying torch/include/torch/csrc/jit/mobile/quantization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8173400Z copying torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8174520Z copying torch/include/torch/csrc/jit/mobile/code.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8175870Z copying torch/include/torch/csrc/jit/mobile/interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8177080Z copying torch/include/torch/csrc/jit/mobile/frame.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8182880Z copying torch/include/torch/csrc/jit/mobile/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8183280Z copying torch/include/torch/csrc/jit/mobile/debug_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8183630Z copying torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8183960Z copying torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8184270Z copying torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8184590Z copying torch/include/torch/csrc/jit/mobile/import_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8185730Z copying torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8187000Z copying torch/include/torch/csrc/jit/mobile/type_parser.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8188180Z copying torch/include/torch/csrc/jit/mobile/import.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8189400Z copying torch/include/torch/csrc/jit/mobile/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8190670Z copying torch/include/torch/csrc/jit/mobile/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8191880Z copying torch/include/torch/csrc/jit/mobile/file_format.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:00.8193230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:00.8193880Z copying torch/include/torch/csrc/jit/mobile/compatibility/backport.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:00.8195260Z copying torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:00.8196500Z copying torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:00.8197760Z copying torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:00.8198890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:00.8199590Z copying torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:00.8200870Z copying torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:00.8202170Z copying torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:00.8203410Z copying torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:00.8204670Z copying torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:00.8205950Z copying torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:00.8207220Z copying torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:00.8208470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-07-24T03:55:00.8209080Z copying torch/include/torch/csrc/jit/mobile/nnc/context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-07-24T03:55:00.8210430Z copying torch/include/torch/csrc/jit/mobile/nnc/registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-07-24T03:55:00.8211620Z copying torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc 2025-07-24T03:55:00.8212840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-07-24T03:55:00.8213680Z copying torch/include/torch/csrc/jit/mobile/train/sequential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-07-24T03:55:00.8214870Z copying torch/include/torch/csrc/jit/mobile/train/export_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-07-24T03:55:00.8215900Z copying torch/include/torch/csrc/jit/mobile/train/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train 2025-07-24T03:55:00.8217170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim 2025-07-24T03:55:00.8217800Z copying torch/include/torch/csrc/jit/mobile/train/optim/sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim 2025-07-24T03:55:00.8219030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:00.8219780Z copying torch/include/torch/csrc/jit/operator_upgraders/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:00.8221160Z copying torch/include/torch/csrc/jit/operator_upgraders/version_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:00.8222400Z copying torch/include/torch/csrc/jit/operator_upgraders/upgraders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:00.8223660Z copying torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:00.8224950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-24T03:55:00.8225410Z copying torch/include/torch/csrc/jit/api/function_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-24T03:55:00.8226600Z copying torch/include/torch/csrc/jit/api/method.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-24T03:55:00.8227830Z copying torch/include/torch/csrc/jit/api/compilation_unit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-24T03:55:00.8228970Z copying torch/include/torch/csrc/jit/api/object.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-24T03:55:00.8230320Z copying torch/include/torch/csrc/jit/api/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api 2025-07-24T03:55:00.8231660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy 2025-07-24T03:55:00.8232140Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-07-24T03:55:00.8232950Z copying torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-07-24T03:55:00.8234450Z copying torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-07-24T03:55:00.8235460Z copying torch/include/torch/csrc/lazy/generated/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated 2025-07-24T03:55:00.8238250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8238760Z copying torch/include/torch/csrc/lazy/core/debug_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8240110Z copying torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8241370Z copying torch/include/torch/csrc/lazy/core/config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8242560Z copying torch/include/torch/csrc/lazy/core/multi_wait.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8243790Z copying torch/include/torch/csrc/lazy/core/ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8245150Z copying torch/include/torch/csrc/lazy/core/permutation_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8246310Z copying torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8247470Z copying torch/include/torch/csrc/lazy/core/cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8248770Z copying torch/include/torch/csrc/lazy/core/tensor_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8249990Z copying torch/include/torch/csrc/lazy/core/shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8251240Z copying torch/include/torch/csrc/lazy/core/thread_pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8252420Z copying torch/include/torch/csrc/lazy/core/unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8253800Z copying torch/include/torch/csrc/lazy/core/shape_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8255020Z copying torch/include/torch/csrc/lazy/core/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8256280Z copying torch/include/torch/csrc/lazy/core/ir_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8257510Z copying torch/include/torch/csrc/lazy/core/metrics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8258740Z copying torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8260010Z copying torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8261270Z copying torch/include/torch/csrc/lazy/core/ir_builder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8262460Z copying torch/include/torch/csrc/lazy/core/helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8263770Z copying torch/include/torch/csrc/lazy/core/trie.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8264990Z copying torch/include/torch/csrc/lazy/core/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8266270Z copying torch/include/torch/csrc/lazy/core/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8267500Z copying torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:00.8268840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops 2025-07-24T03:55:00.8269530Z copying torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops 2025-07-24T03:55:00.8270740Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-07-24T03:55:00.8271370Z copying torch/include/torch/csrc/lazy/core/ops/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-07-24T03:55:00.8272620Z copying torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops 2025-07-24T03:55:00.8274020Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-07-24T03:55:00.8274610Z copying torch/include/torch/csrc/lazy/python/python_util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-07-24T03:55:00.8275780Z copying torch/include/torch/csrc/lazy/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python 2025-07-24T03:55:00.8277040Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8277670Z copying torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8278990Z copying torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8280230Z copying torch/include/torch/csrc/lazy/ts_backend/config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8281490Z copying torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8282670Z copying torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8283970Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8285160Z copying torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8286400Z copying torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8287610Z copying torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8288850Z copying torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:00.8290110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-24T03:55:00.8290730Z copying torch/include/torch/csrc/lazy/ts_backend/ops/generic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-24T03:55:00.8291990Z copying torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-24T03:55:00.8293240Z copying torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-24T03:55:00.8294380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:00.8295010Z copying torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:00.8296260Z copying torch/include/torch/csrc/lazy/backend/backend_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:00.8297480Z copying torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:00.8298650Z copying torch/include/torch/csrc/lazy/backend/backend_device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:00.8299900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-07-24T03:55:00.8300620Z copying torch/include/torch/csrc/mtia/Module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia 2025-07-24T03:55:00.8302290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-07-24T03:55:00.8302780Z copying torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler 2025-07-24T03:55:00.8304170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api 2025-07-24T03:55:00.8304800Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include 2025-07-24T03:55:00.8305400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8306120Z copying torch/include/torch/csrc/api/include/torch/fft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8308030Z copying torch/include/torch/csrc/api/include/torch/nested.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8308990Z copying torch/include/torch/csrc/api/include/torch/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8310520Z copying torch/include/torch/csrc/api/include/torch/version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8311770Z copying torch/include/torch/csrc/api/include/torch/enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8313100Z copying torch/include/torch/csrc/api/include/torch/types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8314290Z copying torch/include/torch/csrc/api/include/torch/all.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8315660Z copying torch/include/torch/csrc/api/include/torch/data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8316850Z copying torch/include/torch/csrc/api/include/torch/arg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8318130Z copying torch/include/torch/csrc/api/include/torch/xpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8319320Z copying torch/include/torch/csrc/api/include/torch/torch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8320620Z copying torch/include/torch/csrc/api/include/torch/optim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8321980Z copying torch/include/torch/csrc/api/include/torch/jit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8323220Z copying torch/include/torch/csrc/api/include/torch/nn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8324520Z copying torch/include/torch/csrc/api/include/torch/imethod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8325760Z copying torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8326990Z copying torch/include/torch/csrc/api/include/torch/cuda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8328400Z copying torch/include/torch/csrc/api/include/torch/autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8329750Z copying torch/include/torch/csrc/api/include/torch/special.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8331220Z copying torch/include/torch/csrc/api/include/torch/sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8332480Z copying torch/include/torch/csrc/api/include/torch/mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8333910Z copying torch/include/torch/csrc/api/include/torch/python.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8335130Z copying torch/include/torch/csrc/api/include/torch/serialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8336360Z copying torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:00.8337600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8338310Z copying torch/include/torch/csrc/api/include/torch/nn/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8339600Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8340870Z copying torch/include/torch/csrc/api/include/torch/nn/options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8342120Z copying torch/include/torch/csrc/api/include/torch/nn/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8343430Z copying torch/include/torch/csrc/api/include/torch/nn/modules.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8344620Z copying torch/include/torch/csrc/api/include/torch/nn/pimpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8345830Z copying torch/include/torch/csrc/api/include/torch/nn/module.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8347290Z copying torch/include/torch/csrc/api/include/torch/nn/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8348500Z copying torch/include/torch/csrc/api/include/torch/nn/cloneable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:00.8349780Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8350620Z copying torch/include/torch/csrc/api/include/torch/nn/options/normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8351810Z copying torch/include/torch/csrc/api/include/torch/nn/options/rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8353130Z copying torch/include/torch/csrc/api/include/torch/nn/options/distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8354390Z copying torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8355590Z copying torch/include/torch/csrc/api/include/torch/nn/options/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8356860Z copying torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8358230Z copying torch/include/torch/csrc/api/include/torch/nn/options/vision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8359490Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8360730Z copying torch/include/torch/csrc/api/include/torch/nn/options/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8361920Z copying torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8363250Z copying torch/include/torch/csrc/api/include/torch/nn/options/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8364550Z copying torch/include/torch/csrc/api/include/torch/nn/options/fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8365870Z copying torch/include/torch/csrc/api/include/torch/nn/options/activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8367230Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8368560Z copying torch/include/torch/csrc/api/include/torch/nn/options/pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8370200Z copying torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8371500Z copying torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8372650Z copying torch/include/torch/csrc/api/include/torch/nn/options/conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8373990Z copying torch/include/torch/csrc/api/include/torch/nn/options/padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8375290Z copying torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8376510Z copying torch/include/torch/csrc/api/include/torch/nn/options/loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:00.8377890Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-07-24T03:55:00.8378600Z copying torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-07-24T03:55:00.8379690Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-24T03:55:00.8380460Z copying torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-24T03:55:00.8381660Z copying torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-24T03:55:00.8383000Z copying torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-24T03:55:00.8384050Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8384770Z copying torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8386560Z copying torch/include/torch/csrc/api/include/torch/nn/modules/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8388130Z copying torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8389390Z copying torch/include/torch/csrc/api/include/torch/nn/modules/distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8390730Z copying torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8392020Z copying torch/include/torch/csrc/api/include/torch/nn/modules/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8393240Z copying torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8394630Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8396250Z copying torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8397610Z copying torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8398820Z copying torch/include/torch/csrc/api/include/torch/nn/modules/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8400270Z copying torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8401580Z copying torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8402870Z copying torch/include/torch/csrc/api/include/torch/nn/modules/fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8404190Z copying torch/include/torch/csrc/api/include/torch/nn/modules/activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8405630Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8406860Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8408540Z copying torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8409740Z copying torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8410970Z copying torch/include/torch/csrc/api/include/torch/nn/modules/conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8412130Z copying torch/include/torch/csrc/api/include/torch/nn/modules/padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8413610Z copying torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8414860Z copying torch/include/torch/csrc/api/include/torch/nn/modules/loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:00.8416190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8416920Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8418310Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8419530Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8420790Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8422060Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8423420Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8424670Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8425950Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8427200Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8428710Z copying torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:00.8429820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8430540Z copying torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8431970Z copying torch/include/torch/csrc/api/include/torch/nn/functional/distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8433330Z copying torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8434550Z copying torch/include/torch/csrc/api/include/torch/nn/functional/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8435860Z copying torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8437130Z copying torch/include/torch/csrc/api/include/torch/nn/functional/vision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8438510Z copying torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8439800Z copying torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8440990Z copying torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8442290Z copying torch/include/torch/csrc/api/include/torch/nn/functional/fold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8443680Z copying torch/include/torch/csrc/api/include/torch/nn/functional/activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8445020Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8446500Z copying torch/include/torch/csrc/api/include/torch/nn/functional/conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8448240Z copying torch/include/torch/csrc/api/include/torch/nn/functional/padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8449650Z copying torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8450860Z copying torch/include/torch/csrc/api/include/torch/nn/functional/loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:00.8452190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python 2025-07-24T03:55:00.8452890Z copying torch/include/torch/csrc/api/include/torch/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python 2025-07-24T03:55:00.8454160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:00.8454810Z copying torch/include/torch/csrc/api/include/torch/optim/rmsprop.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:00.8456190Z copying torch/include/torch/csrc/api/include/torch/optim/lbfgs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:00.8457420Z copying torch/include/torch/csrc/api/include/torch/optim/optimizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:00.8458710Z copying torch/include/torch/csrc/api/include/torch/optim/adagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:00.8459870Z copying torch/include/torch/csrc/api/include/torch/optim/sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:00.8461250Z copying torch/include/torch/csrc/api/include/torch/optim/serialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:00.8462480Z copying torch/include/torch/csrc/api/include/torch/optim/adamw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:00.8463600Z copying torch/include/torch/csrc/api/include/torch/optim/adam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:00.8464850Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-24T03:55:00.8465620Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-24T03:55:00.8466970Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-24T03:55:00.8468300Z copying torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-24T03:55:00.8469400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:00.8470070Z copying torch/include/torch/csrc/api/include/torch/serialize/archive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:00.8471420Z copying torch/include/torch/csrc/api/include/torch/serialize/input-archive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:00.8472650Z copying torch/include/torch/csrc/api/include/torch/serialize/output-archive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:00.8473830Z copying torch/include/torch/csrc/api/include/torch/serialize/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:00.8475010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-07-24T03:55:00.8475660Z copying torch/include/torch/csrc/api/include/torch/detail/static.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-07-24T03:55:00.8477070Z copying torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail 2025-07-24T03:55:00.8478290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:00.8478920Z copying torch/include/torch/csrc/api/include/torch/data/example.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:00.8480100Z copying torch/include/torch/csrc/api/include/torch/data/dataloader_options.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:00.8481360Z copying torch/include/torch/csrc/api/include/torch/data/worker_exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:00.8482820Z copying torch/include/torch/csrc/api/include/torch/data/dataloader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:00.8483930Z copying torch/include/torch/csrc/api/include/torch/data/samplers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:00.8485130Z copying torch/include/torch/csrc/api/include/torch/data/datasets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:00.8486400Z copying torch/include/torch/csrc/api/include/torch/data/transforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:00.8487880Z copying torch/include/torch/csrc/api/include/torch/data/iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:00.8488960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:00.8489710Z copying torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:00.8491160Z copying torch/include/torch/csrc/api/include/torch/data/datasets/shared.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:00.8492290Z copying torch/include/torch/csrc/api/include/torch/data/datasets/map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:00.8493460Z copying torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:00.8494960Z copying torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:00.8496200Z copying torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:00.8497540Z copying torch/include/torch/csrc/api/include/torch/data/datasets/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:00.8498640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-24T03:55:00.8499400Z copying torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-24T03:55:00.8500680Z copying torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-24T03:55:00.8502000Z copying torch/include/torch/csrc/api/include/torch/data/detail/queue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-24T03:55:00.8503260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:00.8503920Z copying torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:00.8505100Z copying torch/include/torch/csrc/api/include/torch/data/transforms/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:00.8506290Z copying torch/include/torch/csrc/api/include/torch/data/transforms/collate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:00.8507550Z copying torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:00.8508750Z copying torch/include/torch/csrc/api/include/torch/data/transforms/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:00.8509840Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:00.8510550Z copying torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:00.8511780Z copying torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:00.8512990Z copying torch/include/torch/csrc/api/include/torch/data/samplers/stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:00.8514180Z copying torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:00.8515410Z copying torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:00.8516680Z copying torch/include/torch/csrc/api/include/torch/data/samplers/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:00.8517860Z copying torch/include/torch/csrc/api/include/torch/data/samplers/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:00.8519210Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-24T03:55:00.8519770Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-24T03:55:00.8520950Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-24T03:55:00.8522160Z copying torch/include/torch/csrc/api/include/torch/data/dataloader/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-24T03:55:00.8523220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8523860Z copying torch/include/torch/csrc/profiler/combined_traceback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8525090Z copying torch/include/torch/csrc/profiler/events.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8526270Z copying torch/include/torch/csrc/profiler/kineto_shim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8527420Z copying torch/include/torch/csrc/profiler/api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8528810Z copying torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8529920Z copying torch/include/torch/csrc/profiler/util.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8531100Z copying torch/include/torch/csrc/profiler/containers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8532310Z copying torch/include/torch/csrc/profiler/collection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8533680Z copying torch/include/torch/csrc/profiler/perf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8535080Z copying torch/include/torch/csrc/profiler/data_flow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8536300Z copying torch/include/torch/csrc/profiler/perf-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler 2025-07-24T03:55:00.8537530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-07-24T03:55:00.8538160Z copying torch/include/torch/csrc/profiler/stubs/base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs 2025-07-24T03:55:00.8539440Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:00.8540090Z copying torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:00.8541380Z copying torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:00.8542640Z copying torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:00.8544080Z copying torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:00.8545000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-07-24T03:55:00.8545530Z copying torch/include/torch/csrc/profiler/python/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-07-24T03:55:00.8546850Z copying torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-07-24T03:55:00.8547980Z copying torch/include/torch/csrc/profiler/python/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python 2025-07-24T03:55:00.8549430Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-07-24T03:55:00.8549970Z copying torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-07-24T03:55:00.8551300Z copying torch/include/torch/csrc/profiler/orchestration/observer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-07-24T03:55:00.8552520Z copying torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration 2025-07-24T03:55:00.8553820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8554490Z copying torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8555690Z copying torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8556920Z copying torch/include/torch/csrc/profiler/unwind/unwind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8558120Z copying torch/include/torch/csrc/profiler/unwind/sections.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8559420Z copying torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8560600Z copying torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8561800Z copying torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8563150Z copying torch/include/torch/csrc/profiler/unwind/action.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8564300Z copying torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8565500Z copying torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8566670Z copying torch/include/torch/csrc/profiler/unwind/fde.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8567970Z copying torch/include/torch/csrc/profiler/unwind/communicate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8569190Z copying torch/include/torch/csrc/profiler/unwind/lexer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8570510Z copying torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8571690Z copying torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8573050Z copying torch/include/torch/csrc/profiler/unwind/range_table.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:00.8574260Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-07-24T03:55:00.8574820Z copying torch/include/torch/csrc/tensor/python_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor 2025-07-24T03:55:00.8576060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-24T03:55:00.8576660Z copying torch/include/torch/csrc/export/pt2_archive_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-24T03:55:00.8577930Z copying torch/include/torch/csrc/export/pybind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-24T03:55:00.8579130Z copying torch/include/torch/csrc/export/example_upgraders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-24T03:55:00.8580360Z copying torch/include/torch/csrc/export/upgrader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export 2025-07-24T03:55:00.8581520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-07-24T03:55:00.8582160Z copying torch/include/torch/csrc/functorch/init.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch 2025-07-24T03:55:00.8583330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8583950Z copying torch/include/kineto/ClientInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8585380Z copying torch/include/kineto/GenericTraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8586640Z copying torch/include/kineto/IActivityProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8587830Z copying torch/include/kineto/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8589030Z copying torch/include/kineto/TraceSpan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8590240Z copying torch/include/kineto/LoggingAPI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8591530Z copying torch/include/kineto/ITraceActivity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8592800Z copying torch/include/kineto/ActivityProfilerInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8593950Z copying torch/include/kineto/ActivityTraceInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8595190Z copying torch/include/kineto/output_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8596460Z copying torch/include/kineto/ThreadUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8597650Z copying torch/include/kineto/ActivityType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8598800Z copying torch/include/kineto/libkineto.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8600020Z copying torch/include/kineto/time_since_epoch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8601290Z copying torch/include/kineto/ILoggerObserver.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8602480Z copying torch/include/kineto/AbstractConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto 2025-07-24T03:55:00.8603670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-07-24T03:55:00.8604280Z copying torch/include/kai/kai_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai 2025-07-24T03:55:00.8605660Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels 2025-07-24T03:55:00.8606220Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul 2025-07-24T03:55:00.8606720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8607660Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8609010Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8610270Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8611600Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8612990Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8614530Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8615740Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8617210Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8618480Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8619870Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8621120Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8622690Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8623680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8624520Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8625980Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8627220Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8628610Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8630000Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:00.8631090Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-24T03:55:00.8631890Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-24T03:55:00.8633260Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-24T03:55:00.8634540Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-24T03:55:00.8635650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:00.8636400Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:00.8637730Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:00.8639000Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:00.8640330Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:00.8641510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:00.8642330Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:00.8643680Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:00.8645010Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:00.8646400Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:00.8647560Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:00.8648850Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:00.8650140Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:00.8651390Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:00.8652530Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-24T03:55:00.8653460Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-24T03:55:00.8654780Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-24T03:55:00.8656150Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-24T03:55:00.8657190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8657940Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8659270Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8660550Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8661770Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8663750Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8664390Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8665740Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8666830Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8668210Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8669400Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8670630Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8671860Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8673350Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8674750Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8676170Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8677610Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8678860Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8680320Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8681680Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8683120Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8684540Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8685820Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8687080Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8688350Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8689650Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8690950Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8692340Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8693630Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8694910Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8696150Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8697550Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8698760Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8700070Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8701370Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8702640Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8703930Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8705210Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8706540Z copying torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8707780Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8709030Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8710330Z copying torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:00.8711820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8712510Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8714060Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8715310Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8716690Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8718010Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8719380Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8720730Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8722090Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8723390Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8724680Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8726170Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8727460Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:00.8728730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-24T03:55:00.8729470Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-24T03:55:00.8730850Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-24T03:55:00.8732170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:00.8733030Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:00.8734270Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:00.8735370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8736200Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8737720Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8739130Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8740440Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8741710Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8742970Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8743810Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8745320Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8746600Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8747920Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8749220Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:00.8750510Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-24T03:55:00.8751270Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-24T03:55:00.8752530Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-24T03:55:00.8753850Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-24T03:55:00.8755100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-24T03:55:00.8755730Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-24T03:55:00.8756990Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-24T03:55:00.8758370Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-24T03:55:00.8759590Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-24T03:55:00.8760410Z copying torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-24T03:55:00.8761720Z copying torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-24T03:55:00.8762860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-24T03:55:00.8763670Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-24T03:55:00.8765060Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-24T03:55:00.8766250Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-24T03:55:00.8767030Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-24T03:55:00.8768270Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-24T03:55:00.8769490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:00.8770260Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:00.8771670Z copying torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:00.8772960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-24T03:55:00.8773600Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-24T03:55:00.8775170Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-24T03:55:00.8776170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-24T03:55:00.8777080Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-24T03:55:00.8778370Z copying torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-24T03:55:00.8779460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-24T03:55:00.8780260Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-24T03:55:00.8781500Z copying torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-24T03:55:00.8782680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8783120Z copying torch/include/ATen/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8784390Z copying torch/include/ATen/NestedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8785570Z copying torch/include/ATen/CPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8786810Z copying torch/include/ATen/LegacyBatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8788070Z copying torch/include/ATen/CollapseDims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8789460Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8790630Z copying torch/include/ATen/MetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8791820Z copying torch/include/ATen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8793030Z copying torch/include/ATen/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8794250Z copying torch/include/ATen/DeviceAccelerator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8795490Z copying torch/include/ATen/TensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8796740Z copying torch/include/ATen/MemoryOverlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8797970Z copying torch/include/ATen/TensorSubclassLikeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8799130Z copying torch/include/ATen/LegacyVmapMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8800400Z copying torch/include/ATen/InitialTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8801670Z copying torch/include/ATen/Version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8802860Z copying torch/include/ATen/DLConvertor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8804130Z copying torch/include/ATen/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8805580Z copying torch/include/ATen/FuncTorchTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8806830Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8807890Z copying torch/include/ATen/jiterator_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8809100Z copying torch/include/ATen/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8810680Z copying torch/include/ATen/CPUFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8812030Z copying torch/include/ATen/ceil_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8813320Z copying torch/include/ATen/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8814680Z copying torch/include/ATen/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8821090Z copying torch/include/ATen/dlpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8821300Z copying torch/include/ATen/Config.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8821580Z copying torch/include/ATen/ThreadLocalPythonObjects.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8821800Z copying torch/include/ATen/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8822060Z copying torch/include/ATen/SparseCsrTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8822290Z copying torch/include/ATen/TracerMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8823450Z copying torch/include/ATen/BlasBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8824840Z copying torch/include/ATen/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8825750Z copying torch/include/ATen/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8831780Z copying torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8832340Z copying torch/include/ATen/PTThreadPool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8833470Z copying torch/include/ATen/OpaqueTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8834660Z copying torch/include/ATen/MapAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8835790Z copying torch/include/ATen/record_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8837160Z copying torch/include/ATen/WrapDimUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8838390Z copying torch/include/ATen/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8850540Z copying torch/include/ATen/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8852060Z copying torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8853470Z copying torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8854790Z copying torch/include/ATen/div_rtn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8855990Z copying torch/include/ATen/ExpandUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8857400Z copying torch/include/ATen/MPSFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8858860Z copying torch/include/ATen/TypeDefault.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8860120Z copying torch/include/ATen/MPSFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8861620Z copying torch/include/ATen/VmapGeneratedPlumbing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8870940Z copying torch/include/ATen/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8871820Z copying torch/include/ATen/CPUFixedAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8873010Z copying torch/include/ATen/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8874140Z copying torch/include/ATen/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8875550Z copying torch/include/ATen/TensorIteratorInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8876670Z copying torch/include/ATen/LinalgBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8877910Z copying torch/include/ATen/LegacyBatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8879080Z copying torch/include/ATen/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8880230Z copying torch/include/ATen/SequenceNumber.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8881430Z copying torch/include/ATen/FunctionalStorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8882680Z copying torch/include/ATen/ExpandBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8883810Z copying torch/include/ATen/Parallel-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8885080Z copying torch/include/ATen/MatrixRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8886270Z copying torch/include/ATen/CUDAFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8887830Z copying torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8888990Z copying torch/include/ATen/FunctionalTensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8890260Z copying torch/include/ATen/SparseCsrTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8891520Z copying torch/include/ATen/NumericUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8892770Z copying torch/include/ATen/ATen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8894010Z copying torch/include/ATen/TensorNames.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8895110Z copying torch/include/ATen/TensorMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8896320Z copying torch/include/ATen/TensorIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8897660Z copying torch/include/ATen/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8898860Z copying torch/include/ATen/SparseTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8900070Z copying torch/include/ATen/SavedTensorHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8901480Z copying torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8902850Z copying torch/include/ATen/StorageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8904010Z copying torch/include/ATen/WrapDimUtilsMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8905190Z copying torch/include/ATen/code_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8906450Z copying torch/include/ATen/TensorOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8907710Z copying torch/include/ATen/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8908930Z copying torch/include/ATen/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8910130Z copying torch/include/ATen/cpp_custom_type_hack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8911340Z copying torch/include/ATen/Dispatch_v2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8912920Z copying torch/include/ATen/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8914140Z copying torch/include/ATen/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8915300Z copying torch/include/ATen/ParallelNative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8916460Z copying torch/include/ATen/OpMathType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8917810Z copying torch/include/ATen/PythonTorchFunctionTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8919030Z copying torch/include/ATen/PadNd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8920230Z copying torch/include/ATen/Dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8921750Z copying torch/include/ATen/CPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8923020Z copying torch/include/ATen/ParallelFuture.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8924200Z copying torch/include/ATen/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8925740Z copying torch/include/ATen/ParallelOpenMP.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8926910Z copying torch/include/ATen/jit_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8928160Z copying torch/include/ATen/CPUApplyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8929350Z copying torch/include/ATen/ThreadLocalState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8930500Z copying torch/include/ATen/ScalarOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8931960Z copying torch/include/ATen/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8933220Z copying torch/include/ATen/DynamicLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8934420Z copying torch/include/ATen/TensorGeometry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8935550Z copying torch/include/ATen/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8936980Z copying torch/include/ATen/NamedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8938150Z copying torch/include/ATen/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8939350Z copying torch/include/ATen/ROCmFABackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8940580Z copying torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8941910Z copying torch/include/ATen/autocast_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8943310Z copying torch/include/ATen/Parallel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8944450Z copying torch/include/ATen/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8945660Z copying torch/include/ATen/MetaFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8946900Z copying torch/include/ATen/InferSize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8948150Z copying torch/include/ATen/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8949260Z copying torch/include/ATen/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8950400Z copying torch/include/ATen/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8951660Z copying torch/include/ATen/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8952790Z copying torch/include/ATen/AccumulateType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8953910Z copying torch/include/ATen/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8955120Z copying torch/include/ATen/SDPBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8956280Z copying torch/include/ATen/CachedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen 2025-07-24T03:55:00.8957640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8958210Z copying torch/include/ATen/core/Dict_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8959460Z copying torch/include/ATen/core/Formatting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8960660Z copying torch/include/ATen/core/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8963530Z copying torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8964480Z copying torch/include/ATen/core/jit_type_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8965810Z copying torch/include/ATen/core/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8967110Z copying torch/include/ATen/core/rref_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8968280Z copying torch/include/ATen/core/Range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8969550Z copying torch/include/ATen/core/interned_strings_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8970740Z copying torch/include/ATen/core/operator_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8972030Z copying torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8973140Z copying torch/include/ATen/core/symbol.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8974350Z copying torch/include/ATen/core/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8975660Z copying torch/include/ATen/core/TransformationHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8976760Z copying torch/include/ATen/core/blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8977990Z copying torch/include/ATen/core/function_schema.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8979360Z copying torch/include/ATen/core/type_factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8980550Z copying torch/include/ATen/core/MT19937RNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8981780Z copying torch/include/ATen/core/ivalue_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8983340Z copying torch/include/ATen/core/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8984520Z copying torch/include/ATen/core/dynamic_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8985680Z copying torch/include/ATen/core/class_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8986900Z copying torch/include/ATen/core/LegacyTypeDispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8988160Z copying torch/include/ATen/core/function_schema_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8989360Z copying torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8990520Z copying torch/include/ATen/core/qualified_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8991760Z copying torch/include/ATen/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8992950Z copying torch/include/ATen/core/NamedTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8994120Z copying torch/include/ATen/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8995340Z copying torch/include/ATen/core/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8996730Z copying torch/include/ATen/core/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8997990Z copying torch/include/ATen/core/DeprecatedTypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.8999710Z copying torch/include/ATen/core/interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9000910Z copying torch/include/ATen/core/List.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9002220Z copying torch/include/ATen/core/ATenOpList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9003510Z copying torch/include/ATen/core/Dict.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9004780Z copying torch/include/ATen/core/type_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9005980Z copying torch/include/ATen/core/grad_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9007510Z copying torch/include/ATen/core/DistributionsHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9008560Z copying torch/include/ATen/core/VariableHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9009790Z copying torch/include/ATen/core/CheckMemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9010970Z copying torch/include/ATen/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9012100Z copying torch/include/ATen/core/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9013230Z copying torch/include/ATen/core/ATen_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9014410Z copying torch/include/ATen/core/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9015590Z copying torch/include/ATen/core/ATenGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9016810Z copying torch/include/ATen/core/custom_class.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9017990Z copying torch/include/ATen/core/IListRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9019350Z copying torch/include/ATen/core/UnsafeFromTH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9020630Z copying torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9021770Z copying torch/include/ATen/core/TensorBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9023270Z copying torch/include/ATen/core/ATen_pch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9024460Z copying torch/include/ATen/core/QuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9025580Z copying torch/include/ATen/core/enum_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9026750Z copying torch/include/ATen/core/alias_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9027890Z copying torch/include/ATen/core/List_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9029190Z copying torch/include/ATen/core/TorchDispatchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9030290Z copying torch/include/ATen/core/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9031490Z copying torch/include/ATen/core/jit_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9033110Z copying torch/include/ATen/core/IListRef_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9034360Z copying torch/include/ATen/core/ivalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9035980Z copying torch/include/ATen/core/Dimname.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9037160Z copying torch/include/ATen/core/Vitals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9038360Z copying torch/include/ATen/core/PythonFallbackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9039570Z copying torch/include/ATen/core/builtin_function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9040860Z copying torch/include/ATen/core/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9042130Z copying torch/include/ATen/core/Reduction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9043310Z copying torch/include/ATen/core/Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9044580Z copying torch/include/ATen/core/function.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9045790Z copying torch/include/ATen/core/Generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9047020Z copying torch/include/ATen/core/PhiloxRNGEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9048240Z copying torch/include/ATen/core/TensorAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9049510Z copying torch/include/ATen/core/ivalue_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9051710Z copying torch/include/ATen/core/Variadic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core 2025-07-24T03:55:00.9052670Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-24T03:55:00.9053330Z copying torch/include/ATen/core/op_registration/adaption.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-24T03:55:00.9054620Z copying torch/include/ATen/core/op_registration/op_allowlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-24T03:55:00.9055880Z copying torch/include/ATen/core/op_registration/op_registration.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-24T03:55:00.9057260Z copying torch/include/ATen/core/op_registration/infer_schema.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration 2025-07-24T03:55:00.9058490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-24T03:55:00.9059510Z copying torch/include/ATen/core/dispatch/OperatorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-24T03:55:00.9060440Z copying torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-24T03:55:00.9061860Z copying torch/include/ATen/core/dispatch/ObservedOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-24T03:55:00.9063110Z copying torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-24T03:55:00.9064330Z copying torch/include/ATen/core/dispatch/Dispatcher.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-24T03:55:00.9065880Z copying torch/include/ATen/core/dispatch/CppSignature.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-24T03:55:00.9067050Z copying torch/include/ATen/core/dispatch/OperatorEntry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch 2025-07-24T03:55:00.9068450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-24T03:55:00.9069050Z copying torch/include/ATen/core/boxing/KernelFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-24T03:55:00.9070450Z copying torch/include/ATen/core/boxing/OperatorKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-24T03:55:00.9071720Z copying torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-24T03:55:00.9072950Z copying torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-24T03:55:00.9074230Z copying torch/include/ATen/core/boxing/BoxedKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing 2025-07-24T03:55:00.9075650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:00.9076330Z copying torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:00.9077810Z copying torch/include/ATen/core/boxing/impl/boxing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:00.9079210Z copying torch/include/ATen/core/boxing/impl/test_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:00.9080530Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:00.9082000Z copying torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:00.9083230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9083870Z copying torch/include/ATen/mps/MPSProfiler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9085930Z copying torch/include/ATen/mps/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9086870Z copying torch/include/ATen/mps/MPSAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9088480Z copying torch/include/ATen/mps/MPSGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9089700Z copying torch/include/ATen/mps/MPSHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9090970Z copying torch/include/ATen/mps/MPSEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9092460Z copying torch/include/ATen/mps/MPSDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9093800Z copying torch/include/ATen/mps/MPSStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9094940Z copying torch/include/ATen/mps/IndexKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9096190Z copying torch/include/ATen/mps/MPSAllocatorInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9097390Z copying torch/include/ATen/mps/MPSGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps 2025-07-24T03:55:00.9098630Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9099280Z copying torch/include/ATen/native/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9100480Z copying torch/include/ATen/native/MathBitsFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9101800Z copying torch/include/ATen/native/TensorTransformations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9102920Z copying torch/include/ATen/native/ComplexHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9104100Z copying torch/include/ATen/native/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9105430Z copying torch/include/ATen/native/Normalization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9106680Z copying torch/include/ATen/native/ReductionType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9107890Z copying torch/include/ATen/native/Repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9109160Z copying torch/include/ATen/native/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9110720Z copying torch/include/ATen/native/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9111580Z copying torch/include/ATen/native/TriangularOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9112840Z copying torch/include/ATen/native/UnfoldBackward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9113950Z copying torch/include/ATen/native/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9115070Z copying torch/include/ATen/native/Unfold3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9116320Z copying torch/include/ATen/native/Fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9117490Z copying torch/include/ATen/native/LinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9118680Z copying torch/include/ATen/native/RangeFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9119840Z copying torch/include/ATen/native/RNN.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9121010Z copying torch/include/ATen/native/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9122250Z copying torch/include/ATen/native/Pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9123390Z copying torch/include/ATen/native/RangeUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9124690Z copying torch/include/ATen/native/Cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9125720Z copying torch/include/ATen/native/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9127030Z copying torch/include/ATen/native/TransposeType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9128190Z copying torch/include/ATen/native/DispatchStub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9129380Z copying torch/include/ATen/native/Unfold2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9130580Z copying torch/include/ATen/native/Distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9131850Z copying torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9133090Z copying torch/include/ATen/native/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9134380Z copying torch/include/ATen/native/MaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9135550Z copying torch/include/ATen/native/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9136750Z copying torch/include/ATen/native/SparseTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9138010Z copying torch/include/ATen/native/CPUFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9139370Z copying torch/include/ATen/native/FusedAdagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9140460Z copying torch/include/ATen/native/GridSamplerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9141590Z copying torch/include/ATen/native/TopKImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9142880Z copying torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9144070Z copying torch/include/ATen/native/DilatedConvolutionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9145310Z copying torch/include/ATen/native/ForeachUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9146540Z copying torch/include/ATen/native/SobolEngineOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9147690Z copying torch/include/ATen/native/ReduceAllOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9148830Z copying torch/include/ATen/native/Lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9150100Z copying torch/include/ATen/native/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9151290Z copying torch/include/ATen/native/TensorAdvancedIndexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9152460Z copying torch/include/ATen/native/UnaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9153620Z copying torch/include/ATen/native/SortingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9154870Z copying torch/include/ATen/native/MathBitFallThroughLists.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9156060Z copying torch/include/ATen/native/StridedRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9157200Z copying torch/include/ATen/native/TensorShape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9158400Z copying torch/include/ATen/native/IndexingUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9159760Z copying torch/include/ATen/native/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9161010Z copying torch/include/ATen/native/ResizeCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9162250Z copying torch/include/ATen/native/SharedReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9163410Z copying torch/include/ATen/native/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9164680Z copying torch/include/ATen/native/SpectralOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9165910Z copying torch/include/ATen/native/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9167260Z copying torch/include/ATen/native/NonSymbolicBC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9168290Z copying torch/include/ATen/native/TensorProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9169570Z copying torch/include/ATen/native/BucketizationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9170690Z copying torch/include/ATen/native/vol2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9171920Z copying torch/include/ATen/native/LossMulti.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9173160Z copying torch/include/ATen/native/NonEmptyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9174350Z copying torch/include/ATen/native/TensorDimApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9175580Z copying torch/include/ATen/native/verbose_wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9176880Z copying torch/include/ATen/native/AdaptivePooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9178080Z copying torch/include/ATen/native/ConvolutionMM3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9179270Z copying torch/include/ATen/native/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9180440Z copying torch/include/ATen/native/Histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9181640Z copying torch/include/ATen/native/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9182820Z copying torch/include/ATen/native/Math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9185040Z copying torch/include/ATen/native/FusedAdam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9185950Z copying torch/include/ATen/native/ScatterGatherChecks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9187090Z copying torch/include/ATen/native/CPUBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9188320Z copying torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9189720Z copying torch/include/ATen/native/BatchLinearAlgebra.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9190840Z copying torch/include/ATen/native/AmpKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9192120Z copying torch/include/ATen/native/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9193580Z copying torch/include/ATen/native/TensorIterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9194870Z copying torch/include/ATen/native/TensorConversions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9196020Z copying torch/include/ATen/native/FractionalMaxPooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9197200Z copying torch/include/ATen/native/ReduceOpsUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9198620Z copying torch/include/ATen/native/TensorFactories.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9199890Z copying torch/include/ATen/native/PointwiseOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9201110Z copying torch/include/ATen/native/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9202300Z copying torch/include/ATen/native/Pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9203590Z copying torch/include/ATen/native/EmbeddingBag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9204850Z copying torch/include/ATen/native/im2col_shape_check.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9206080Z copying torch/include/ATen/native/SegmentReduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9207240Z copying torch/include/ATen/native/FusedSGD.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9208510Z copying torch/include/ATen/native/Padding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9209760Z copying torch/include/ATen/native/TensorCompare.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9210960Z copying torch/include/ATen/native/PixelShuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9212260Z copying torch/include/ATen/native/LinearAlgebraUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9213700Z copying torch/include/ATen/native/TypeProperties.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9214640Z copying torch/include/ATen/native/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9215830Z copying torch/include/ATen/native/CanUse32BitIndexMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9217020Z copying torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native 2025-07-24T03:55:00.9218390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse 2025-07-24T03:55:00.9218920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized 2025-07-24T03:55:00.9219410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-24T03:55:00.9220120Z copying torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-24T03:55:00.9221400Z copying torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-24T03:55:00.9222660Z copying torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-24T03:55:00.9224000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-24T03:55:00.9224600Z copying torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-24T03:55:00.9225890Z copying torch/include/ATen/native/mps/TensorFactory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-24T03:55:00.9227050Z copying torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-24T03:55:00.9228380Z copying torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-24T03:55:00.9229610Z copying torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-24T03:55:00.9230780Z copying torch/include/ATen/native/mps/OperationUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-24T03:55:00.9232170Z copying torch/include/ATen/native/mps/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps 2025-07-24T03:55:00.9233360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-07-24T03:55:00.9233980Z copying torch/include/ATen/native/mps/kernels/UpSample.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-07-24T03:55:00.9235290Z copying torch/include/ATen/native/mps/kernels/Pooling.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels 2025-07-24T03:55:00.9236400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-24T03:55:00.9237130Z copying torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-24T03:55:00.9238490Z copying torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-24T03:55:00.9239680Z copying torch/include/ATen/native/mps/operations/BinaryKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-24T03:55:00.9241100Z copying torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-24T03:55:00.9242410Z copying torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-24T03:55:00.9243710Z copying torch/include/ATen/native/mps/operations/MultiTensorApply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations 2025-07-24T03:55:00.9244820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9245470Z copying torch/include/ATen/native/metal/MetalConvParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9246740Z copying torch/include/ATen/native/metal/MetalTensorImplStorage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9248020Z copying torch/include/ATen/native/metal/MetalTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9249190Z copying torch/include/ATen/native/metal/MetalContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9250490Z copying torch/include/ATen/native/metal/MetalTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9251800Z copying torch/include/ATen/native/metal/MetalNeuronType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9253150Z copying torch/include/ATen/native/metal/MetalShaders.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9254780Z copying torch/include/ATen/native/metal/MetalPrepackOpContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9256070Z copying torch/include/ATen/native/metal/MetalCommandBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9257290Z copying torch/include/ATen/native/metal/MetalDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal 2025-07-24T03:55:00.9258460Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9259200Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9260500Z copying torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9261720Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9262880Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9264080Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9265270Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9266450Z copying torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9267660Z copying torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9268820Z copying torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:00.9270120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-07-24T03:55:00.9270800Z copying torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-07-24T03:55:00.9271930Z copying torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests 2025-07-24T03:55:00.9273060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-07-24T03:55:00.9273680Z copying torch/include/ATen/native/metal/ops/MetalCopy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-07-24T03:55:00.9275010Z copying torch/include/ATen/native/metal/ops/MetalConvolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops 2025-07-24T03:55:00.9276120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9276730Z copying torch/include/ATen/native/cpu/IsContiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9277960Z copying torch/include/ATen/native/cpu/zmath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9279140Z copying torch/include/ATen/native/cpu/ReduceUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9280360Z copying torch/include/ATen/native/cpu/mixed_data_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9281680Z copying torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9282730Z copying torch/include/ATen/native/cpu/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9283940Z copying torch/include/ATen/native/cpu/int_mm_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9285250Z copying torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9286360Z copying torch/include/ATen/native/cpu/Gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9287630Z copying torch/include/ATen/native/cpu/moments_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9288790Z copying torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9289930Z copying torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9291140Z copying torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9292350Z copying torch/include/ATen/native/cpu/SerialStackImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9293590Z copying torch/include/ATen/native/cpu/Intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9294720Z copying torch/include/ATen/native/cpu/LogAddExp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9295940Z copying torch/include/ATen/native/cpu/WeightNormKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9297100Z copying torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9298300Z copying torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9299510Z copying torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9300710Z copying torch/include/ATen/native/cpu/Elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9301840Z copying torch/include/ATen/native/cpu/Reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9303050Z copying torch/include/ATen/native/cpu/CatKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9304270Z copying torch/include/ATen/native/cpu/StackKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9305550Z copying torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9306740Z copying torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9307990Z copying torch/include/ATen/native/cpu/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9309350Z copying torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9310630Z copying torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9312060Z copying torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9313240Z copying torch/include/ATen/native/cpu/avx_mathfun.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9314630Z copying torch/include/ATen/native/cpu/CopyKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9315730Z copying torch/include/ATen/native/cpu/Loops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu 2025-07-24T03:55:00.9316940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9317660Z copying torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9318790Z copying torch/include/ATen/native/cuda/MiscUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9320040Z copying torch/include/ATen/native/cuda/GridSampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9321130Z copying torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9322540Z copying torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9323790Z copying torch/include/ATen/native/cuda/ScanKernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9325330Z copying torch/include/ATen/native/cuda/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9326130Z copying torch/include/ATen/native/cuda/ScaledGroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9327300Z copying torch/include/ATen/native/cuda/Distributions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9328510Z copying torch/include/ATen/native/cuda/BinaryInternal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9329690Z copying torch/include/ATen/native/cuda/GroupMM.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9330860Z copying torch/include/ATen/native/cuda/CuFFTUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9332070Z copying torch/include/ATen/native/cuda/ReduceOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9333250Z copying torch/include/ATen/native/cuda/TensorTopK.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9334490Z copying torch/include/ATen/native/cuda/TensorModeKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9335670Z copying torch/include/ATen/native/cuda/thread_constants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9336840Z copying torch/include/ATen/native/cuda/Resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9337960Z copying torch/include/ATen/native/cuda/Sorting.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9339230Z copying torch/include/ATen/native/cuda/Activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9340410Z copying torch/include/ATen/native/cuda/Sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9341600Z copying torch/include/ATen/native/cuda/DistributionTemplates.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9342920Z copying torch/include/ATen/native/cuda/IndexKernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9344100Z copying torch/include/ATen/native/cuda/jit_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9345330Z copying torch/include/ATen/native/cuda/SortStable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9346530Z copying torch/include/ATen/native/cuda/LaunchUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9347640Z copying torch/include/ATen/native/cuda/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:00.9348910Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-24T03:55:00.9349510Z copying torch/include/ATen/native/quantized/ConvUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-24T03:55:00.9350730Z copying torch/include/ATen/native/quantized/AffineQuantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-24T03:55:00.9363590Z copying torch/include/ATen/native/quantized/IndexKernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-24T03:55:00.9363960Z copying torch/include/ATen/native/quantized/library.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-24T03:55:00.9364320Z copying torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-24T03:55:00.9364650Z copying torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-24T03:55:00.9364980Z copying torch/include/ATen/native/quantized/PackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-24T03:55:00.9365350Z copying torch/include/ATen/native/quantized/Copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized 2025-07-24T03:55:00.9365520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9365870Z copying torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9366200Z copying torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9366540Z copying torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9366880Z copying torch/include/ATen/native/quantized/cpu/ACLUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9367240Z copying torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9367570Z copying torch/include/ATen/native/quantized/cpu/qlinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9367950Z copying torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9368300Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9369360Z copying torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9370720Z copying torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9371930Z copying torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9373210Z copying torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9374610Z copying torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9375870Z copying torch/include/ATen/native/quantized/cpu/qconv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9377140Z copying torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9378340Z copying torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:00.9379540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-07-24T03:55:00.9380260Z copying torch/include/ATen/native/quantized/cudnn/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn 2025-07-24T03:55:00.9381480Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-07-24T03:55:00.9382130Z copying torch/include/ATen/native/utils/ParamUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-07-24T03:55:00.9383310Z copying torch/include/ATen/native/utils/ParamsHash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-07-24T03:55:00.9384540Z copying torch/include/ATen/native/utils/Factory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils 2025-07-24T03:55:00.9385810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-07-24T03:55:00.9386460Z copying torch/include/ATen/native/transformers/sdp_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-07-24T03:55:00.9387740Z copying torch/include/ATen/native/transformers/attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-07-24T03:55:00.9388990Z copying torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers 2025-07-24T03:55:00.9390490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda 2025-07-24T03:55:00.9391070Z copying torch/include/ATen/native/transformers/cuda/sdp_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda 2025-07-24T03:55:00.9392330Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:00.9393080Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:00.9394390Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:00.9395710Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:00.9397330Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:00.9398530Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:00.9400650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-24T03:55:00.9401150Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-24T03:55:00.9402770Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-24T03:55:00.9404070Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:00.9404900Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:00.9406290Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:00.9407570Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:00.9409060Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:00.9410970Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:00.9412150Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:00.9413510Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:00.9414730Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-24T03:55:00.9415600Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-24T03:55:00.9417040Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-24T03:55:00.9418050Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-24T03:55:00.9419360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-07-24T03:55:00.9420100Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-07-24T03:55:00.9421280Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:00.9422050Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:00.9423640Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:00.9425140Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:00.9426460Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:00.9427790Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:00.9429040Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:00.9430400Z copying torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:00.9431750Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-24T03:55:00.9432390Z copying torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-24T03:55:00.9433660Z copying torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-24T03:55:00.9434790Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-07-24T03:55:00.9435470Z copying torch/include/ATen/native/transformers/hip/aotriton_adapter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip 2025-07-24T03:55:00.9436620Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn 2025-07-24T03:55:00.9437270Z copying torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn 2025-07-24T03:55:00.9438640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-07-24T03:55:00.9439320Z copying torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-07-24T03:55:00.9440370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-24T03:55:00.9440980Z copying torch/include/ATen/native/hip/ck_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-24T03:55:00.9442250Z copying torch/include/ATen/native/hip/ck_bgemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-24T03:55:00.9443490Z copying torch/include/ATen/native/hip/ck_gemm_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-24T03:55:00.9444750Z copying torch/include/ATen/native/hip/ck_gemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip 2025-07-24T03:55:00.9446010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-07-24T03:55:00.9446660Z copying torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-07-24T03:55:00.9447880Z copying torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels 2025-07-24T03:55:00.9449030Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-07-24T03:55:00.9449710Z copying torch/include/ATen/native/mtia/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia 2025-07-24T03:55:00.9451110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-07-24T03:55:00.9451740Z copying torch/include/ATen/native/kleidiai/kai_pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-07-24T03:55:00.9453190Z copying torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-07-24T03:55:00.9454580Z copying torch/include/ATen/native/kleidiai/kai_kernels.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai 2025-07-24T03:55:00.9455820Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-24T03:55:00.9456490Z copying torch/include/ATen/native/nested/NestedTensorUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-24T03:55:00.9458010Z copying torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-24T03:55:00.9459460Z copying torch/include/ATen/native/nested/NestedTensorMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-24T03:55:00.9460840Z copying torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-24T03:55:00.9462240Z copying torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested 2025-07-24T03:55:00.9463380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn 2025-07-24T03:55:00.9463960Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-07-24T03:55:00.9464540Z copying torch/include/ATen/native/mkldnn/xpu/FusionUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-07-24T03:55:00.9465720Z copying torch/include/ATen/native/mkldnn/xpu/Conv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu 2025-07-24T03:55:00.9467470Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:00.9467850Z copying torch/include/ATen/native/mkldnn/xpu/detail/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:00.9468800Z copying torch/include/ATen/native/mkldnn/xpu/detail/Attr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:00.9470140Z copying torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:00.9471310Z copying torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:00.9472710Z copying torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:00.9473970Z copying torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:00.9475130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-07-24T03:55:00.9475680Z copying torch/include/ATen/metal/Context.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal 2025-07-24T03:55:00.9476950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-07-24T03:55:00.9477480Z copying torch/include/ATen/cpu/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-07-24T03:55:00.9478700Z copying torch/include/ATen/cpu/FlushDenormal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-07-24T03:55:00.9479800Z copying torch/include/ATen/cpu/vml.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu 2025-07-24T03:55:00.9481010Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9481590Z copying torch/include/ATen/cpu/vec/vec_quant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9482800Z copying torch/include/ATen/cpu/vec/vec_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9484050Z copying torch/include/ATen/cpu/vec/vec_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9485420Z copying torch/include/ATen/cpu/vec/vec.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9486310Z copying torch/include/ATen/cpu/vec/vec_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9487540Z copying torch/include/ATen/cpu/vec/intrinsics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9488740Z copying torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9490110Z copying torch/include/ATen/cpu/vec/functional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9495740Z copying torch/include/ATen/cpu/vec/vec_n.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9496230Z copying torch/include/ATen/cpu/vec/functional_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9496480Z copying torch/include/ATen/cpu/vec/vec_base.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec 2025-07-24T03:55:00.9496720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:00.9497040Z copying torch/include/ATen/cpu/vec/vec128/vec128_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:00.9497400Z copying torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:00.9498200Z copying torch/include/ATen/cpu/vec/vec128/vec128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:00.9499370Z copying torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:00.9500760Z copying torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:00.9502060Z copying torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:00.9503390Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9503970Z copying torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9505200Z copying torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9506450Z copying torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9507630Z copying torch/include/ATen/cpu/vec/vec256/vec256_half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9508850Z copying torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9510380Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9511830Z copying torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9513030Z copying torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9514360Z copying torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9515700Z copying torch/include/ATen/cpu/vec/vec256/vec256.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9516820Z copying torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9518200Z copying torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9519440Z copying torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9521080Z copying torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:00.9522400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch 2025-07-24T03:55:00.9523040Z copying torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch 2025-07-24T03:55:00.9525060Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9525450Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9526770Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9528030Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9529230Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9530490Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9531930Z copying torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9533310Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9534630Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9535860Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9537260Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9538450Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9539860Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9541180Z copying torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:00.9542370Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9543060Z copying torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9544610Z copying torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9545780Z copying torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9547410Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9548660Z copying torch/include/ATen/cpu/vec/vec512/vec512_float8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9550030Z copying torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9551460Z copying torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9552810Z copying torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9554150Z copying torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9555690Z copying torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9557000Z copying torch/include/ATen/cpu/vec/vec512/vec512.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:00.9558230Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:00.9558900Z copying torch/include/ATen/cpu/vec/sve/vec_bfloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:00.9560280Z copying torch/include/ATen/cpu/vec/sve/vec_qint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:00.9561570Z copying torch/include/ATen/cpu/vec/sve/vec_double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:00.9562960Z copying torch/include/ATen/cpu/vec/sve/vec_float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:00.9564340Z copying torch/include/ATen/cpu/vec/sve/vec_common_sve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:00.9565540Z copying torch/include/ATen/cpu/vec/sve/sve_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:00.9566810Z copying torch/include/ATen/cpu/vec/sve/vec_int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:00.9568190Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9568780Z copying torch/include/ATen/cuda/CUDADevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9570020Z copying torch/include/ATen/cuda/CUDAUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9571220Z copying torch/include/ATen/cuda/CUDABlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9572460Z copying torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9573560Z copying torch/include/ATen/cuda/Sleep.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9574840Z copying torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9576010Z copying torch/include/ATen/cuda/jiterator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9577290Z copying torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9578430Z copying torch/include/ATen/cuda/EmptyTensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9579710Z copying torch/include/ATen/cuda/PeerToPeerAccess.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9580980Z copying torch/include/ATen/cuda/CUDAEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9582120Z copying torch/include/ATen/cuda/CUDAContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9583310Z copying torch/include/ATen/cuda/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9584580Z copying torch/include/ATen/cuda/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9585850Z copying torch/include/ATen/cuda/CUDADataType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9587200Z copying torch/include/ATen/cuda/cub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9588510Z copying torch/include/ATen/cuda/CUDAContextLight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9589750Z copying torch/include/ATen/cuda/CUDAGraph.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9590970Z copying torch/include/ATen/cuda/ThrustAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9592240Z copying torch/include/ATen/cuda/llvm_jit_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9593440Z copying torch/include/ATen/cuda/CUDASparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9594710Z copying torch/include/ATen/cuda/PhiloxCudaState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9595890Z copying torch/include/ATen/cuda/jiterator_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9597110Z copying torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9598560Z copying torch/include/ATen/cuda/CUDASparseBlas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:00.9599520Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:00.9600120Z copying torch/include/ATen/cuda/detail/CUDAHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:00.9601370Z copying torch/include/ATen/cuda/detail/KernelUtils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:00.9602570Z copying torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:00.9603890Z copying torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:00.9605120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-24T03:55:00.9605790Z copying torch/include/ATen/cuda/tunable/TunableOp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-24T03:55:00.9606980Z copying torch/include/ATen/cuda/tunable/StreamTimer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-24T03:55:00.9608200Z copying torch/include/ATen/cuda/tunable/TunableGemm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-24T03:55:00.9609450Z copying torch/include/ATen/cuda/tunable/GemmCommon.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-24T03:55:00.9611440Z copying torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-24T03:55:00.9612360Z copying torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-24T03:55:00.9613590Z copying torch/include/ATen/cuda/tunable/Tunable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable 2025-07-24T03:55:00.9615000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-07-24T03:55:00.9615920Z copying torch/include/ATen/quantized/QTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-07-24T03:55:00.9617690Z copying torch/include/ATen/quantized/Quantizer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized 2025-07-24T03:55:00.9619130Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-24T03:55:00.9619810Z copying torch/include/ATen/xpu/XPUEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-24T03:55:00.9621190Z copying torch/include/ATen/xpu/XPUDevice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-24T03:55:00.9622550Z copying torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-24T03:55:00.9623780Z copying torch/include/ATen/xpu/CachingHostAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-24T03:55:00.9625610Z copying torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-24T03:55:00.9626630Z copying torch/include/ATen/xpu/XPUContext.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu 2025-07-24T03:55:00.9628110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-07-24T03:55:00.9628640Z copying torch/include/ATen/xpu/detail/XPUHooks.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail 2025-07-24T03:55:00.9629990Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-24T03:55:00.9630620Z copying torch/include/ATen/miopen/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-24T03:55:00.9631880Z copying torch/include/ATen/miopen/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-24T03:55:00.9633060Z copying torch/include/ATen/miopen/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-24T03:55:00.9634210Z copying torch/include/ATen/miopen/miopen-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-24T03:55:00.9635490Z copying torch/include/ATen/miopen/Exceptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-24T03:55:00.9636700Z copying torch/include/ATen/miopen/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen 2025-07-24T03:55:00.9637940Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9638610Z copying torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9639850Z copying torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9641120Z copying torch/include/ATen/detail/CUDAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9642440Z copying torch/include/ATen/detail/MAIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9643650Z copying torch/include/ATen/detail/XPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9644790Z copying torch/include/ATen/detail/FunctionTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9646090Z copying torch/include/ATen/detail/HIPHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9647290Z copying torch/include/ATen/detail/MPSHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9648490Z copying torch/include/ATen/detail/MTIAHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9649770Z copying torch/include/ATen/detail/HPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9650940Z copying torch/include/ATen/detail/IPUHooksInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail 2025-07-24T03:55:00.9652120Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip 2025-07-24T03:55:00.9652650Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-24T03:55:00.9653340Z copying torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-24T03:55:00.9654760Z copying torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-24T03:55:00.9655980Z copying torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-24T03:55:00.9657170Z copying torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl 2025-07-24T03:55:00.9658300Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9658890Z copying torch/include/ATen/ops/is_vulkan_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9660150Z copying torch/include/ATen/ops/_foreach_atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9661540Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9662870Z copying torch/include/ATen/ops/sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9664150Z copying torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9665710Z copying torch/include/ATen/ops/mode_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9666760Z copying torch/include/ATen/ops/index_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9667900Z copying torch/include/ATen/ops/new_ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9669150Z copying torch/include/ATen/ops/pixel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9670410Z copying torch/include/ATen/ops/clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9671770Z copying torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9672930Z copying torch/include/ATen/ops/acosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9674060Z copying torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9675250Z copying torch/include/ATen/ops/erf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9676510Z copying torch/include/ATen/ops/repeat_interleave_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9677660Z copying torch/include/ATen/ops/special_i0e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9678840Z copying torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9680020Z copying torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9681210Z copying torch/include/ATen/ops/cummin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9682460Z copying torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9683660Z copying torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9684850Z copying torch/include/ATen/ops/where_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9686050Z copying torch/include/ATen/ops/slice_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9687230Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9688480Z copying torch/include/ATen/ops/isfinite_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9689750Z copying torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9690940Z copying torch/include/ATen/ops/leaky_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9692190Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9693380Z copying torch/include/ATen/ops/erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9694580Z copying torch/include/ATen/ops/linalg_vecdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9695950Z copying torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9697110Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9698300Z copying torch/include/ATen/ops/bitwise_and_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9699570Z copying torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9700880Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9702080Z copying torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9703230Z copying torch/include/ATen/ops/result_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9704560Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9705770Z copying torch/include/ATen/ops/min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9707030Z copying torch/include/ATen/ops/cumulative_trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9708210Z copying torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9709460Z copying torch/include/ATen/ops/soft_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9710820Z copying torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9712110Z copying torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9713230Z copying torch/include/ATen/ops/pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9714560Z copying torch/include/ATen/ops/atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9715740Z copying torch/include/ATen/ops/binomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9716910Z copying torch/include/ATen/ops/to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9718360Z copying torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9719390Z copying torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9720550Z copying torch/include/ATen/ops/gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9721890Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9723120Z copying torch/include/ATen/ops/max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9724470Z copying torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9725680Z copying torch/include/ATen/ops/signbit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9726910Z copying torch/include/ATen/ops/_propagate_xla_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9728160Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9729510Z copying torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9730750Z copying torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9732000Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9733200Z copying torch/include/ATen/ops/cumprod_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9734410Z copying torch/include/ATen/ops/_remove_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9735620Z copying torch/include/ATen/ops/constant_pad_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9736910Z copying torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9738110Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9739350Z copying torch/include/ATen/ops/_lstm_mps_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9740540Z copying torch/include/ATen/ops/_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9742020Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9743090Z copying torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9744320Z copying torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9745560Z copying torch/include/ATen/ops/_int_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9746870Z copying torch/include/ATen/ops/i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9748060Z copying torch/include/ATen/ops/inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9749270Z copying torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9750590Z copying torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9751670Z copying torch/include/ATen/ops/index_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9752910Z copying torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9754020Z copying torch/include/ATen/ops/_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9755230Z copying torch/include/ATen/ops/quantized_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9756390Z copying torch/include/ATen/ops/_fused_rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9757710Z copying torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9758940Z copying torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9760080Z copying torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9761300Z copying torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9762630Z copying torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9763870Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9765150Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9766490Z copying torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9767880Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9769050Z copying torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9770450Z copying torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9771830Z copying torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9773080Z copying torch/include/ATen/ops/fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9774340Z copying torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9775750Z copying torch/include/ATen/ops/dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9777040Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9778390Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9779690Z copying torch/include/ATen/ops/index_copy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9780950Z copying torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9782200Z copying torch/include/ATen/ops/_foreach_log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9783550Z copying torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9784730Z copying torch/include/ATen/ops/sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9785940Z copying torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9787160Z copying torch/include/ATen/ops/trace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9788460Z copying torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9789640Z copying torch/include/ATen/ops/_efficientzerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9790910Z copying torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9792100Z copying torch/include/ATen/ops/_efficient_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9793400Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9794680Z copying torch/include/ATen/ops/sinc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9796040Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9797250Z copying torch/include/ATen/ops/special_bessel_y1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9798490Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9799750Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9801190Z copying torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9802230Z copying torch/include/ATen/ops/logical_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9803460Z copying torch/include/ATen/ops/nextafter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9804730Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9805960Z copying torch/include/ATen/ops/log_sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9807210Z copying torch/include/ATen/ops/special_bessel_y0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9808390Z copying torch/include/ATen/ops/_cast_Long_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9809610Z copying torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9810820Z copying torch/include/ATen/ops/pdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9812060Z copying torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9813260Z copying torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9814620Z copying torch/include/ATen/ops/softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9816030Z copying torch/include/ATen/ops/arctan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9817330Z copying torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9818650Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9819940Z copying torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9821320Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9822680Z copying torch/include/ATen/ops/absolute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9824020Z copying torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9825360Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9826850Z copying torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9828080Z copying torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9829440Z copying torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9830720Z copying torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9831870Z copying torch/include/ATen/ops/max_pool3d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9833080Z copying torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9834280Z copying torch/include/ATen/ops/special_zeta_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9835500Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9836800Z copying torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9837980Z copying torch/include/ATen/ops/addmv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9839310Z copying torch/include/ATen/ops/bilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9840450Z copying torch/include/ATen/ops/topk_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9841810Z copying torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9842970Z copying torch/include/ATen/ops/linalg_eig_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9844280Z copying torch/include/ATen/ops/matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9845550Z copying torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9846720Z copying torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9847990Z copying torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9849240Z copying torch/include/ATen/ops/softshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9850380Z copying torch/include/ATen/ops/concatenate_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9851620Z copying torch/include/ATen/ops/view_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9852820Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9854270Z copying torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9855350Z copying torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9856800Z copying torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9857910Z copying torch/include/ATen/ops/is_inference_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9859230Z copying torch/include/ATen/ops/special_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9860520Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9861690Z copying torch/include/ATen/ops/hstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9862960Z copying torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9864190Z copying torch/include/ATen/ops/_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9865400Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9866630Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9868120Z copying torch/include/ATen/ops/miopen_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9869270Z copying torch/include/ATen/ops/is_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9870420Z copying torch/include/ATen/ops/slice_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9871690Z copying torch/include/ATen/ops/dot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9872850Z copying torch/include/ATen/ops/positive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9874970Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9876000Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9877180Z copying torch/include/ATen/ops/_cast_Float_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9878700Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9879970Z copying torch/include/ATen/ops/lu_unpack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9881200Z copying torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9882480Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9883870Z copying torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9885040Z copying torch/include/ATen/ops/narrow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9886190Z copying torch/include/ATen/ops/atan2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9887430Z copying torch/include/ATen/ops/rnn_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9888750Z copying torch/include/ATen/ops/lu_unpack_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9890020Z copying torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9891260Z copying torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9892590Z copying torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9893810Z copying torch/include/ATen/ops/size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9895060Z copying torch/include/ATen/ops/scatter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9896390Z copying torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9897790Z copying torch/include/ATen/ops/bernoulli_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9899040Z copying torch/include/ATen/ops/glu_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9900240Z copying torch/include/ATen/ops/special_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9901370Z copying torch/include/ATen/ops/matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9902860Z copying torch/include/ATen/ops/miopen_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9904060Z copying torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9905410Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9906590Z copying torch/include/ATen/ops/log_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9907860Z copying torch/include/ATen/ops/hann_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9909000Z copying torch/include/ATen/ops/rrelu_with_noise.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9910220Z copying torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9911480Z copying torch/include/ATen/ops/atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9912760Z copying torch/include/ATen/ops/coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9914090Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9915140Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9916360Z copying torch/include/ATen/ops/where_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9917730Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9919040Z copying torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9920270Z copying torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9921520Z copying torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9922870Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9924140Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9925350Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9926660Z copying torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9927940Z copying torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9929140Z copying torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9930370Z copying torch/include/ATen/ops/_linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9931710Z copying torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9933130Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9934330Z copying torch/include/ATen/ops/arctan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9935640Z copying torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9937140Z copying torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9938460Z copying torch/include/ATen/ops/view_as_real_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9939660Z copying torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9941170Z copying torch/include/ATen/ops/neg_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9942400Z copying torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9943660Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9944990Z copying torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9946290Z copying torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9947490Z copying torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9948690Z copying torch/include/ATen/ops/chain_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9949950Z copying torch/include/ATen/ops/sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9951240Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9952550Z copying torch/include/ATen/ops/affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9953820Z copying torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9955070Z copying torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9956250Z copying torch/include/ATen/ops/vdot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9957500Z copying torch/include/ATen/ops/sparse_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9958820Z copying torch/include/ATen/ops/_foreach_abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9960010Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9961330Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9962490Z copying torch/include/ATen/ops/abs_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9963850Z copying torch/include/ATen/ops/col_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9965040Z copying torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9966300Z copying torch/include/ATen/ops/native_group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9967540Z copying torch/include/ATen/ops/_fft_c2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9968950Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9970140Z copying torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9971330Z copying torch/include/ATen/ops/cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9972570Z copying torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9973740Z copying torch/include/ATen/ops/argmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9974970Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9976170Z copying torch/include/ATen/ops/adaptive_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9977440Z copying torch/include/ATen/ops/logspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9978610Z copying torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9979840Z copying torch/include/ATen/ops/is_same_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9980950Z copying torch/include/ATen/ops/igammac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9982160Z copying torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9983450Z copying torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9984690Z copying torch/include/ATen/ops/_cast_Double_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9986000Z copying torch/include/ATen/ops/prod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9987390Z copying torch/include/ATen/ops/ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9988620Z copying torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9990010Z copying torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9991110Z copying torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9992420Z copying torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9993710Z copying torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9994830Z copying torch/include/ATen/ops/and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9996090Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9998080Z copying torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:00.9999240Z copying torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0000520Z copying torch/include/ATen/ops/as_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0001700Z copying torch/include/ATen/ops/linalg_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0003280Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0004370Z copying torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0005630Z copying torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0006800Z copying torch/include/ATen/ops/vstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0008010Z copying torch/include/ATen/ops/fft_rfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0009250Z copying torch/include/ATen/ops/normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0010480Z copying torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0011670Z copying torch/include/ATen/ops/linalg_inv_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0013000Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0014130Z copying torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0015460Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0016670Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0017810Z copying torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0019220Z copying torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0020340Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0021540Z copying torch/include/ATen/ops/_fused_sgd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0022790Z copying torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0023970Z copying torch/include/ATen/ops/_linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0025210Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0026390Z copying torch/include/ATen/ops/dequantize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0027620Z copying torch/include/ATen/ops/_fft_c2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0028810Z copying torch/include/ATen/ops/align_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0030110Z copying torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0031340Z copying torch/include/ATen/ops/replication_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0032640Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0033820Z copying torch/include/ATen/ops/acosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0035230Z copying torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0036400Z copying torch/include/ATen/ops/_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0037540Z copying torch/include/ATen/ops/index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0038700Z copying torch/include/ATen/ops/min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0039880Z copying torch/include/ATen/ops/glu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0041130Z copying torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0042340Z copying torch/include/ATen/ops/index_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0043470Z copying torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0044970Z copying torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0046000Z copying torch/include/ATen/ops/std_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0047290Z copying torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0048460Z copying torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0049660Z copying torch/include/ATen/ops/repeat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0050890Z copying torch/include/ATen/ops/_foreach_floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0052130Z copying torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0053450Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0054600Z copying torch/include/ATen/ops/embedding_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0055770Z copying torch/include/ATen/ops/dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0056910Z copying torch/include/ATen/ops/matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0058170Z copying torch/include/ATen/ops/floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0059540Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0060720Z copying torch/include/ATen/ops/_unsafe_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0062030Z copying torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0063210Z copying torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0064480Z copying torch/include/ATen/ops/_test_check_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0065620Z copying torch/include/ATen/ops/rot90_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0067000Z copying torch/include/ATen/ops/signbit_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0068200Z copying torch/include/ATen/ops/reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0069430Z copying torch/include/ATen/ops/clamp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0070550Z copying torch/include/ATen/ops/selu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0071990Z copying torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0073300Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0074490Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0075730Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0077060Z copying torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0078170Z copying torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0079410Z copying torch/include/ATen/ops/minimum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0080700Z copying torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0081970Z copying torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0083110Z copying torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0084330Z copying torch/include/ATen/ops/values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0085630Z copying torch/include/ATen/ops/col2im_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0086910Z copying torch/include/ATen/ops/ge_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0088180Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0089420Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0090730Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0091990Z copying torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0093170Z copying torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0094460Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0095640Z copying torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0096980Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0098250Z copying torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0099470Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0100710Z copying torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0101890Z copying torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0103100Z copying torch/include/ATen/ops/sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0104410Z copying torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0105710Z copying torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0106990Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0108180Z copying torch/include/ATen/ops/glu_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0109430Z copying torch/include/ATen/ops/_sobol_engine_scramble.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0110550Z copying torch/include/ATen/ops/mish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0111760Z copying torch/include/ATen/ops/fft_rfftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0113020Z copying torch/include/ATen/ops/elu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0114150Z copying torch/include/ATen/ops/nanmean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0115400Z copying torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0116700Z copying torch/include/ATen/ops/linalg_cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0117900Z copying torch/include/ATen/ops/_fused_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0119100Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0120320Z copying torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0121720Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0122930Z copying torch/include/ATen/ops/gt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0124370Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0125460Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0126670Z copying torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0127950Z copying torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0129140Z copying torch/include/ATen/ops/detach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0130530Z copying torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0131810Z copying torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0133050Z copying torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0134300Z copying torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0135610Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0136860Z copying torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0138000Z copying torch/include/ATen/ops/conv_depthwise3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0139180Z copying torch/include/ATen/ops/norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0140530Z copying torch/include/ATen/ops/masked_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0141880Z copying torch/include/ATen/ops/exponential_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0143010Z copying torch/include/ATen/ops/special_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0144300Z copying torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0145490Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0146710Z copying torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0147930Z copying torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0149090Z copying torch/include/ATen/ops/lcm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0150400Z copying torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0151620Z copying torch/include/ATen/ops/upsample_nearest2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0152850Z copying torch/include/ATen/ops/cross_entropy_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0154010Z copying torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0155120Z copying torch/include/ATen/ops/unsqueeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0156370Z copying torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0157570Z copying torch/include/ATen/ops/rsub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0158900Z copying torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0160170Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0166200Z copying torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0166700Z copying torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0166950Z copying torch/include/ATen/ops/gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0167200Z copying torch/include/ATen/ops/_weight_int8pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0167500Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0167790Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0168840Z copying torch/include/ATen/ops/permute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0170210Z copying torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0171450Z copying torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0172860Z copying torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0174090Z copying torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0175340Z copying torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0176630Z copying torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0177940Z copying torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0179180Z copying torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0180530Z copying torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0181820Z copying torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0183110Z copying torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0184210Z copying torch/include/ATen/ops/roll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0185520Z copying torch/include/ATen/ops/linalg_svdvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0186700Z copying torch/include/ATen/ops/orgqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0187970Z copying torch/include/ATen/ops/sigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0189200Z copying torch/include/ATen/ops/conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0190450Z copying torch/include/ATen/ops/layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0191850Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0192980Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0194210Z copying torch/include/ATen/ops/std_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0195420Z copying torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0196680Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0198020Z copying torch/include/ATen/ops/take.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0199240Z copying torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0200490Z copying torch/include/ATen/ops/isin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0201860Z copying torch/include/ATen/ops/record_stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0203580Z copying torch/include/ATen/ops/resize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0204560Z copying torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0206000Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0207370Z copying torch/include/ATen/ops/native_group_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0208650Z copying torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0210000Z copying torch/include/ATen/ops/fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0211320Z copying torch/include/ATen/ops/linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0212650Z copying torch/include/ATen/ops/isinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0213960Z copying torch/include/ATen/ops/expand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0215240Z copying torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0216440Z copying torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0217920Z copying torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0219150Z copying torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0220450Z copying torch/include/ATen/ops/native_dropout_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0221710Z copying torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0222990Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0224150Z copying torch/include/ATen/ops/multinomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0225510Z copying torch/include/ATen/ops/alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0226960Z copying torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0228000Z copying torch/include/ATen/ops/allclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0229240Z copying torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0230470Z copying torch/include/ATen/ops/nuclear_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0231830Z copying torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0233130Z copying torch/include/ATen/ops/multilabel_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0234290Z copying torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0235540Z copying torch/include/ATen/ops/pairwise_distance_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0236760Z copying torch/include/ATen/ops/broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0238150Z copying torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0239250Z copying torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0240500Z copying torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0241940Z copying torch/include/ATen/ops/_foreach_log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0243240Z copying torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0244430Z copying torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0245780Z copying torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0246990Z copying torch/include/ATen/ops/_aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0248720Z copying torch/include/ATen/ops/complex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0250180Z copying torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0251580Z copying torch/include/ATen/ops/digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0252950Z copying torch/include/ATen/ops/mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0254490Z copying torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0256110Z copying torch/include/ATen/ops/empty_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0257340Z copying torch/include/ATen/ops/triangular_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0258670Z copying torch/include/ATen/ops/_pdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0259880Z copying torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0261250Z copying torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0262510Z copying torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0264130Z copying torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0265450Z copying torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0266740Z copying torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0268120Z copying torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0269480Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0270810Z copying torch/include/ATen/ops/cumprod_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0272410Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0273860Z copying torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0275070Z copying torch/include/ATen/ops/ldexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0276560Z copying torch/include/ATen/ops/arccosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0277850Z copying torch/include/ATen/ops/linalg_matrix_rank.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0279150Z copying torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0280730Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0281980Z copying torch/include/ATen/ops/all_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0283290Z copying torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0284700Z copying torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0286260Z copying torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0287580Z copying torch/include/ATen/ops/randn_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0288910Z copying torch/include/ATen/ops/rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0290280Z copying torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0291690Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0293200Z copying torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0294800Z copying torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0295880Z copying torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0297290Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0298570Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0300100Z copying torch/include/ATen/ops/mse_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0301300Z copying torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0302410Z copying torch/include/ATen/ops/eye_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0303590Z copying torch/include/ATen/ops/special_exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0304810Z copying torch/include/ATen/ops/_fused_adamw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0306170Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0307330Z copying torch/include/ATen/ops/grid_sampler_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0308730Z copying torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0309970Z copying torch/include/ATen/ops/frac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0311130Z copying torch/include/ATen/ops/gelu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0312530Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0313620Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0314930Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0316090Z copying torch/include/ATen/ops/_pdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0317390Z copying torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0318600Z copying torch/include/ATen/ops/broadcast_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0319900Z copying torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0321060Z copying torch/include/ATen/ops/lt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0322250Z copying torch/include/ATen/ops/_chunk_cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0323540Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0324740Z copying torch/include/ATen/ops/is_distributed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0325950Z copying torch/include/ATen/ops/nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0327230Z copying torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0328430Z copying torch/include/ATen/ops/fft_irfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0329690Z copying torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0330860Z copying torch/include/ATen/ops/slice_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0332160Z copying torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0333400Z copying torch/include/ATen/ops/fft_fftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0334650Z copying torch/include/ATen/ops/_fused_adagrad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0335920Z copying torch/include/ATen/ops/all_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0337130Z copying torch/include/ATen/ops/quantized_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0338430Z copying torch/include/ATen/ops/eye_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0339810Z copying torch/include/ATen/ops/hypot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0340740Z copying torch/include/ATen/ops/sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0341970Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0343210Z copying torch/include/ATen/ops/set_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0344430Z copying torch/include/ATen/ops/linalg_vecdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0345830Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0346910Z copying torch/include/ATen/ops/acosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0348170Z copying torch/include/ATen/ops/_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0349610Z copying torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0350740Z copying torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0351910Z copying torch/include/ATen/ops/_foreach_sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0353100Z copying torch/include/ATen/ops/moveaxis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0354270Z copying torch/include/ATen/ops/positive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0355600Z copying torch/include/ATen/ops/sum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0356840Z copying torch/include/ATen/ops/asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0358110Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0359440Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0360610Z copying torch/include/ATen/ops/new_empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0361940Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0363100Z copying torch/include/ATen/ops/any_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0364420Z copying torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0365740Z copying torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0366910Z copying torch/include/ATen/ops/_propagate_xla_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0368160Z copying torch/include/ATen/ops/cudnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0369340Z copying torch/include/ATen/ops/_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0370610Z copying torch/include/ATen/ops/_foreach_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0371780Z copying torch/include/ATen/ops/_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0373060Z copying torch/include/ATen/ops/is_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0374240Z copying torch/include/ATen/ops/flatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0375490Z copying torch/include/ATen/ops/_to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0376770Z copying torch/include/ATen/ops/bitwise_or_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0377920Z copying torch/include/ATen/ops/bincount_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0379080Z copying torch/include/ATen/ops/dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0380290Z copying torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0381780Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0383060Z copying torch/include/ATen/ops/linspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0384130Z copying torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0385400Z copying torch/include/ATen/ops/nanmedian.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0386690Z copying torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0387970Z copying torch/include/ATen/ops/diagonal_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0389170Z copying torch/include/ATen/ops/sgn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0390420Z copying torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0391600Z copying torch/include/ATen/ops/topk_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0392800Z copying torch/include/ATen/ops/flip_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0394070Z copying torch/include/ATen/ops/any_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0395460Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0396640Z copying torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0397880Z copying torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0399140Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0400350Z copying torch/include/ATen/ops/where_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0401550Z copying torch/include/ATen/ops/_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0402800Z copying torch/include/ATen/ops/igamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0404140Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0405370Z copying torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0406590Z copying torch/include/ATen/ops/fft_ihfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0407810Z copying torch/include/ATen/ops/kl_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0409160Z copying torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0410380Z copying torch/include/ATen/ops/_mps_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0411550Z copying torch/include/ATen/ops/hardsigmoid_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0412850Z copying torch/include/ATen/ops/values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0414010Z copying torch/include/ATen/ops/resize_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0415230Z copying torch/include/ATen/ops/bucketize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0416530Z copying torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0417590Z copying torch/include/ATen/ops/_linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0418920Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0420140Z copying torch/include/ATen/ops/argmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0421270Z copying torch/include/ATen/ops/any_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0422530Z copying torch/include/ATen/ops/vsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0423710Z copying torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0424950Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0426240Z copying torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0427470Z copying torch/include/ATen/ops/_mps_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0428700Z copying torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0430010Z copying torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0431530Z copying torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0432840Z copying torch/include/ATen/ops/special_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0434060Z copying torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0435270Z copying torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0436610Z copying torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0437820Z copying torch/include/ATen/ops/put_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0439120Z copying torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0440510Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0441810Z copying torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0442910Z copying torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0444120Z copying torch/include/ATen/ops/atan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0445520Z copying torch/include/ATen/ops/acos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0446620Z copying torch/include/ATen/ops/log10_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0447930Z copying torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0449170Z copying torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0450460Z copying torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0451590Z copying torch/include/ATen/ops/binomial.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0452860Z copying torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0454040Z copying torch/include/ATen/ops/linalg_qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0455300Z copying torch/include/ATen/ops/ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0456540Z copying torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0457720Z copying torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0459130Z copying torch/include/ATen/ops/index_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0460160Z copying torch/include/ATen/ops/norm_except_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0461350Z copying torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0462650Z copying torch/include/ATen/ops/miopen_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0464300Z copying torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0465610Z copying torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0466830Z copying torch/include/ATen/ops/transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0468110Z copying torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0469620Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0470770Z copying torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0472090Z copying torch/include/ATen/ops/cholesky_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0473380Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0474780Z copying torch/include/ATen/ops/embedding_renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0476030Z copying torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0477270Z copying torch/include/ATen/ops/hardsigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0478620Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0480160Z copying torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0481190Z copying torch/include/ATen/ops/remainder_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0482460Z copying torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0483670Z copying torch/include/ATen/ops/deg2rad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0484910Z copying torch/include/ATen/ops/glu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0486190Z copying torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0487480Z copying torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0488710Z copying torch/include/ATen/ops/zero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0490000Z copying torch/include/ATen/ops/is_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0491160Z copying torch/include/ATen/ops/floor_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0492440Z copying torch/include/ATen/ops/soft_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0493700Z copying torch/include/ATen/ops/addr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0494970Z copying torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0496130Z copying torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0497460Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0498730Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0499940Z copying torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0501060Z copying torch/include/ATen/ops/corrcoef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0502250Z copying torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0503610Z copying torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0504940Z copying torch/include/ATen/ops/special_gammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0506390Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0507410Z copying torch/include/ATen/ops/erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0508630Z copying torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0510000Z copying torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0511030Z copying torch/include/ATen/ops/_foreach_asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0512360Z copying torch/include/ATen/ops/_fused_adam.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0513500Z copying torch/include/ATen/ops/zeros_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0514850Z copying torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0515980Z copying torch/include/ATen/ops/reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0517240Z copying torch/include/ATen/ops/_foreach_cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0518520Z copying torch/include/ATen/ops/lt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0519800Z copying torch/include/ATen/ops/slow_conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0521090Z copying torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0522220Z copying torch/include/ATen/ops/gt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0523530Z copying torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0525010Z copying torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0526150Z copying torch/include/ATen/ops/replication_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0527440Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0528760Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0529990Z copying torch/include/ATen/ops/unbind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0531230Z copying torch/include/ATen/ops/scatter_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0532380Z copying torch/include/ATen/ops/unique_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0533630Z copying torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0534960Z copying torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0536160Z copying torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0537250Z copying torch/include/ATen/ops/linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0538590Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0539980Z copying torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0541120Z copying torch/include/ATen/ops/geometric_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0542410Z copying torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0543690Z copying torch/include/ATen/ops/lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0544920Z copying torch/include/ATen/ops/_foreach_cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0546030Z copying torch/include/ATen/ops/max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0547200Z copying torch/include/ATen/ops/outer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0548480Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0549680Z copying torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0551070Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0552240Z copying torch/include/ATen/ops/_fused_rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0553540Z copying torch/include/ATen/ops/topk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0554720Z copying torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0556260Z copying torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0557610Z copying torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0558820Z copying torch/include/ATen/ops/_cast_Short_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0560020Z copying torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0561400Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0562800Z copying torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0563990Z copying torch/include/ATen/ops/batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0565200Z copying torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0566460Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0567780Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0569260Z copying torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0570270Z copying torch/include/ATen/ops/empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0571510Z copying torch/include/ATen/ops/q_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0572750Z copying torch/include/ATen/ops/lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0573920Z copying torch/include/ATen/ops/stft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0575120Z copying torch/include/ATen/ops/_sparse_mask_projection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0576340Z copying torch/include/ATen/ops/aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0577710Z copying torch/include/ATen/ops/_trilinear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0578900Z copying torch/include/ATen/ops/mse_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0580180Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0581470Z copying torch/include/ATen/ops/affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0582740Z copying torch/include/ATen/ops/sinc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0584090Z copying torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0585250Z copying torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0586430Z copying torch/include/ATen/ops/nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0587920Z copying torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0589400Z copying torch/include/ATen/ops/quantize_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0590870Z copying torch/include/ATen/ops/avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0592200Z copying torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0593500Z copying torch/include/ATen/ops/random_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0594790Z copying torch/include/ATen/ops/repeat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0596200Z copying torch/include/ATen/ops/fractional_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0597500Z copying torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0598930Z copying torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0600270Z copying torch/include/ATen/ops/output_nr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0601560Z copying torch/include/ATen/ops/slow_conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0602840Z copying torch/include/ATen/ops/not_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0604140Z copying torch/include/ATen/ops/cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0605300Z copying torch/include/ATen/ops/meshgrid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0606500Z copying torch/include/ATen/ops/_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0607800Z copying torch/include/ATen/ops/sym_storage_offset_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0609000Z copying torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0610210Z copying torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0611390Z copying torch/include/ATen/ops/unsqueeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0612770Z copying torch/include/ATen/ops/rand_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0613970Z copying torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0615240Z copying torch/include/ATen/ops/mse_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0616550Z copying torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0618100Z copying torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0619180Z copying torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0620430Z copying torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0621590Z copying torch/include/ATen/ops/float_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0622950Z copying torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0624330Z copying torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0625750Z copying torch/include/ATen/ops/slow_conv_dilated3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0626940Z copying torch/include/ATen/ops/maximum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0628330Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0629630Z copying torch/include/ATen/ops/multi_margin_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0630860Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0632210Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0633410Z copying torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0634570Z copying torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0635750Z copying torch/include/ATen/ops/cosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0637080Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0638120Z copying torch/include/ATen/ops/asinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0639460Z copying torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0640660Z copying torch/include/ATen/ops/tanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0641980Z copying torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0643050Z copying torch/include/ATen/ops/_masked_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0644470Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0645670Z copying torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0646780Z copying torch/include/ATen/ops/diff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0647970Z copying torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0649240Z copying torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0650570Z copying torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0651940Z copying torch/include/ATen/ops/eye_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0652850Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0654040Z copying torch/include/ATen/ops/reflection_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0655270Z copying torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0656610Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0657800Z copying torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0658950Z copying torch/include/ATen/ops/sym_storage_offset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0660320Z copying torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0661420Z copying torch/include/ATen/ops/fmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0662630Z copying torch/include/ATen/ops/pixel_unshuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0663880Z copying torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0665050Z copying torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0666250Z copying torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0667440Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0668820Z copying torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0669890Z copying torch/include/ATen/ops/and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0671090Z copying torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0672360Z copying torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0673530Z copying torch/include/ATen/ops/replication_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0674750Z copying torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0675880Z copying torch/include/ATen/ops/gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0677080Z copying torch/include/ATen/ops/logaddexp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0678370Z copying torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0679660Z copying torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0680740Z copying torch/include/ATen/ops/searchsorted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0681990Z copying torch/include/ATen/ops/addmv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0683310Z copying torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0684410Z copying torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0685680Z copying torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0686860Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0688040Z copying torch/include/ATen/ops/clamp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0689340Z copying torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0690520Z copying torch/include/ATen/ops/hann_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0691740Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0693030Z copying torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0694200Z copying torch/include/ATen/ops/log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0695420Z copying torch/include/ATen/ops/_cast_Int.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0696620Z copying torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0697940Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0699040Z copying torch/include/ATen/ops/erf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0700180Z copying torch/include/ATen/ops/as_strided_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0701360Z copying torch/include/ATen/ops/_flash_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0702580Z copying torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0703870Z copying torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0704960Z copying torch/include/ATen/ops/isneginf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0706200Z copying torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0707530Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0708600Z copying torch/include/ATen/ops/concatenate_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0709800Z copying torch/include/ATen/ops/bitwise_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0711140Z copying torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0712300Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0713410Z copying torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0714530Z copying torch/include/ATen/ops/argmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0715730Z copying torch/include/ATen/ops/_index_put_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0716970Z copying torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0718080Z copying torch/include/ATen/ops/erfc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0719400Z copying torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0720560Z copying torch/include/ATen/ops/lstm_mps_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0721710Z copying torch/include/ATen/ops/range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0722910Z copying torch/include/ATen/ops/select_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0724100Z copying torch/include/ATen/ops/_foreach_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0725450Z copying torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0726670Z copying torch/include/ATen/ops/sparse_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0727770Z copying torch/include/ATen/ops/mkldnn_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0728930Z copying torch/include/ATen/ops/sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0730160Z copying torch/include/ATen/ops/_conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0731390Z copying torch/include/ATen/ops/square_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0732590Z copying torch/include/ATen/ops/copysign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0733730Z copying torch/include/ATen/ops/amin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0735110Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0736350Z copying torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0737540Z copying torch/include/ATen/ops/margin_ranking_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0738860Z copying torch/include/ATen/ops/special_psi_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0740160Z copying torch/include/ATen/ops/special_ndtri_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0741220Z copying torch/include/ATen/ops/to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0742520Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0743790Z copying torch/include/ATen/ops/_foreach_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0745000Z copying torch/include/ATen/ops/selu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0746160Z copying torch/include/ATen/ops/_cdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0747540Z copying torch/include/ATen/ops/log_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0748810Z copying torch/include/ATen/ops/range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0750390Z copying torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0751570Z copying torch/include/ATen/ops/linalg_solve_triangular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0752870Z copying torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0754120Z copying torch/include/ATen/ops/cov.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0755470Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0756620Z copying torch/include/ATen/ops/relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0757790Z copying torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0759100Z copying torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0760270Z copying torch/include/ATen/ops/min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0761690Z copying torch/include/ATen/ops/chain_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0762830Z copying torch/include/ATen/ops/tile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0764120Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0765380Z copying torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0767540Z copying torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0768780Z copying torch/include/ATen/ops/unique_dim_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0770160Z copying torch/include/ATen/ops/is_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0771450Z copying torch/include/ATen/ops/_prelu_kernel_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0772900Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0774090Z copying torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0775420Z copying torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0776920Z copying torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0778170Z copying torch/include/ATen/ops/slice_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0779370Z copying torch/include/ATen/ops/_test_parallel_materialize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0780650Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0782020Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0783340Z copying torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0784820Z copying torch/include/ATen/ops/int_repr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0786030Z copying torch/include/ATen/ops/ne_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0787320Z copying torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0788530Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0789790Z copying torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0791000Z copying torch/include/ATen/ops/_foreach_mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0792490Z copying torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0793930Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0795100Z copying torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0796370Z copying torch/include/ATen/ops/upsample_linear1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0797790Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0799140Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0800780Z copying torch/include/ATen/ops/fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0802370Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0803630Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0804980Z copying torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0806280Z copying torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0807630Z copying torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0809330Z copying torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0810510Z copying torch/include/ATen/ops/lcm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0811780Z copying torch/include/ATen/ops/argwhere_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0813240Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0814300Z copying torch/include/ATen/ops/_foreach_frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0815510Z copying torch/include/ATen/ops/orgqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0816890Z copying torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0818320Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0819570Z copying torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0820850Z copying torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0822120Z copying torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0823310Z copying torch/include/ATen/ops/crow_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0824590Z copying torch/include/ATen/ops/fft_ihfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0825850Z copying torch/include/ATen/ops/put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0827210Z copying torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0828460Z copying torch/include/ATen/ops/std_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0829850Z copying torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0831050Z copying torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0832390Z copying torch/include/ATen/ops/lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0833760Z copying torch/include/ATen/ops/clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0834720Z copying torch/include/ATen/ops/_int_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0835860Z copying torch/include/ATen/ops/var_mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0837150Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0838410Z copying torch/include/ATen/ops/arctan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0839650Z copying torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0840730Z copying torch/include/ATen/ops/div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0841950Z copying torch/include/ATen/ops/round_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0843350Z copying torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0844420Z copying torch/include/ATen/ops/hypot_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0845680Z copying torch/include/ATen/ops/nll_loss2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0851700Z copying torch/include/ATen/ops/to_mkldnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0852020Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0852290Z copying torch/include/ATen/ops/empty_permuted_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0852650Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0852980Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0853930Z copying torch/include/ATen/ops/lt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0855200Z copying torch/include/ATen/ops/linalg_householder_product_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0856370Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0857580Z copying torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0858870Z copying torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0860130Z copying torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0861320Z copying torch/include/ATen/ops/slice_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0862650Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0863890Z copying torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0865060Z copying torch/include/ATen/ops/_nnz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0866360Z copying torch/include/ATen/ops/grid_sampler_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0867680Z copying torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0868930Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0870090Z copying torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0871330Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0872610Z copying torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0873840Z copying torch/include/ATen/ops/hamming_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0875030Z copying torch/include/ATen/ops/nll_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0876320Z copying torch/include/ATen/ops/zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0877600Z copying torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0878770Z copying torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0879950Z copying torch/include/ATen/ops/_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0881160Z copying torch/include/ATen/ops/special_bessel_j1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0882370Z copying torch/include/ATen/ops/conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0883900Z copying torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0884980Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0886230Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0887470Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0888580Z copying torch/include/ATen/ops/chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0890030Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0891160Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0892300Z copying torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0893530Z copying torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0894800Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0896110Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0897200Z copying torch/include/ATen/ops/split_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0898430Z copying torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0899580Z copying torch/include/ATen/ops/topk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0900920Z copying torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0902090Z copying torch/include/ATen/ops/sym_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0903350Z copying torch/include/ATen/ops/leaky_relu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0904520Z copying torch/include/ATen/ops/mish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0905660Z copying torch/include/ATen/ops/_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0907170Z copying torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0908330Z copying torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0909560Z copying torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0910690Z copying torch/include/ATen/ops/sym_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0912190Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0913370Z copying torch/include/ATen/ops/log_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0914590Z copying torch/include/ATen/ops/_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0915870Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0917140Z copying torch/include/ATen/ops/_logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0918330Z copying torch/include/ATen/ops/pow_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0919650Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0920810Z copying torch/include/ATen/ops/_foreach_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0922240Z copying torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0923420Z copying torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0924630Z copying torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0925720Z copying torch/include/ATen/ops/silu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0926970Z copying torch/include/ATen/ops/asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0928200Z copying torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0929360Z copying torch/include/ATen/ops/_spsolve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0930630Z copying torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0931890Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0933180Z copying torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0934300Z copying torch/include/ATen/ops/sspaddmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0935580Z copying torch/include/ATen/ops/maximum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0936810Z copying torch/include/ATen/ops/_batch_norm_impl_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0938070Z copying torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0939230Z copying torch/include/ATen/ops/linalg_eigh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0940560Z copying torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0941780Z copying torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0943000Z copying torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0944280Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0945380Z copying torch/include/ATen/ops/_cummax_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0946700Z copying torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0948090Z copying torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0949250Z copying torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0950500Z copying torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0951820Z copying torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0953050Z copying torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0954240Z copying torch/include/ATen/ops/_cast_Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0955680Z copying torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0957040Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0958240Z copying torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0959510Z copying torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0960710Z copying torch/include/ATen/ops/fmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0961960Z copying torch/include/ATen/ops/_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0963160Z copying torch/include/ATen/ops/addr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0964480Z copying torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0965690Z copying torch/include/ATen/ops/not_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0966920Z copying torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0968090Z copying torch/include/ATen/ops/special_exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0969660Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0970810Z copying torch/include/ATen/ops/special_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0972160Z copying torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0973350Z copying torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0974660Z copying torch/include/ATen/ops/view_as_complex_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0975830Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0977120Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0978380Z copying torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0979650Z copying torch/include/ATen/ops/special_bessel_j1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0980980Z copying torch/include/ATen/ops/_unsafe_index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0982440Z copying torch/include/ATen/ops/row_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0983710Z copying torch/include/ATen/ops/multiply_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0985170Z copying torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0986390Z copying torch/include/ATen/ops/_dim_arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0987890Z copying torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0989110Z copying torch/include/ATen/ops/to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0990590Z copying torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0992000Z copying torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0993710Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0994980Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0996170Z copying torch/include/ATen/ops/equal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0997540Z copying torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0998690Z copying torch/include/ATen/ops/xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.0999920Z copying torch/include/ATen/ops/special_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1001090Z copying torch/include/ATen/ops/scatter_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1002470Z copying torch/include/ATen/ops/slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1003780Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1005050Z copying torch/include/ATen/ops/std_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1006350Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1007650Z copying torch/include/ATen/ops/_foreach_log1p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1008820Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1010230Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1011500Z copying torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1012830Z copying torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1013930Z copying torch/include/ATen/ops/hspmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1015290Z copying torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1016580Z copying torch/include/ATen/ops/take_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1017950Z copying torch/include/ATen/ops/segment_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1019290Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1020550Z copying torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1021780Z copying torch/include/ATen/ops/squeeze_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1023270Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1024400Z copying torch/include/ATen/ops/less_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1025650Z copying torch/include/ATen/ops/_shape_as_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1026790Z copying torch/include/ATen/ops/mv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1028230Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1029450Z copying torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1030710Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1031910Z copying torch/include/ATen/ops/threshold_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1033270Z copying torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1034570Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1035810Z copying torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1037080Z copying torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1038310Z copying torch/include/ATen/ops/cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1039590Z copying torch/include/ATen/ops/swapdims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1040800Z copying torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1042150Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1043360Z copying torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1044560Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1045700Z copying torch/include/ATen/ops/rnn_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1047020Z copying torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1048210Z copying torch/include/ATen/ops/special_multigammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1049620Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1050760Z copying torch/include/ATen/ops/amax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1052170Z copying torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1053260Z copying torch/include/ATen/ops/to_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1054610Z copying torch/include/ATen/ops/reflection_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1055810Z copying torch/include/ATen/ops/nan_to_num_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1057160Z copying torch/include/ATen/ops/_cummin_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1058460Z copying torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1059850Z copying torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1061060Z copying torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1062310Z copying torch/include/ATen/ops/log10_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1063530Z copying torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1064990Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1066670Z copying torch/include/ATen/ops/bitwise_left_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1067440Z copying torch/include/ATen/ops/_pad_circular_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1068700Z copying torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1069940Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1071240Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1072490Z copying torch/include/ATen/ops/frobenius_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1073630Z copying torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1074780Z copying torch/include/ATen/ops/rsub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1075970Z copying torch/include/ATen/ops/linalg_qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1077250Z copying torch/include/ATen/ops/slow_conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1078410Z copying torch/include/ATen/ops/_linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1079760Z copying torch/include/ATen/ops/tanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1080980Z copying torch/include/ATen/ops/_foreach_lgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1082310Z copying torch/include/ATen/ops/isin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1083450Z copying torch/include/ATen/ops/ne_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1084750Z copying torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1085950Z copying torch/include/ATen/ops/multinomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1087100Z copying torch/include/ATen/ops/_foreach_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1088280Z copying torch/include/ATen/ops/tan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1089520Z copying torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1090770Z copying torch/include/ATen/ops/new_empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1092040Z copying torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1093290Z copying torch/include/ATen/ops/all_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1094450Z copying torch/include/ATen/ops/rms_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1095600Z copying torch/include/ATen/ops/to_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1096840Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1098040Z copying torch/include/ATen/ops/flip_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1099170Z copying torch/include/ATen/ops/svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1100340Z copying torch/include/ATen/ops/mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1101610Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1102810Z copying torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1103920Z copying torch/include/ATen/ops/special_polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1105140Z copying torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1106360Z copying torch/include/ATen/ops/log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1107490Z copying torch/include/ATen/ops/special_i1e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1108760Z copying torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1109890Z copying torch/include/ATen/ops/squeeze_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1111060Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1112420Z copying torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1113580Z copying torch/include/ATen/ops/is_leaf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1114810Z copying torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1116030Z copying torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1117250Z copying torch/include/ATen/ops/broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1118460Z copying torch/include/ATen/ops/_nested_get_lengths_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1119720Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1120930Z copying torch/include/ATen/ops/tril_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1122130Z copying torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1123450Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1124630Z copying torch/include/ATen/ops/randint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1125710Z copying torch/include/ATen/ops/slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1127020Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1128190Z copying torch/include/ATen/ops/_foreach_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1129450Z copying torch/include/ATen/ops/_functional_assert_scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1130630Z copying torch/include/ATen/ops/_lazy_clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1131910Z copying torch/include/ATen/ops/mps_convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1133150Z copying torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1134350Z copying torch/include/ATen/ops/equal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1135510Z copying torch/include/ATen/ops/empty_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1136740Z copying torch/include/ATen/ops/special_digamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1137970Z copying torch/include/ATen/ops/fractional_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1139230Z copying torch/include/ATen/ops/unfold_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1140440Z copying torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1141650Z copying torch/include/ATen/ops/all_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1142860Z copying torch/include/ATen/ops/cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1144090Z copying torch/include/ATen/ops/_convolution_double_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1145230Z copying torch/include/ATen/ops/gelu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1146470Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1147660Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1148850Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1150060Z copying torch/include/ATen/ops/fmin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1151160Z copying torch/include/ATen/ops/log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1152360Z copying torch/include/ATen/ops/less.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1153540Z copying torch/include/ATen/ops/tensordot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1154840Z copying torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1155980Z copying torch/include/ATen/ops/_sample_dirichlet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1157320Z copying torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1158560Z copying torch/include/ATen/ops/log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1159720Z copying torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1160870Z copying torch/include/ATen/ops/linalg_cholesky_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1161980Z copying torch/include/ATen/ops/div_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1163320Z copying torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1164500Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1165700Z copying torch/include/ATen/ops/nll_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1166950Z copying torch/include/ATen/ops/bitwise_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1168140Z copying torch/include/ATen/ops/_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1169360Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1170560Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1171780Z copying torch/include/ATen/ops/slow_conv_dilated2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1173100Z copying torch/include/ATen/ops/_foreach_acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1174270Z copying torch/include/ATen/ops/gradient_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1175440Z copying torch/include/ATen/ops/conv_transpose1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1176620Z copying torch/include/ATen/ops/or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1177880Z copying torch/include/ATen/ops/smooth_l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1179100Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1180250Z copying torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1181490Z copying torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1183050Z copying torch/include/ATen/ops/median_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1184070Z copying torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1185270Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1186490Z copying torch/include/ATen/ops/atleast_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1187620Z copying torch/include/ATen/ops/_chunk_cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1188890Z copying torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1190040Z copying torch/include/ATen/ops/im2col.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1191320Z copying torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1192550Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1193780Z copying torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1194980Z copying torch/include/ATen/ops/_mps_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1196310Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1197490Z copying torch/include/ATen/ops/retains_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1198850Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1200010Z copying torch/include/ATen/ops/sign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1201250Z copying torch/include/ATen/ops/empty_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1202470Z copying torch/include/ATen/ops/gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1203870Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1205000Z copying torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1206200Z copying torch/include/ATen/ops/output_nr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1207360Z copying torch/include/ATen/ops/sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1208620Z copying torch/include/ATen/ops/linalg_lstsq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1209800Z copying torch/include/ATen/ops/count_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1211100Z copying torch/include/ATen/ops/feature_alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1212400Z copying torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1213570Z copying torch/include/ATen/ops/softplus_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1214830Z copying torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1216120Z copying torch/include/ATen/ops/_cummin_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1217430Z copying torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1218630Z copying torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1219900Z copying torch/include/ATen/ops/as_strided_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1221020Z copying torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1222230Z copying torch/include/ATen/ops/norm_except_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1223440Z copying torch/include/ATen/ops/sort_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1224670Z copying torch/include/ATen/ops/logit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1225890Z copying torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1227110Z copying torch/include/ATen/ops/fft_hfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1228310Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1229460Z copying torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1230660Z copying torch/include/ATen/ops/view_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1231820Z copying torch/include/ATen/ops/grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1233040Z copying torch/include/ATen/ops/linalg_lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1234280Z copying torch/include/ATen/ops/divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1235510Z copying torch/include/ATen/ops/_unsafe_masked_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1236870Z copying torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1238020Z copying torch/include/ATen/ops/is_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1239320Z copying torch/include/ATen/ops/replication_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1240560Z copying torch/include/ATen/ops/_resize_output_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1241840Z copying torch/include/ATen/ops/_fused_adamw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1243070Z copying torch/include/ATen/ops/slice_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1244380Z copying torch/include/ATen/ops/hardswish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1245590Z copying torch/include/ATen/ops/fft_ihfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1246830Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1248010Z copying torch/include/ATen/ops/values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1249300Z copying torch/include/ATen/ops/feature_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1250530Z copying torch/include/ATen/ops/resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1251820Z copying torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1252970Z copying torch/include/ATen/ops/gt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1254420Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1255520Z copying torch/include/ATen/ops/special_xlog1py_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1256820Z copying torch/include/ATen/ops/linalg_inv_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1258100Z copying torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1259290Z copying torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1260520Z copying torch/include/ATen/ops/threshold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1261700Z copying torch/include/ATen/ops/sparse_bsr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1262910Z copying torch/include/ATen/ops/max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1264110Z copying torch/include/ATen/ops/tensor_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1265290Z copying torch/include/ATen/ops/diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1266470Z copying torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1267810Z copying torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1269140Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1270340Z copying torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1271430Z copying torch/include/ATen/ops/expand_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1272700Z copying torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1273870Z copying torch/include/ATen/ops/le_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1275100Z copying torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1276440Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1277850Z copying torch/include/ATen/ops/hardshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1278740Z copying torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1279930Z copying torch/include/ATen/ops/to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1281270Z copying torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1282410Z copying torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1283550Z copying torch/include/ATen/ops/slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1284800Z copying torch/include/ATen/ops/native_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1286010Z copying torch/include/ATen/ops/hardswish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1287230Z copying torch/include/ATen/ops/lshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1288390Z copying torch/include/ATen/ops/set_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1289620Z copying torch/include/ATen/ops/_linalg_det_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1290880Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1292070Z copying torch/include/ATen/ops/tril_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1293260Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1294500Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1295710Z copying torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1296980Z copying torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1298070Z copying torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1299260Z copying torch/include/ATen/ops/sub_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1300480Z copying torch/include/ATen/ops/glu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1301720Z copying torch/include/ATen/ops/fmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1302830Z copying torch/include/ATen/ops/_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1303970Z copying torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1305130Z copying torch/include/ATen/ops/lcm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1306380Z copying torch/include/ATen/ops/atan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1307670Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1308740Z copying torch/include/ATen/ops/_unique2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1310060Z copying torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1311210Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1312370Z copying torch/include/ATen/ops/new_full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1313610Z copying torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1314820Z copying torch/include/ATen/ops/logspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1316100Z copying torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1317300Z copying torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1318470Z copying torch/include/ATen/ops/to_mkldnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1319620Z copying torch/include/ATen/ops/linalg_eigvalsh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1320910Z copying torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1322050Z copying torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1323180Z copying torch/include/ATen/ops/unsqueeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1324410Z copying torch/include/ATen/ops/isinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1325580Z copying torch/include/ATen/ops/_foreach_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1326820Z copying torch/include/ATen/ops/floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1328030Z copying torch/include/ATen/ops/where_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1329330Z copying torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1330430Z copying torch/include/ATen/ops/special_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1331720Z copying torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1332870Z copying torch/include/ATen/ops/clamp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1334240Z copying torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1335340Z copying torch/include/ATen/ops/set_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1336620Z copying torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1337790Z copying torch/include/ATen/ops/asinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1339110Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1340350Z copying torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1341550Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1342720Z copying torch/include/ATen/ops/_conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1343900Z copying torch/include/ATen/ops/_sparse_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1345140Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1346260Z copying torch/include/ATen/ops/alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1347520Z copying torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1348770Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1349940Z copying torch/include/ATen/ops/fft_fft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1351210Z copying torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1352430Z copying torch/include/ATen/ops/special_i1e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1353640Z copying torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1354810Z copying torch/include/ATen/ops/poisson.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1356010Z copying torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1357370Z copying torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1358540Z copying torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1359830Z copying torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1360950Z copying torch/include/ATen/ops/nan_to_num_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1362290Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1363550Z copying torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1364990Z copying torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1366370Z copying torch/include/ATen/ops/conj_physical_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1367540Z copying torch/include/ATen/ops/heaviside.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1368850Z copying torch/include/ATen/ops/arccosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1370220Z copying torch/include/ATen/ops/_mkldnn_reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1371580Z copying torch/include/ATen/ops/linalg_slogdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1372900Z copying torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1374200Z copying torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1375520Z copying torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1376830Z copying torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1377970Z copying torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1379230Z copying torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1380380Z copying torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1381620Z copying torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1382770Z copying torch/include/ATen/ops/_linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1384070Z copying torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1385270Z copying torch/include/ATen/ops/_coalesce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1386530Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1387780Z copying torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1388980Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1390190Z copying torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1391560Z copying torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1392760Z copying torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1393850Z copying torch/include/ATen/ops/index_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1395030Z copying torch/include/ATen/ops/equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1396230Z copying torch/include/ATen/ops/_unique2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1397480Z copying torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1398710Z copying torch/include/ATen/ops/acos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1399930Z copying torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1401140Z copying torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1402710Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1403900Z copying torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1405170Z copying torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1406430Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1407640Z copying torch/include/ATen/ops/_fw_primal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1408850Z copying torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1410100Z copying torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1411390Z copying torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1412640Z copying torch/include/ATen/ops/sum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1413880Z copying torch/include/ATen/ops/searchsorted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1415400Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1416470Z copying torch/include/ATen/ops/linalg_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1417740Z copying torch/include/ATen/ops/linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1419210Z copying torch/include/ATen/ops/bitwise_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1420400Z copying torch/include/ATen/ops/instance_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1421550Z copying torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1423160Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1424300Z copying torch/include/ATen/ops/_slow_conv2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1425530Z copying torch/include/ATen/ops/embedding_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1426760Z copying torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1427850Z copying torch/include/ATen/ops/tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1429120Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1430320Z copying torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1431560Z copying torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1432700Z copying torch/include/ATen/ops/nanmean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1433970Z copying torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1435240Z copying torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1436440Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1437730Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1438930Z copying torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1440110Z copying torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1441380Z copying torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1442550Z copying torch/include/ATen/ops/topk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1443770Z copying torch/include/ATen/ops/tanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1444950Z copying torch/include/ATen/ops/xlogy_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1446230Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1447710Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1448730Z copying torch/include/ATen/ops/softplus_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1450210Z copying torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1451030Z copying torch/include/ATen/ops/scalar_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1452270Z copying torch/include/ATen/ops/embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1453430Z copying torch/include/ATen/ops/rnn_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1454640Z copying torch/include/ATen/ops/special_i1e_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1455840Z copying torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1457030Z copying torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1458370Z copying torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1459560Z copying torch/include/ATen/ops/ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1461020Z copying torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1462170Z copying torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1463540Z copying torch/include/ATen/ops/triu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1464670Z copying torch/include/ATen/ops/count_nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1465850Z copying torch/include/ATen/ops/eq_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1467040Z copying torch/include/ATen/ops/fft_rfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1468440Z copying torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1469690Z copying torch/include/ATen/ops/hypot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1471000Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1472180Z copying torch/include/ATen/ops/feature_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1473410Z copying torch/include/ATen/ops/gelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1474810Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1476170Z copying torch/include/ATen/ops/q_per_channel_zero_points.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1477430Z copying torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1478660Z copying torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1479930Z copying torch/include/ATen/ops/isclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1481100Z copying torch/include/ATen/ops/view_as_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1482400Z copying torch/include/ATen/ops/lstm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1483500Z copying torch/include/ATen/ops/_linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1484730Z copying torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1485880Z copying torch/include/ATen/ops/kthvalue.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1487100Z copying torch/include/ATen/ops/_euclidean_dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1488300Z copying torch/include/ATen/ops/replication_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1489490Z copying torch/include/ATen/ops/sin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1490680Z copying torch/include/ATen/ops/unsafe_chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1491930Z copying torch/include/ATen/ops/_foreach_minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1493280Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1494480Z copying torch/include/ATen/ops/select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1495640Z copying torch/include/ATen/ops/clamp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1497080Z copying torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1498190Z copying torch/include/ATen/ops/_foreach_maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1499580Z copying torch/include/ATen/ops/linalg_cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1500740Z copying torch/include/ATen/ops/hamming_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1502010Z copying torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1503210Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1504620Z copying torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1505960Z copying torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1507140Z copying torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1508420Z copying torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1509810Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1511050Z copying torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1512200Z copying torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1513560Z copying torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1514840Z copying torch/include/ATen/ops/unique_consecutive_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1520370Z copying torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1520830Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1521090Z copying torch/include/ATen/ops/_neg_view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1521340Z copying torch/include/ATen/ops/trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1521640Z copying torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1522610Z copying torch/include/ATen/ops/tanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1523890Z copying torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1525160Z copying torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1526340Z copying torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1527630Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1528760Z copying torch/include/ATen/ops/avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1530130Z copying torch/include/ATen/ops/tril_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1531400Z copying torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1532530Z copying torch/include/ATen/ops/dsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1533820Z copying torch/include/ATen/ops/is_vulkan_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1535080Z copying torch/include/ATen/ops/resolve_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1536380Z copying torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1537530Z copying torch/include/ATen/ops/rad2deg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1538830Z copying torch/include/ATen/ops/_mps_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1540110Z copying torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1541330Z copying torch/include/ATen/ops/special_logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1542490Z copying torch/include/ATen/ops/_cummin_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1543950Z copying torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1545230Z copying torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1546400Z copying torch/include/ATen/ops/_foreach_addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1547720Z copying torch/include/ATen/ops/split_with_sizes_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1548810Z copying torch/include/ATen/ops/nll_loss_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1550240Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1551610Z copying torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1552560Z copying torch/include/ATen/ops/type_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1553980Z copying torch/include/ATen/ops/dot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1555060Z copying torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1556340Z copying torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1557470Z copying torch/include/ATen/ops/leaky_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1558710Z copying torch/include/ATen/ops/_masked_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1560080Z copying torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1561370Z copying torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1562390Z copying torch/include/ATen/ops/sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1563670Z copying torch/include/ATen/ops/linalg_tensorsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1564940Z copying torch/include/ATen/ops/argwhere_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1566240Z copying torch/include/ATen/ops/erfinv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1567340Z copying torch/include/ATen/ops/resolve_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1568560Z copying torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1569770Z copying torch/include/ATen/ops/_triton_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1570950Z copying torch/include/ATen/ops/alpha_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1572270Z copying torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1573480Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1574740Z copying torch/include/ATen/ops/stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1576000Z copying torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1577360Z copying torch/include/ATen/ops/col2im_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1578540Z copying torch/include/ATen/ops/lift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1579710Z copying torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1580890Z copying torch/include/ATen/ops/atan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1582080Z copying torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1583280Z copying torch/include/ATen/ops/_foreach_floor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1584490Z copying torch/include/ATen/ops/acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1585730Z copying torch/include/ATen/ops/_fused_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1587000Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1588340Z copying torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1589580Z copying torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1590670Z copying torch/include/ATen/ops/stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1591880Z copying torch/include/ATen/ops/addmv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1593190Z copying torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1594400Z copying torch/include/ATen/ops/log_normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1595560Z copying torch/include/ATen/ops/align_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1596720Z copying torch/include/ATen/ops/relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1597990Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1599260Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1600340Z copying torch/include/ATen/ops/_sample_dirichlet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1601540Z copying torch/include/ATen/ops/special_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1602740Z copying torch/include/ATen/ops/special_airy_ai_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1603970Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1605250Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1606390Z copying torch/include/ATen/ops/clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1607630Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1608850Z copying torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1610090Z copying torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1611250Z copying torch/include/ATen/ops/_to_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1612450Z copying torch/include/ATen/ops/adaptive_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1613690Z copying torch/include/ATen/ops/_nested_view_from_jagged.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1614910Z copying torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1616180Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1617490Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1618590Z copying torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1619830Z copying torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1621020Z copying torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1622230Z copying torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1623380Z copying torch/include/ATen/ops/retain_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1624560Z copying torch/include/ATen/ops/max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1625810Z copying torch/include/ATen/ops/histogramdd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1627040Z copying torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1628280Z copying torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1629490Z copying torch/include/ATen/ops/nanquantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1630810Z copying torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1631970Z copying torch/include/ATen/ops/cumsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1633160Z copying torch/include/ATen/ops/instance_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1634390Z copying torch/include/ATen/ops/scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1635630Z copying torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1636900Z copying torch/include/ATen/ops/index_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1638280Z copying torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1639430Z copying torch/include/ATen/ops/refine_names_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1640640Z copying torch/include/ATen/ops/_remove_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1641910Z copying torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1643130Z copying torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1644460Z copying torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1645570Z copying torch/include/ATen/ops/acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1646930Z copying torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1648180Z copying torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1649520Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1650850Z copying torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1652090Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1653220Z copying torch/include/ATen/ops/chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1654510Z copying torch/include/ATen/ops/_functional_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1655670Z copying torch/include/ATen/ops/arange_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1656970Z copying torch/include/ATen/ops/log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1658230Z copying torch/include/ATen/ops/unsqueeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1659350Z copying torch/include/ATen/ops/triangular_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1660550Z copying torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1661800Z copying torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1662970Z copying torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1664070Z copying torch/include/ATen/ops/renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1665280Z copying torch/include/ATen/ops/_local_scalar_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1666490Z copying torch/include/ATen/ops/absolute.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1667690Z copying torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1668970Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1670280Z copying torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1671330Z copying torch/include/ATen/ops/mT_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1672660Z copying torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1673860Z copying torch/include/ATen/ops/_amp_update_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1675240Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1676400Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1677720Z copying torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1678920Z copying torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1680130Z copying torch/include/ATen/ops/mul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1681360Z copying torch/include/ATen/ops/conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1682540Z copying torch/include/ATen/ops/rrelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1683680Z copying torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1684990Z copying torch/include/ATen/ops/unsqueeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1686380Z copying torch/include/ATen/ops/huber_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1687370Z copying torch/include/ATen/ops/renorm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1688560Z copying torch/include/ATen/ops/record_stream_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1689750Z copying torch/include/ATen/ops/promote_types_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1691200Z copying torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1692450Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1693670Z copying torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1694800Z copying torch/include/ATen/ops/linalg_vecdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1695950Z copying torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1697180Z copying torch/include/ATen/ops/rand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1698490Z copying torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1699800Z copying torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1700940Z copying torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1702160Z copying torch/include/ATen/ops/special_bessel_y1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1703400Z copying torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1704670Z copying torch/include/ATen/ops/to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1705920Z copying torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1707090Z copying torch/include/ATen/ops/_cummin_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1708260Z copying torch/include/ATen/ops/replication_pad2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1709540Z copying torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1710750Z copying torch/include/ATen/ops/detach_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1712000Z copying torch/include/ATen/ops/cauchy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1713310Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1714640Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1715810Z copying torch/include/ATen/ops/row_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1717050Z copying torch/include/ATen/ops/add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1718240Z copying torch/include/ATen/ops/unfold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1719420Z copying torch/include/ATen/ops/gelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1720760Z copying torch/include/ATen/ops/linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1722000Z copying torch/include/ATen/ops/_fused_sdp_choice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1723440Z copying torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1724530Z copying torch/include/ATen/ops/log2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1725770Z copying torch/include/ATen/ops/selu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1727040Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1728280Z copying torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1729480Z copying torch/include/ATen/ops/_foreach_frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1730690Z copying torch/include/ATen/ops/vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1731920Z copying torch/include/ATen/ops/segment_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1733060Z copying torch/include/ATen/ops/_conv_depthwise2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1734270Z copying torch/include/ATen/ops/linalg_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1735390Z copying torch/include/ATen/ops/set_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1736690Z copying torch/include/ATen/ops/alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1737830Z copying torch/include/ATen/ops/take_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1739140Z copying torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1740570Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1742000Z copying torch/include/ATen/ops/adjoint_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1743030Z copying torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1744330Z copying torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1745440Z copying torch/include/ATen/ops/convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1746730Z copying torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1748050Z copying torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1749460Z copying torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1750820Z copying torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1752200Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1753490Z copying torch/include/ATen/ops/special_sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1754880Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1756370Z copying torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1757730Z copying torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1758910Z copying torch/include/ATen/ops/_foreach_maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1760340Z copying torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1761620Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1762820Z copying torch/include/ATen/ops/special_gammaln_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1764050Z copying torch/include/ATen/ops/embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1765240Z copying torch/include/ATen/ops/silu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1766380Z copying torch/include/ATen/ops/greater_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1767730Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1768960Z copying torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1770090Z copying torch/include/ATen/ops/sort_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1771230Z copying torch/include/ATen/ops/fill_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1772540Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1773720Z copying torch/include/ATen/ops/_to_sparse_csc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1774860Z copying torch/include/ATen/ops/zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1776090Z copying torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1777250Z copying torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1778530Z copying torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1779760Z copying torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1780930Z copying torch/include/ATen/ops/fmod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1782110Z copying torch/include/ATen/ops/sigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1783450Z copying torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1784590Z copying torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1785840Z copying torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1787020Z copying torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1788320Z copying torch/include/ATen/ops/bitwise_left_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1789470Z copying torch/include/ATen/ops/arctanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1790660Z copying torch/include/ATen/ops/triu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1791910Z copying torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1793250Z copying torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1794420Z copying torch/include/ATen/ops/_nnz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1795720Z copying torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1796910Z copying torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1798100Z copying torch/include/ATen/ops/exp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1799290Z copying torch/include/ATen/ops/_lstm_mps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1800550Z copying torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1801780Z copying torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1803020Z copying torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1804060Z copying torch/include/ATen/ops/_spsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1805240Z copying torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1806440Z copying torch/include/ATen/ops/log10_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1807630Z copying torch/include/ATen/ops/flip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1809020Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1810130Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1811310Z copying torch/include/ATen/ops/roll_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1812650Z copying torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1813780Z copying torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1815020Z copying torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1816250Z copying torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1817490Z copying torch/include/ATen/ops/linalg_lu_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1818760Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1820060Z copying torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1821210Z copying torch/include/ATen/ops/round_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1822470Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1823730Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1824940Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1826150Z copying torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1827340Z copying torch/include/ATen/ops/as_strided_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1828550Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1829750Z copying torch/include/ATen/ops/_standard_gamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1830890Z copying torch/include/ATen/ops/neg_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1832210Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1833360Z copying torch/include/ATen/ops/pinverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1834670Z copying torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1835880Z copying torch/include/ATen/ops/select_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1837210Z copying torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1838370Z copying torch/include/ATen/ops/conv1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1839760Z copying torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1840970Z copying torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1842250Z copying torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1843380Z copying torch/include/ATen/ops/arccosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1844660Z copying torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1845890Z copying torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1847130Z copying torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1848310Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1849530Z copying torch/include/ATen/ops/fft_fftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1850750Z copying torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1852070Z copying torch/include/ATen/ops/_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1853230Z copying torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1854460Z copying torch/include/ATen/ops/not_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1860600Z copying torch/include/ATen/ops/prod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1861290Z copying torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1861960Z copying torch/include/ATen/ops/index_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1862510Z copying torch/include/ATen/ops/special_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1863110Z copying torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1863690Z copying torch/include/ATen/ops/mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1864300Z copying torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1865040Z copying torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1866270Z copying torch/include/ATen/ops/_convolution_mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1867600Z copying torch/include/ATen/ops/embedding_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1868960Z copying torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1870180Z copying torch/include/ATen/ops/mps_convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1871450Z copying torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1872920Z copying torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1874120Z copying torch/include/ATen/ops/special_erfcx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1875450Z copying torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1876580Z copying torch/include/ATen/ops/ge_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1878040Z copying torch/include/ATen/ops/polar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1879200Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1880390Z copying torch/include/ATen/ops/copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1881670Z copying torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1883070Z copying torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1884190Z copying torch/include/ATen/ops/data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1885410Z copying torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1886650Z copying torch/include/ATen/ops/randn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1888110Z copying torch/include/ATen/ops/nll_loss2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1889430Z copying torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1890700Z copying torch/include/ATen/ops/unbind_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1891940Z copying torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1893270Z copying torch/include/ATen/ops/eq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1894470Z copying torch/include/ATen/ops/set_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1895820Z copying torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1897000Z copying torch/include/ATen/ops/_test_functorch_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1898290Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1899550Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1900820Z copying torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1902040Z copying torch/include/ATen/ops/_fused_adagrad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1903370Z copying torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1904540Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1905790Z copying torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1907010Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1908160Z copying torch/include/ATen/ops/ger_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1909570Z copying torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1910710Z copying torch/include/ATen/ops/_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1912110Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1913270Z copying torch/include/ATen/ops/set_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1914720Z copying torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1915860Z copying torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1917110Z copying torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1918360Z copying torch/include/ATen/ops/max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1919690Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1920840Z copying torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1922170Z copying torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1923400Z copying torch/include/ATen/ops/triangular_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1924760Z copying torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1926050Z copying torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1927410Z copying torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1928260Z copying torch/include/ATen/ops/empty_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1929440Z copying torch/include/ATen/ops/cudnn_grid_sampler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1930770Z copying torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1932030Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1933320Z copying torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1934590Z copying torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1935720Z copying torch/include/ATen/ops/logical_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1937020Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1938150Z copying torch/include/ATen/ops/roll_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1939390Z copying torch/include/ATen/ops/remainder_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1940590Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1941760Z copying torch/include/ATen/ops/log10_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1943060Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1944250Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1945500Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1946590Z copying torch/include/ATen/ops/convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1947800Z copying torch/include/ATen/ops/kl_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1948980Z copying torch/include/ATen/ops/roll_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1950200Z copying torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1951450Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1952540Z copying torch/include/ATen/ops/amax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1953750Z copying torch/include/ATen/ops/multinomial_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1954920Z copying torch/include/ATen/ops/special_log_ndtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1956220Z copying torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1957370Z copying torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1958540Z copying torch/include/ATen/ops/addmv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1959780Z copying torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1960950Z copying torch/include/ATen/ops/_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1962120Z copying torch/include/ATen/ops/clone.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1963360Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1964540Z copying torch/include/ATen/ops/avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1965850Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1967170Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1968280Z copying torch/include/ATen/ops/reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1969470Z copying torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1970850Z copying torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1971930Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1973220Z copying torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1974370Z copying torch/include/ATen/ops/logical_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1975690Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1976780Z copying torch/include/ATen/ops/values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1978060Z copying torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1979310Z copying torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1980480Z copying torch/include/ATen/ops/swapdims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1981790Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1983050Z copying torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1984240Z copying torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1985430Z copying torch/include/ATen/ops/reflection_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1986790Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1988000Z copying torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1989180Z copying torch/include/ATen/ops/huber_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1990340Z copying torch/include/ATen/ops/permute_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1991680Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1992800Z copying torch/include/ATen/ops/sub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1994230Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1995230Z copying torch/include/ATen/ops/mm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1996390Z copying torch/include/ATen/ops/sinh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1997610Z copying torch/include/ATen/ops/log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.1998790Z copying torch/include/ATen/ops/glu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2000120Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2001260Z copying torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2002470Z copying torch/include/ATen/ops/logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2003680Z copying torch/include/ATen/ops/all.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2004890Z copying torch/include/ATen/ops/_foobar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2006130Z copying torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2007460Z copying torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2008550Z copying torch/include/ATen/ops/log_normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2009710Z copying torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2010890Z copying torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2012160Z copying torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2013260Z copying torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2014490Z copying torch/include/ATen/ops/mish_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2015610Z copying torch/include/ATen/ops/_rowwise_prune_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2016820Z copying torch/include/ATen/ops/_foreach_acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2018080Z copying torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2019350Z copying torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2020460Z copying torch/include/ATen/ops/size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2021770Z copying torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2022900Z copying torch/include/ATen/ops/special_erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2024050Z copying torch/include/ATen/ops/amax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2025260Z copying torch/include/ATen/ops/_foreach_lerp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2026610Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2027750Z copying torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2029000Z copying torch/include/ATen/ops/nll_loss_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2030160Z copying torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2031370Z copying torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2032600Z copying torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2033700Z copying torch/include/ATen/ops/movedim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2035050Z copying torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2036150Z copying torch/include/ATen/ops/arccos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2037470Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2038560Z copying torch/include/ATen/ops/linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2039780Z copying torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2040930Z copying torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2042110Z copying torch/include/ATen/ops/_dim_arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2043280Z copying torch/include/ATen/ops/special_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2044540Z copying torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2045690Z copying torch/include/ATen/ops/nll_loss_nd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2046930Z copying torch/include/ATen/ops/tan_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2048060Z copying torch/include/ATen/ops/_cdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2049320Z copying torch/include/ATen/ops/hardtanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2050600Z copying torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2051870Z copying torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2053030Z copying torch/include/ATen/ops/_prelu_kernel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2054230Z copying torch/include/ATen/ops/gather.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2055440Z copying torch/include/ATen/ops/_reshape_alias_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2056730Z copying torch/include/ATen/ops/logaddexp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2057900Z copying torch/include/ATen/ops/multi_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2059100Z copying torch/include/ATen/ops/_foreach_sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2060270Z copying torch/include/ATen/ops/fft_rfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2061540Z copying torch/include/ATen/ops/slow_conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2062850Z copying torch/include/ATen/ops/leaky_relu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2064010Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2065170Z copying torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2066540Z copying torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2067560Z copying torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2068800Z copying torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2069930Z copying torch/include/ATen/ops/to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2071220Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2072460Z copying torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2073780Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2074970Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2076200Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2077500Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2078670Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2079850Z copying torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2080990Z copying torch/include/ATen/ops/data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2082200Z copying torch/include/ATen/ops/matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2083410Z copying torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2084680Z copying torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2086020Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2087130Z copying torch/include/ATen/ops/gather_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2088350Z copying torch/include/ATen/ops/_cast_Long.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2089650Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2091050Z copying torch/include/ATen/ops/hardshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2092000Z copying torch/include/ATen/ops/hstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2093180Z copying torch/include/ATen/ops/miopen_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2094380Z copying torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2095580Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2096760Z copying torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2098030Z copying torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2099270Z copying torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2100500Z copying torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2101630Z copying torch/include/ATen/ops/div_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2102910Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2104070Z copying torch/include/ATen/ops/deg2rad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2105320Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2106530Z copying torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2107750Z copying torch/include/ATen/ops/triu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2108940Z copying torch/include/ATen/ops/rename_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2110330Z copying torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2111550Z copying torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2113160Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2114300Z copying torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2115580Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2116780Z copying torch/include/ATen/ops/tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2118050Z copying torch/include/ATen/ops/softshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2119460Z copying torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2120610Z copying torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2121770Z copying torch/include/ATen/ops/_rowwise_prune.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2123060Z copying torch/include/ATen/ops/rshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2124370Z copying torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2125580Z copying torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2126770Z copying torch/include/ATen/ops/arctan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2128010Z copying torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2129330Z copying torch/include/ATen/ops/_nested_tensor_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2130600Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2131880Z copying torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2133380Z copying torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2134870Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2136170Z copying torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2137430Z copying torch/include/ATen/ops/unfold_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2138860Z copying torch/include/ATen/ops/fft_rfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2140220Z copying torch/include/ATen/ops/gru.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2141570Z copying torch/include/ATen/ops/sign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2142930Z copying torch/include/ATen/ops/atleast_1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2144220Z copying torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2145430Z copying torch/include/ATen/ops/fft_ifft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2146710Z copying torch/include/ATen/ops/isneginf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2148380Z copying torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2149370Z copying torch/include/ATen/ops/nanquantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2150750Z copying torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2152010Z copying torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2153170Z copying torch/include/ATen/ops/zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2154380Z copying torch/include/ATen/ops/_nested_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2155610Z copying torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2156870Z copying torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2158130Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2159320Z copying torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2160510Z copying torch/include/ATen/ops/linalg_lu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2161770Z copying torch/include/ATen/ops/fft_irfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2163040Z copying torch/include/ATen/ops/miopen_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2164300Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2165650Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2166820Z copying torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2168020Z copying torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2169210Z copying torch/include/ATen/ops/_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2170540Z copying torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2171820Z copying torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2172980Z copying torch/include/ATen/ops/special_psi_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2174210Z copying torch/include/ATen/ops/hardswish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2175610Z copying torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2176720Z copying torch/include/ATen/ops/std_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2177960Z copying torch/include/ATen/ops/softplus_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2179120Z copying torch/include/ATen/ops/special_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2180450Z copying torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2181630Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2182950Z copying torch/include/ATen/ops/_foreach_trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2184150Z copying torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2185410Z copying torch/include/ATen/ops/bitwise_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2186590Z copying torch/include/ATen/ops/_foreach_mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2187840Z copying torch/include/ATen/ops/bartlett_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2189060Z copying torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2190540Z copying torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2191630Z copying torch/include/ATen/ops/log_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2192800Z copying torch/include/ATen/ops/minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2194000Z copying torch/include/ATen/ops/ccol_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2195360Z copying torch/include/ATen/ops/scatter_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2196590Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2197800Z copying torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2199160Z copying torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2200240Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2201360Z copying torch/include/ATen/ops/cdist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2202720Z copying torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2203960Z copying torch/include/ATen/ops/_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2205280Z copying torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2206530Z copying torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2207780Z copying torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2209230Z copying torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2210450Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2211780Z copying torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2212960Z copying torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2214180Z copying torch/include/ATen/ops/i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2215530Z copying torch/include/ATen/ops/_foreach_sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2216850Z copying torch/include/ATen/ops/native_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2218060Z copying torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2219310Z copying torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2220570Z copying torch/include/ATen/ops/flipud_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2221820Z copying torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2223280Z copying torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2224540Z copying torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2225880Z copying torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2226850Z copying torch/include/ATen/ops/erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2228120Z copying torch/include/ATen/ops/igammac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2229300Z copying torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2230640Z copying torch/include/ATen/ops/_foreach_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2231740Z copying torch/include/ATen/ops/max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2232920Z copying torch/include/ATen/ops/_cast_Char_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2234270Z copying torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2235350Z copying torch/include/ATen/ops/diag_embed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2236550Z copying torch/include/ATen/ops/_spdiags_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2237800Z copying torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2238940Z copying torch/include/ATen/ops/cov_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2240140Z copying torch/include/ATen/ops/q_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2241570Z copying torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2248260Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2248730Z copying torch/include/ATen/ops/var.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2249010Z copying torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2249280Z copying torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2249510Z copying torch/include/ATen/ops/index_put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2249770Z copying torch/include/ATen/ops/dequantize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2250050Z copying torch/include/ATen/ops/convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2251370Z copying torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2252540Z copying torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2253710Z copying torch/include/ATen/ops/special_i0e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2254910Z copying torch/include/ATen/ops/special_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2256140Z copying torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2257350Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2258530Z copying torch/include/ATen/ops/arange_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2259680Z copying torch/include/ATen/ops/logaddexp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2260900Z copying torch/include/ATen/ops/upsample_nearest3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2262200Z copying torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2263370Z copying torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2264560Z copying torch/include/ATen/ops/remainder.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2265760Z copying torch/include/ATen/ops/batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2266920Z copying torch/include/ATen/ops/repeat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2268170Z copying torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2269520Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2270610Z copying torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2271770Z copying torch/include/ATen/ops/_foreach_lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2273050Z copying torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2274380Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2275460Z copying torch/include/ATen/ops/indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2276680Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2278020Z copying torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2279200Z copying torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2280410Z copying torch/include/ATen/ops/amax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2281750Z copying torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2283010Z copying torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2284140Z copying torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2285360Z copying torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2286540Z copying torch/include/ATen/ops/_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2287740Z copying torch/include/ATen/ops/histc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2289030Z copying torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2290200Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2291400Z copying torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2292610Z copying torch/include/ATen/ops/fft_hfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2293960Z copying torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2295110Z copying torch/include/ATen/ops/to_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2296250Z copying torch/include/ATen/ops/fft_fft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2297570Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2298720Z copying torch/include/ATen/ops/requires_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2299830Z copying torch/include/ATen/ops/gradient.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2301040Z copying torch/include/ATen/ops/fft_ihfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2302330Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2304770Z copying torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2305170Z copying torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2306260Z copying torch/include/ATen/ops/view_as_real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2307080Z copying torch/include/ATen/ops/copysign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2308220Z copying torch/include/ATen/ops/values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2309430Z copying torch/include/ATen/ops/_prelu_kernel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2310560Z copying torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2311740Z copying torch/include/ATen/ops/upsample_linear1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2312970Z copying torch/include/ATen/ops/_add_batch_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2314240Z copying torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2315330Z copying torch/include/ATen/ops/mH_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2316560Z copying torch/include/ATen/ops/lift_fresh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2317790Z copying torch/include/ATen/ops/ne_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2319050Z copying torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2320210Z copying torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2321420Z copying torch/include/ATen/ops/special_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2322580Z copying torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2323760Z copying torch/include/ATen/ops/_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2325050Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2326380Z copying torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2327490Z copying torch/include/ATen/ops/unsafe_chunk_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2328770Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2330080Z copying torch/include/ATen/ops/native_channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2331300Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2332500Z copying torch/include/ATen/ops/addmv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2333680Z copying torch/include/ATen/ops/rshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2334950Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2336110Z copying torch/include/ATen/ops/special_erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2337400Z copying torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2338570Z copying torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2339790Z copying torch/include/ATen/ops/_sparse_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2340930Z copying torch/include/ATen/ops/select_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2342290Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2343670Z copying torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2344620Z copying torch/include/ATen/ops/huber_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2345880Z copying torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2347240Z copying torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2348470Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2349640Z copying torch/include/ATen/ops/true_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2351000Z copying torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2352220Z copying torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2353430Z copying torch/include/ATen/ops/ccol_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2354590Z copying torch/include/ATen/ops/addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2355870Z copying torch/include/ATen/ops/_fused_adagrad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2357090Z copying torch/include/ATen/ops/erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2358360Z copying torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2359760Z copying torch/include/ATen/ops/resolve_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2360870Z copying torch/include/ATen/ops/quantized_gru_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2362240Z copying torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2363420Z copying torch/include/ATen/ops/_foreach_erfc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2364640Z copying torch/include/ATen/ops/glu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2365900Z copying torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2367190Z copying torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2368360Z copying torch/include/ATen/ops/cosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2369700Z copying torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2370880Z copying torch/include/ATen/ops/nll_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2372150Z copying torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2373300Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2374450Z copying torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2375680Z copying torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2376880Z copying torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2378110Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2379410Z copying torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2380480Z copying torch/include/ATen/ops/fmod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2381860Z copying torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2382990Z copying torch/include/ATen/ops/inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2384260Z copying torch/include/ATen/ops/_foreach_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2385470Z copying torch/include/ATen/ops/to_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2386760Z copying torch/include/ATen/ops/rshift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2388120Z copying torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2389180Z copying torch/include/ATen/ops/item.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2390510Z copying torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2391870Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2392960Z copying torch/include/ATen/ops/hypot_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2394170Z copying torch/include/ATen/ops/_foreach_zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2395410Z copying torch/include/ATen/ops/zeros_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2396690Z copying torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2397950Z copying torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2399150Z copying torch/include/ATen/ops/to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2400500Z copying torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2401790Z copying torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2402820Z copying torch/include/ATen/ops/nll_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2404120Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2405360Z copying torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2406540Z copying torch/include/ATen/ops/sgn_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2407820Z copying torch/include/ATen/ops/replication_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2409060Z copying torch/include/ATen/ops/linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2410320Z copying torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2411490Z copying torch/include/ATen/ops/lu_unpack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2412720Z copying torch/include/ATen/ops/fmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2414040Z copying torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2415300Z copying torch/include/ATen/ops/linalg_vector_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2416550Z copying torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2417860Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2419080Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2420270Z copying torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2421560Z copying torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2422830Z copying torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2424040Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2425300Z copying torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2426420Z copying torch/include/ATen/ops/matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2427600Z copying torch/include/ATen/ops/sgn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2428760Z copying torch/include/ATen/ops/ne_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2430020Z copying torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2431170Z copying torch/include/ATen/ops/split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2432440Z copying torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2433580Z copying torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2434860Z copying torch/include/ATen/ops/silu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2436090Z copying torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2437300Z copying torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2438460Z copying torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2439700Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2441040Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2442180Z copying torch/include/ATen/ops/frac_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2443380Z copying torch/include/ATen/ops/less_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2444540Z copying torch/include/ATen/ops/rrelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2445800Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2446930Z copying torch/include/ATen/ops/rnn_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2448190Z copying torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2449500Z copying torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2450630Z copying torch/include/ATen/ops/mean_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2451790Z copying torch/include/ATen/ops/new_empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2453030Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2454170Z copying torch/include/ATen/ops/pow_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2455360Z copying torch/include/ATen/ops/channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2456570Z copying torch/include/ATen/ops/log_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2457820Z copying torch/include/ATen/ops/unique_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2459040Z copying torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2460250Z copying torch/include/ATen/ops/alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2461490Z copying torch/include/ATen/ops/_foreach_abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2462750Z copying torch/include/ATen/ops/replication_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2463930Z copying torch/include/ATen/ops/kaiser_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2465310Z copying torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2466480Z copying torch/include/ATen/ops/nansum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2467630Z copying torch/include/ATen/ops/threshold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2468880Z copying torch/include/ATen/ops/soft_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2470070Z copying torch/include/ATen/ops/det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2471330Z copying torch/include/ATen/ops/_foreach_sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2472550Z copying torch/include/ATen/ops/addr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2473890Z copying torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2475100Z copying torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2476420Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2477640Z copying torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2478870Z copying torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2480070Z copying torch/include/ATen/ops/prelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2481380Z copying torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2482620Z copying torch/include/ATen/ops/grid_sampler_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2483790Z copying torch/include/ATen/ops/_cslt_compress_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2485100Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2486240Z copying torch/include/ATen/ops/_foreach_ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2487730Z copying torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2488560Z copying torch/include/ATen/ops/fmod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2489920Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2491070Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2492280Z copying torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2493490Z copying torch/include/ATen/ops/logical_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2494660Z copying torch/include/ATen/ops/crow_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2495890Z copying torch/include/ATen/ops/logspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2497230Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2498550Z copying torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2499710Z copying torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2500950Z copying torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2502100Z copying torch/include/ATen/ops/lift_fresh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2503440Z copying torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2504680Z copying torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2505840Z copying torch/include/ATen/ops/sym_stride_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2507110Z copying torch/include/ATen/ops/isreal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2508330Z copying torch/include/ATen/ops/unbind_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2509530Z copying torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2510670Z copying torch/include/ATen/ops/_pad_enum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2511910Z copying torch/include/ATen/ops/equal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2513260Z copying torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2514640Z copying torch/include/ATen/ops/mse_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2516300Z copying torch/include/ATen/ops/_addmm_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2517560Z copying torch/include/ATen/ops/pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2518930Z copying torch/include/ATen/ops/max_unpool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2520390Z copying torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2521650Z copying torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2522990Z copying torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2524310Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2525560Z copying torch/include/ATen/ops/einsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2526980Z copying torch/include/ATen/ops/_ctc_loss_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2528090Z copying torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2529580Z copying torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2530460Z copying torch/include/ATen/ops/is_conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2531690Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2533040Z copying torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2534150Z copying torch/include/ATen/ops/permute_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2535470Z copying torch/include/ATen/ops/multiply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2536750Z copying torch/include/ATen/ops/batch_norm_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2538000Z copying torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2539100Z copying torch/include/ATen/ops/silu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2540500Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2541890Z copying torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2542980Z copying torch/include/ATen/ops/trapezoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2544300Z copying torch/include/ATen/ops/prelu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2545440Z copying torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2546600Z copying torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2547750Z copying torch/include/ATen/ops/q_zero_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2549010Z copying torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2550370Z copying torch/include/ATen/ops/isfinite_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2551510Z copying torch/include/ATen/ops/masked_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2552750Z copying torch/include/ATen/ops/sparse_resize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2553930Z copying torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2555460Z copying torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2556670Z copying torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2557770Z copying torch/include/ATen/ops/addcdiv_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2559130Z copying torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2560390Z copying torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2561570Z copying torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2562880Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2564080Z copying torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2565600Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2566670Z copying torch/include/ATen/ops/_nested_from_padded_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2567820Z copying torch/include/ATen/ops/isin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2569250Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2570480Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2571870Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2573050Z copying torch/include/ATen/ops/linalg_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2574420Z copying torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2575570Z copying torch/include/ATen/ops/special_bessel_y1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2576770Z copying torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2577990Z copying torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2579270Z copying torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2580410Z copying torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2581630Z copying torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2582830Z copying torch/include/ATen/ops/_convolution_double_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2584030Z copying torch/include/ATen/ops/softshrink_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2585220Z copying torch/include/ATen/ops/_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2586580Z copying torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2587770Z copying torch/include/ATen/ops/_foreach_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2588980Z copying torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2590130Z copying torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2591350Z copying torch/include/ATen/ops/_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2592520Z copying torch/include/ATen/ops/round_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2593670Z copying torch/include/ATen/ops/resolve_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2594910Z copying torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2596150Z copying torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2597300Z copying torch/include/ATen/ops/ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2598370Z copying torch/include/ATen/ops/_foreach_clamp_max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2599570Z copying torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2600720Z copying torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2601890Z copying torch/include/ATen/ops/neg_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2603200Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2604440Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2605660Z copying torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2606840Z copying torch/include/ATen/ops/lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2608110Z copying torch/include/ATen/ops/exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2609310Z copying torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2610480Z copying torch/include/ATen/ops/logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2611830Z copying torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2612990Z copying torch/include/ATen/ops/_pad_packed_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2614110Z copying torch/include/ATen/ops/round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2615390Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2616520Z copying torch/include/ATen/ops/roll_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2617670Z copying torch/include/ATen/ops/i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2618830Z copying torch/include/ATen/ops/alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2620040Z copying torch/include/ATen/ops/mish_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2621230Z copying torch/include/ATen/ops/replication_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2622450Z copying torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2623600Z copying torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2624850Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2626260Z copying torch/include/ATen/ops/prod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2627190Z copying torch/include/ATen/ops/pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2628340Z copying torch/include/ATen/ops/resize_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2629610Z copying torch/include/ATen/ops/gcd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2630970Z copying torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2632160Z copying torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2633330Z copying torch/include/ATen/ops/_foreach_log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2634480Z copying torch/include/ATen/ops/select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2635740Z copying torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2637010Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2638270Z copying torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2639450Z copying torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2640660Z copying torch/include/ATen/ops/scalar_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2641990Z copying torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2643140Z copying torch/include/ATen/ops/nonzero_static.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2644280Z copying torch/include/ATen/ops/im2col_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2645640Z copying torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2646860Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2648020Z copying torch/include/ATen/ops/im2col_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2649290Z copying torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2650580Z copying torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2651860Z copying torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2653010Z copying torch/include/ATen/ops/copysign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2654240Z copying torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2655480Z copying torch/include/ATen/ops/_fw_primal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2656610Z copying torch/include/ATen/ops/qscheme_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2657910Z copying torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2659010Z copying torch/include/ATen/ops/_print.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2660280Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2661510Z copying torch/include/ATen/ops/set_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2662640Z copying torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2663900Z copying torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2665360Z copying torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2666400Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2667560Z copying torch/include/ATen/ops/polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2668980Z copying torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2670290Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2671350Z copying torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2672670Z copying torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2673840Z copying torch/include/ATen/ops/swapaxes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2675140Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2676390Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2677610Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2679010Z copying torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2680140Z copying torch/include/ATen/ops/quantile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2681580Z copying torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2682780Z copying torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2684050Z copying torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2685270Z copying torch/include/ATen/ops/convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2686530Z copying torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2687750Z copying torch/include/ATen/ops/_nnpack_available.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2689000Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2690140Z copying torch/include/ATen/ops/new_zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2691480Z copying torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2692800Z copying torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2693940Z copying torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2695270Z copying torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2696380Z copying torch/include/ATen/ops/uniform_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2697690Z copying torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2698950Z copying torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2700190Z copying torch/include/ATen/ops/_foreach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2701340Z copying torch/include/ATen/ops/mT_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2702530Z copying torch/include/ATen/ops/nonzero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2703770Z copying torch/include/ATen/ops/_pack_padded_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2704960Z copying torch/include/ATen/ops/_foreach_neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2706130Z copying torch/include/ATen/ops/linalg_multi_dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2707510Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2708660Z copying torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2709910Z copying torch/include/ATen/ops/arange_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2711150Z copying torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2712500Z copying torch/include/ATen/ops/ne.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2713930Z copying torch/include/ATen/ops/threshold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2714970Z copying torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2716280Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2717650Z copying torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2718690Z copying torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2719910Z copying torch/include/ATen/ops/special_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2721120Z copying torch/include/ATen/ops/_nested_sum_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2722560Z copying torch/include/ATen/ops/quantized_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2723710Z copying torch/include/ATen/ops/linalg_lstsq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2725040Z copying torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2726340Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2727460Z copying torch/include/ATen/ops/is_nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2728590Z copying torch/include/ATen/ops/glu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2729770Z copying torch/include/ATen/ops/_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2730970Z copying torch/include/ATen/ops/bitwise_xor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2732220Z copying torch/include/ATen/ops/sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2733360Z copying torch/include/ATen/ops/_foreach_cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2734550Z copying torch/include/ATen/ops/randn_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2735700Z copying torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2736950Z copying torch/include/ATen/ops/subtract_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2738170Z copying torch/include/ATen/ops/sparse_compressed_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2739340Z copying torch/include/ATen/ops/_foreach_ceil_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2740510Z copying torch/include/ATen/ops/div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2741760Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2743140Z copying torch/include/ATen/ops/_foreach_div_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2744170Z copying torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2745310Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2746530Z copying torch/include/ATen/ops/mul_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2747810Z copying torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2748960Z copying torch/include/ATen/ops/swapaxes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2750100Z copying torch/include/ATen/ops/divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2751470Z copying torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2752690Z copying torch/include/ATen/ops/sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2753950Z copying torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2755310Z copying torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2756470Z copying torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2757650Z copying torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2758850Z copying torch/include/ATen/ops/_fft_r2c_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2760030Z copying torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2761110Z copying torch/include/ATen/ops/conv1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2762350Z copying torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2763490Z copying torch/include/ATen/ops/linalg_svd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2764750Z copying torch/include/ATen/ops/native_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2765980Z copying torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2767130Z copying torch/include/ATen/ops/constant_pad_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2768330Z copying torch/include/ATen/ops/index_copy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2769640Z copying torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2770800Z copying torch/include/ATen/ops/quantized_lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2772080Z copying torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2773220Z copying torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2774540Z copying torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2775660Z copying torch/include/ATen/ops/is_leaf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2776930Z copying torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2778190Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2779430Z copying torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2780580Z copying torch/include/ATen/ops/log2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2781850Z copying torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2782980Z copying torch/include/ATen/ops/resolve_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2784340Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2785460Z copying torch/include/ATen/ops/row_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2786670Z copying torch/include/ATen/ops/_foreach_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2787840Z copying torch/include/ATen/ops/layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2789050Z copying torch/include/ATen/ops/sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2790470Z copying torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2791910Z copying torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2792880Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2794120Z copying torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2795380Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2796600Z copying torch/include/ATen/ops/special_log_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2797840Z copying torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2798970Z copying torch/include/ATen/ops/copy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2800180Z copying torch/include/ATen/ops/linalg_lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2801460Z copying torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2802570Z copying torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2803770Z copying torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2805120Z copying torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2806210Z copying torch/include/ATen/ops/argmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2807570Z copying torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2808760Z copying torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2810020Z copying torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2811140Z copying torch/include/ATen/ops/special_zeta_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2812420Z copying torch/include/ATen/ops/is_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2813610Z copying torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2814770Z copying torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2815950Z copying torch/include/ATen/ops/add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2817220Z copying torch/include/ATen/ops/diagonal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2818400Z copying torch/include/ATen/ops/_linalg_check_errors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2819650Z copying torch/include/ATen/ops/angle_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2820940Z copying torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2822210Z copying torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2823370Z copying torch/include/ATen/ops/_nested_get_values_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2824620Z copying torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2825920Z copying torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2827230Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2828400Z copying torch/include/ATen/ops/sort_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2829590Z copying torch/include/ATen/ops/_lazy_clone_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2830870Z copying torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2832130Z copying torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2833270Z copying torch/include/ATen/ops/thnn_conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2834500Z copying torch/include/ATen/ops/baddbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2835960Z copying torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2837140Z copying torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2838330Z copying torch/include/ATen/ops/avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2839670Z copying torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2840850Z copying torch/include/ATen/ops/reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2842110Z copying torch/include/ATen/ops/contiguous_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2843360Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2844650Z copying torch/include/ATen/ops/sparse_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2846070Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2847500Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2848650Z copying torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2849890Z copying torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2851100Z copying torch/include/ATen/ops/tril_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2852270Z copying torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2853550Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2854800Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2855880Z copying torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2857060Z copying torch/include/ATen/ops/arcsin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2858210Z copying torch/include/ATen/ops/qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2859480Z copying torch/include/ATen/ops/view_as_real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2860780Z copying torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2861950Z copying torch/include/ATen/ops/frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2863200Z copying torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2864420Z copying torch/include/ATen/ops/miopen_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2865740Z copying torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2867080Z copying torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2868270Z copying torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2869560Z copying torch/include/ATen/ops/_test_string_default_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2870810Z copying torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2872020Z copying torch/include/ATen/ops/logaddexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2873190Z copying torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2874310Z copying torch/include/ATen/ops/pairwise_distance.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2875970Z copying torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2876870Z copying torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2877980Z copying torch/include/ATen/ops/_cast_Long_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2879230Z copying torch/include/ATen/ops/nll_loss2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2880430Z copying torch/include/ATen/ops/fft_ifftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2881840Z copying torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2882940Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2884140Z copying torch/include/ATen/ops/cos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2885620Z copying torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2886640Z copying torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2888110Z copying torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2889100Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2890330Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2891480Z copying torch/include/ATen/ops/cudnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2892740Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2893920Z copying torch/include/ATen/ops/atleast_2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2895200Z copying torch/include/ATen/ops/choose_qparams_optimized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2896360Z copying torch/include/ATen/ops/_linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2897810Z copying torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2899200Z copying torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2900500Z copying torch/include/ATen/ops/special_bessel_y1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2901730Z copying torch/include/ATen/ops/slice.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2903150Z copying torch/include/ATen/ops/_nested_tensor_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2909520Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2909870Z copying torch/include/ATen/ops/_spdiags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2910190Z copying torch/include/ATen/ops/linalg_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2910550Z copying torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2910790Z copying torch/include/ATen/ops/_neg_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2911030Z copying torch/include/ATen/ops/unsafe_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2911950Z copying torch/include/ATen/ops/sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2914200Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2915140Z copying torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2916420Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2917610Z copying torch/include/ATen/ops/div_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2919070Z copying torch/include/ATen/ops/trace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2920360Z copying torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2921700Z copying torch/include/ATen/ops/fft_hfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2923190Z copying torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2924220Z copying torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2925470Z copying torch/include/ATen/ops/nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2926650Z copying torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2927920Z copying torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2929080Z copying torch/include/ATen/ops/fft_ifft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2930390Z copying torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2931630Z copying torch/include/ATen/ops/triplet_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2932810Z copying torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2934180Z copying torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2935300Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2936530Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2937770Z copying torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2938970Z copying torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2940180Z copying torch/include/ATen/ops/arcsinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2941340Z copying torch/include/ATen/ops/type_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2942560Z copying torch/include/ATen/ops/linalg_eigvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2943880Z copying torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2945190Z copying torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2946350Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2947520Z copying torch/include/ATen/ops/_safe_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2948700Z copying torch/include/ATen/ops/_copy_from_and_resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2949920Z copying torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2951100Z copying torch/include/ATen/ops/logdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2952300Z copying torch/include/ATen/ops/align_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2953500Z copying torch/include/ATen/ops/tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2954810Z copying torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2956010Z copying torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2957220Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2958410Z copying torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2959630Z copying torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2961400Z copying torch/include/ATen/ops/trunc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2962710Z copying torch/include/ATen/ops/_cholesky_solve_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2964050Z copying torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2965420Z copying torch/include/ATen/ops/mv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2966620Z copying torch/include/ATen/ops/logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2967840Z copying torch/include/ATen/ops/min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2969070Z copying torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2970380Z copying torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2971620Z copying torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2972880Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2974140Z copying torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2975370Z copying torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2976540Z copying torch/include/ATen/ops/normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2977920Z copying torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2979230Z copying torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2980420Z copying torch/include/ATen/ops/smm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2981830Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2983110Z copying torch/include/ATen/ops/less_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2984340Z copying torch/include/ATen/ops/new_ones_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2985580Z copying torch/include/ATen/ops/nonzero_static_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2986800Z copying torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2988000Z copying torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2989290Z copying torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2990510Z copying torch/include/ATen/ops/expand_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2991820Z copying torch/include/ATen/ops/complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2993100Z copying torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2994450Z copying torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2995830Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2996990Z copying torch/include/ATen/ops/isin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2998180Z copying torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.2999440Z copying torch/include/ATen/ops/pinverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3000620Z copying torch/include/ATen/ops/_foreach_atan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3001900Z copying torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3003100Z copying torch/include/ATen/ops/lstm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3004430Z copying torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3005820Z copying torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3007060Z copying torch/include/ATen/ops/expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3008210Z copying torch/include/ATen/ops/dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3009650Z copying torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3010790Z copying torch/include/ATen/ops/maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3011990Z copying torch/include/ATen/ops/remainder_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3013130Z copying torch/include/ATen/ops/ones.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3014580Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3015710Z copying torch/include/ATen/ops/_foreach_maximum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3016980Z copying torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3018240Z copying torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3019460Z copying torch/include/ATen/ops/special_modified_bessel_i1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3020880Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3022090Z copying torch/include/ATen/ops/mse_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3023290Z copying torch/include/ATen/ops/_cummax_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3024680Z copying torch/include/ATen/ops/pad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3025900Z copying torch/include/ATen/ops/linalg_cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3027130Z copying torch/include/ATen/ops/_resize_output_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3028300Z copying torch/include/ATen/ops/gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3029690Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3030850Z copying torch/include/ATen/ops/std_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3032160Z copying torch/include/ATen/ops/round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3033350Z copying torch/include/ATen/ops/_to_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3034700Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3035870Z copying torch/include/ATen/ops/fft_irfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3037130Z copying torch/include/ATen/ops/block_diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3038340Z copying torch/include/ATen/ops/_nested_get_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3039840Z copying torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3041020Z copying torch/include/ATen/ops/atanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3042350Z copying torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3043500Z copying torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3044860Z copying torch/include/ATen/ops/exponential_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3046070Z copying torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3047380Z copying torch/include/ATen/ops/gather_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3048660Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3049950Z copying torch/include/ATen/ops/geqrf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3051180Z copying torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3052480Z copying torch/include/ATen/ops/bitwise_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3053770Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3055120Z copying torch/include/ATen/ops/_fused_rms_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3056510Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3057680Z copying torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3058880Z copying torch/include/ATen/ops/native_layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3060230Z copying torch/include/ATen/ops/sym_constrain_range_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3061520Z copying torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3062670Z copying torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3063980Z copying torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3065530Z copying torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3066410Z copying torch/include/ATen/ops/linalg_vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3067730Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3068950Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3070230Z copying torch/include/ATen/ops/split_with_sizes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3071530Z copying torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3072790Z copying torch/include/ATen/ops/special_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3073970Z copying torch/include/ATen/ops/sum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3075300Z copying torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3076650Z copying torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3078040Z copying torch/include/ATen/ops/pinverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3079260Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3080720Z copying torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3081770Z copying torch/include/ATen/ops/add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3083120Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3084300Z copying torch/include/ATen/ops/_cummax_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3085780Z copying torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3087160Z copying torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3088260Z copying torch/include/ATen/ops/eq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3089500Z copying torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3090790Z copying torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3092000Z copying torch/include/ATen/ops/cholesky_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3093150Z copying torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3094410Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3095540Z copying torch/include/ATen/ops/sort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3096770Z copying torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3097990Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3099220Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3100360Z copying torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3101710Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3102830Z copying torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3104110Z copying torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3105290Z copying torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3106440Z copying torch/include/ATen/ops/special_erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3107640Z copying torch/include/ATen/ops/avg_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3108800Z copying torch/include/ATen/ops/upsample_nearest1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3109930Z copying torch/include/ATen/ops/sin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3111130Z copying torch/include/ATen/ops/sum_to_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3112520Z copying torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3113760Z copying torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3115010Z copying torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3116150Z copying torch/include/ATen/ops/gradient_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3117390Z copying torch/include/ATen/ops/_cslt_compress.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3118560Z copying torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3119760Z copying torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3120980Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3122200Z copying torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3123380Z copying torch/include/ATen/ops/log_normal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3124540Z copying torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3125680Z copying torch/include/ATen/ops/hypot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3126890Z copying torch/include/ATen/ops/nll_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3128170Z copying torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3129460Z copying torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3130690Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3131930Z copying torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3133250Z copying torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3134500Z copying torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3135920Z copying torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3137010Z copying torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3138270Z copying torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3139490Z copying torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3140700Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3142020Z copying torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3143110Z copying torch/include/ATen/ops/special_bessel_j0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3144270Z copying torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3145590Z copying torch/include/ATen/ops/sort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3146770Z copying torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3148090Z copying torch/include/ATen/ops/_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3149230Z copying torch/include/ATen/ops/put_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3150640Z copying torch/include/ATen/ops/eq_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3151940Z copying torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3153190Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3154300Z copying torch/include/ATen/ops/_foreach_floor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3155610Z copying torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3156860Z copying torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3158040Z copying torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3159250Z copying torch/include/ATen/ops/diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3160470Z copying torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3161680Z copying torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3163010Z copying torch/include/ATen/ops/_logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3164130Z copying torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3165430Z copying torch/include/ATen/ops/logical_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3166650Z copying torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3167920Z copying torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3169140Z copying torch/include/ATen/ops/_pdist_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3170570Z copying torch/include/ATen/ops/empty_permuted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3171940Z copying torch/include/ATen/ops/topk_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3173030Z copying torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3174320Z copying torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3175440Z copying torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3176650Z copying torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3177940Z copying torch/include/ATen/ops/i0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3179160Z copying torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3180380Z copying torch/include/ATen/ops/asinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3181710Z copying torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3182790Z copying torch/include/ATen/ops/resize_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3184110Z copying torch/include/ATen/ops/logcumsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3185250Z copying torch/include/ATen/ops/ravel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3186590Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3187790Z copying torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3189410Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3190520Z copying torch/include/ATen/ops/_index_put_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3191740Z copying torch/include/ATen/ops/isin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3193220Z copying torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3194100Z copying torch/include/ATen/ops/_cast_Short.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3195370Z copying torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3196740Z copying torch/include/ATen/ops/select_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3197860Z copying torch/include/ATen/ops/fmod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3199190Z copying torch/include/ATen/ops/masked_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3200470Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3201590Z copying torch/include/ATen/ops/hardtanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3202860Z copying torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3204060Z copying torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3205230Z copying torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3206650Z copying torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3207920Z copying torch/include/ATen/ops/std_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3209140Z copying torch/include/ATen/ops/vsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3210360Z copying torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3211600Z copying torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3212820Z copying torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3214190Z copying torch/include/ATen/ops/_sparse_csr_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3215450Z copying torch/include/ATen/ops/view_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3216660Z copying torch/include/ATen/ops/ccol_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3217940Z copying torch/include/ATen/ops/resize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3219330Z copying torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3220520Z copying torch/include/ATen/ops/constant_pad_nd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3221770Z copying torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3223090Z copying torch/include/ATen/ops/silu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3224330Z copying torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3225560Z copying torch/include/ATen/ops/log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3227010Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3228150Z copying torch/include/ATen/ops/_foreach_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3229400Z copying torch/include/ATen/ops/_version_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3230730Z copying torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3232060Z copying torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3233150Z copying torch/include/ATen/ops/corrcoef_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3234510Z copying torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3235790Z copying torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3237010Z copying torch/include/ATen/ops/sin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3238150Z copying torch/include/ATen/ops/_cast_Half_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3239570Z copying torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3240780Z copying torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3242060Z copying torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3243220Z copying torch/include/ATen/ops/hardswish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3244560Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3245830Z copying torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3247130Z copying torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3248210Z copying torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3249450Z copying torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3250750Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3252030Z copying torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3253210Z copying torch/include/ATen/ops/linalg_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3254390Z copying torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3255680Z copying torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3256850Z copying torch/include/ATen/ops/_pad_circular.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3258100Z copying torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3259350Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3260550Z copying torch/include/ATen/ops/_foreach_div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3261910Z copying torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3263120Z copying torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3264290Z copying torch/include/ATen/ops/to_sparse_bsr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3265470Z copying torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3266650Z copying torch/include/ATen/ops/conv3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3267880Z copying torch/include/ATen/ops/addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3268970Z copying torch/include/ATen/ops/add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3270230Z copying torch/include/ATen/ops/multi_margin_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3271470Z copying torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3272610Z copying torch/include/ATen/ops/exp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3273750Z copying torch/include/ATen/ops/_nested_from_padded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3275040Z copying torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3276180Z copying torch/include/ATen/ops/combinations_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3277360Z copying torch/include/ATen/ops/fmod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3278490Z copying torch/include/ATen/ops/broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3279760Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3280930Z copying torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3282190Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3283540Z copying torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3284810Z copying torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3286180Z copying torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3287650Z copying torch/include/ATen/ops/special_i0e_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3288970Z copying torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3290620Z copying torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3291880Z copying torch/include/ATen/ops/vdot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3293130Z copying torch/include/ATen/ops/_conj_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3294470Z copying torch/include/ATen/ops/gt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3295740Z copying torch/include/ATen/ops/diag_embed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3297030Z copying torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3298200Z copying torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3299430Z copying torch/include/ATen/ops/conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3300590Z copying torch/include/ATen/ops/_batch_norm_with_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3301860Z copying torch/include/ATen/ops/_foreach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3303150Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3304310Z copying torch/include/ATen/ops/hardshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3305530Z copying torch/include/ATen/ops/heaviside_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3306700Z copying torch/include/ATen/ops/pdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3307950Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3309150Z copying torch/include/ATen/ops/cholesky_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3310300Z copying torch/include/ATen/ops/is_signed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3311620Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3312720Z copying torch/include/ATen/ops/ne_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3314130Z copying torch/include/ATen/ops/index_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3315190Z copying torch/include/ATen/ops/logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3316440Z copying torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3317750Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3318920Z copying torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3320110Z copying torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3321440Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3322560Z copying torch/include/ATen/ops/_conj_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3323740Z copying torch/include/ATen/ops/randperm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3325010Z copying torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3326140Z copying torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3327290Z copying torch/include/ATen/ops/rand_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3328660Z copying torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3329770Z copying torch/include/ATen/ops/_foreach_cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3331110Z copying torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3332190Z copying torch/include/ATen/ops/rename_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3333580Z copying torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3334730Z copying torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3335910Z copying torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3337270Z copying torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3338700Z copying torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3339770Z copying torch/include/ATen/ops/_is_zerotensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3341030Z copying torch/include/ATen/ops/exp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3342220Z copying torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3343530Z copying torch/include/ATen/ops/_test_check_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3344750Z copying torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3346060Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3347130Z copying torch/include/ATen/ops/_cast_Float.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3348450Z copying torch/include/ATen/ops/_neg_view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3349590Z copying torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3350950Z copying torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3352080Z copying torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3353530Z copying torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3354810Z copying torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3355980Z copying torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3357120Z copying torch/include/ATen/ops/pad_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3358310Z copying torch/include/ATen/ops/unsafe_split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3359600Z copying torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3360750Z copying torch/include/ATen/ops/mish_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3362090Z copying torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3363350Z copying torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3364450Z copying torch/include/ATen/ops/addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3365760Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3367100Z copying torch/include/ATen/ops/_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3368340Z copying torch/include/ATen/ops/atan2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3369520Z copying torch/include/ATen/ops/bucketize_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3370780Z copying torch/include/ATen/ops/native_layer_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3371980Z copying torch/include/ATen/ops/tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3373290Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3374560Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3375940Z copying torch/include/ATen/ops/ge_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3377130Z copying torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3378510Z copying torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3379640Z copying torch/include/ATen/ops/lu_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3380830Z copying torch/include/ATen/ops/conv_tbc_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3382030Z copying torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3383280Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3384460Z copying torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3385670Z copying torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3386840Z copying torch/include/ATen/ops/bitwise_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3388230Z copying torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3389470Z copying torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3390650Z copying torch/include/ATen/ops/matrix_exp_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3391850Z copying torch/include/ATen/ops/special_erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3393100Z copying torch/include/ATen/ops/cosh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3394710Z copying torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3395530Z copying torch/include/ATen/ops/index_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3396800Z copying torch/include/ATen/ops/linalg_multi_dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3398110Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3399280Z copying torch/include/ATen/ops/_cslt_sparse_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3400540Z copying torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3401750Z copying torch/include/ATen/ops/index_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3402990Z copying torch/include/ATen/ops/lt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3404200Z copying torch/include/ATen/ops/max_pool2d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3405480Z copying torch/include/ATen/ops/nonzero_static_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3406780Z copying torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3408170Z copying torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3409430Z copying torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3410640Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3411940Z copying torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3413170Z copying torch/include/ATen/ops/cummin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3414410Z copying torch/include/ATen/ops/quantize_per_channel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3415670Z copying torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3416850Z copying torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3418070Z copying torch/include/ATen/ops/linspace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3419340Z copying torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3420660Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3421900Z copying torch/include/ATen/ops/frac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3423220Z copying torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3424330Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3425540Z copying torch/include/ATen/ops/select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3426790Z copying torch/include/ATen/ops/_nested_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3427960Z copying torch/include/ATen/ops/_foreach_log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3429360Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3430540Z copying torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3431750Z copying torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3432900Z copying torch/include/ATen/ops/inner_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3434160Z copying torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3435350Z copying torch/include/ATen/ops/is_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3436450Z copying torch/include/ATen/ops/native_group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3437720Z copying torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3438840Z copying torch/include/ATen/ops/fft_fftfreq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3440080Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3441290Z copying torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3442570Z copying torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3443800Z copying torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3444990Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3446180Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3447540Z copying torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3448720Z copying torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3449940Z copying torch/include/ATen/ops/nanmedian_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3451170Z copying torch/include/ATen/ops/dot_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3452450Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3453540Z copying torch/include/ATen/ops/stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3454780Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3455960Z copying torch/include/ATen/ops/smooth_l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3457090Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3458390Z copying torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3459650Z copying torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3460840Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3461990Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3463270Z copying torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3464430Z copying torch/include/ATen/ops/index_put_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3465700Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3466880Z copying torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3468090Z copying torch/include/ATen/ops/view_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3469260Z copying torch/include/ATen/ops/_foreach_sign_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3470460Z copying torch/include/ATen/ops/index_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3471670Z copying torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3472950Z copying torch/include/ATen/ops/to_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3474150Z copying torch/include/ATen/ops/is_set_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3475400Z copying torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3476740Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3477780Z copying torch/include/ATen/ops/concatenate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3478860Z copying torch/include/ATen/ops/logaddexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3480120Z copying torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3481380Z copying torch/include/ATen/ops/_linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3482540Z copying torch/include/ATen/ops/qscheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3483730Z copying torch/include/ATen/ops/silu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3484930Z copying torch/include/ATen/ops/movedim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3486430Z copying torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3487670Z copying torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3488760Z copying torch/include/ATen/ops/thnn_conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3490140Z copying torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3491530Z copying torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3492860Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3494120Z copying torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3495440Z copying torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3496790Z copying torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3497960Z copying torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3499280Z copying torch/include/ATen/ops/special_airy_ai_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3500420Z copying torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3501650Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3502870Z copying torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3504130Z copying torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3650000Z copying torch/include/ATen/ops/addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3651600Z copying torch/include/ATen/ops/rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.3652980Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4114640Z copying torch/include/ATen/ops/_foreach_lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4116170Z copying torch/include/ATen/ops/argmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4117950Z copying torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4119630Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4121350Z copying torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4122930Z copying torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4124510Z copying torch/include/ATen/ops/threshold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4126290Z copying torch/include/ATen/ops/svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4128810Z copying torch/include/ATen/ops/addmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4129400Z copying torch/include/ATen/ops/lift_fresh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4131130Z copying torch/include/ATen/ops/_foreach_zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4133060Z copying torch/include/ATen/ops/flatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4134540Z copying torch/include/ATen/ops/linalg_lu_factor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4176670Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4184720Z copying torch/include/ATen/ops/where_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4192730Z copying torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4201320Z copying torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4209210Z copying torch/include/ATen/ops/_pad_enum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4217320Z copying torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4225640Z copying torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4233560Z copying torch/include/ATen/ops/from_file.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4241590Z copying torch/include/ATen/ops/row_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4249530Z copying torch/include/ATen/ops/clamp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4251120Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4252920Z copying torch/include/ATen/ops/celu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4260340Z copying torch/include/ATen/ops/matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4261930Z copying torch/include/ATen/ops/special_logit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4263620Z copying torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4265140Z copying torch/include/ATen/ops/lstm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4273160Z copying torch/include/ATen/ops/atan2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4281210Z copying torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4282700Z copying torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4298040Z copying torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4307550Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4309030Z copying torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4310610Z copying torch/include/ATen/ops/zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4323110Z copying torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4324520Z copying torch/include/ATen/ops/row_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4326150Z copying torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4327960Z copying torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4329920Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4331160Z copying torch/include/ATen/ops/real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4332900Z copying torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4344240Z copying torch/include/ATen/ops/pairwise_distance_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4345690Z copying torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4347140Z copying torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4348680Z copying torch/include/ATen/ops/_make_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4355840Z copying torch/include/ATen/ops/_make_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4363100Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4364750Z copying torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4366300Z copying torch/include/ATen/ops/relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4367900Z copying torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4369700Z copying torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4371110Z copying torch/include/ATen/ops/avg_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4378400Z copying torch/include/ATen/ops/_foreach_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4379720Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4381190Z copying torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4382760Z copying torch/include/ATen/ops/ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4384570Z copying torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4392080Z copying torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4399680Z copying torch/include/ATen/ops/sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4401210Z copying torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4409040Z copying torch/include/ATen/ops/min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4410430Z copying torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4411900Z copying torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4419320Z copying torch/include/ATen/ops/_nnpack_available_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4420700Z copying torch/include/ATen/ops/bitwise_right_shift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4422070Z copying torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4429950Z copying torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4437500Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4438600Z copying torch/include/ATen/ops/_autocast_to_full_precision.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4439950Z copying torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4441170Z copying torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4448360Z copying torch/include/ATen/ops/remainder_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4449490Z copying torch/include/ATen/ops/linalg_det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4457260Z copying torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4464750Z copying torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4466040Z copying torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4467270Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4468630Z copying torch/include/ATen/ops/randint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4476220Z copying torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4477380Z copying torch/include/ATen/ops/nested_to_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4478800Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4480080Z copying torch/include/ATen/ops/resize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4488970Z copying torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4495930Z copying torch/include/ATen/ops/isclose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4503630Z copying torch/include/ATen/ops/resize_as_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4511310Z copying torch/include/ATen/ops/view_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4519320Z copying torch/include/ATen/ops/replication_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4526660Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4527440Z copying torch/include/ATen/ops/triu_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4528910Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4530110Z copying torch/include/ATen/ops/_scaled_grouped_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4531310Z copying torch/include/ATen/ops/mish_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4532560Z copying torch/include/ATen/ops/atleast_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4540260Z copying torch/include/ATen/ops/_nested_get_lengths.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4541280Z copying torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4548820Z copying torch/include/ATen/ops/renorm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4557010Z copying torch/include/ATen/ops/native_group_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4558200Z copying torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4559550Z copying torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4560830Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4568820Z copying torch/include/ATen/ops/take_along_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4569830Z copying torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4571050Z copying torch/include/ATen/ops/hsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4572240Z copying torch/include/ATen/ops/gather_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4573520Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4574830Z copying torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4575960Z copying torch/include/ATen/ops/t_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4577220Z copying torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4578620Z copying torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4585860Z copying torch/include/ATen/ops/absolute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4586620Z copying torch/include/ATen/ops/isnan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4593760Z copying torch/include/ATen/ops/fft_hfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4597210Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4597490Z copying torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4597840Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4610580Z copying torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4611510Z copying torch/include/ATen/ops/fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4622330Z copying torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4629100Z copying torch/include/ATen/ops/batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4630350Z copying torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4631490Z copying torch/include/ATen/ops/sparse_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4632930Z copying torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4634210Z copying torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4635520Z copying torch/include/ATen/ops/rsub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4636870Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4644450Z copying torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4645860Z copying torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4653050Z copying torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4660690Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4667820Z copying torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4674420Z copying torch/include/ATen/ops/randint_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4681510Z copying torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4688740Z copying torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4696150Z copying torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4703340Z copying torch/include/ATen/ops/abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4704400Z copying torch/include/ATen/ops/isin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4711630Z copying torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4712640Z copying torch/include/ATen/ops/retain_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4713970Z copying torch/include/ATen/ops/sparse_resize_and_clear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4715140Z copying torch/include/ATen/ops/kron_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4716380Z copying torch/include/ATen/ops/log1p_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4724270Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4731420Z copying torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4732520Z copying torch/include/ATen/ops/bucketize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4733840Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4741450Z copying torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4749130Z copying torch/include/ATen/ops/gather_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4757640Z copying torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4758400Z copying torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4765720Z copying torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4766470Z copying torch/include/ATen/ops/clip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4774890Z copying torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4781780Z copying torch/include/ATen/ops/_local_scalar_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4788460Z copying torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4795870Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4796930Z copying torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4804290Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4805190Z copying torch/include/ATen/ops/max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4806510Z copying torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4807790Z copying torch/include/ATen/ops/special_erf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4809100Z copying torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4810350Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4811500Z copying torch/include/ATen/ops/pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4812830Z copying torch/include/ATen/ops/_cast_Double.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4814210Z copying torch/include/ATen/ops/frobenius_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4815360Z copying torch/include/ATen/ops/sinc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4816570Z copying torch/include/ATen/ops/softplus.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4824940Z copying torch/include/ATen/ops/_foreach_pow_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4825710Z copying torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4833520Z copying torch/include/ATen/ops/kthvalue_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4840740Z copying torch/include/ATen/ops/_is_any_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4848070Z copying torch/include/ATen/ops/reshape_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4855390Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4862490Z copying torch/include/ATen/ops/special_bessel_y0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4869660Z copying torch/include/ATen/ops/crow_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4884060Z copying torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4893150Z copying torch/include/ATen/ops/uniform_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4894120Z copying torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4895620Z copying torch/include/ATen/ops/_cudnn_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4903210Z copying torch/include/ATen/ops/to_sparse_csc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4910330Z copying torch/include/ATen/ops/reshape_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4911240Z copying torch/include/ATen/ops/_fused_rms_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4919690Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4920540Z copying torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4927900Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4935370Z copying torch/include/ATen/ops/_safe_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4942830Z copying torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4950230Z copying torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4951130Z copying torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4959140Z copying torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4966530Z copying torch/include/ATen/ops/set_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4973830Z copying torch/include/ATen/ops/numpy_T.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4981240Z copying torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4988600Z copying torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.4996630Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5010590Z copying torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5011420Z copying torch/include/ATen/ops/float_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5012630Z copying torch/include/ATen/ops/narrow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5013960Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5021690Z copying torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5022710Z copying torch/include/ATen/ops/rot90.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5023960Z copying torch/include/ATen/ops/t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5025440Z copying torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5026610Z copying torch/include/ATen/ops/squeeze_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5034690Z copying torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5035490Z copying torch/include/ATen/ops/greater.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5036900Z copying torch/include/ATen/ops/swapaxes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5038310Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5039420Z copying torch/include/ATen/ops/avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5040920Z copying torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5042300Z copying torch/include/ATen/ops/_cudnn_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5050260Z copying torch/include/ATen/ops/_foreach_sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5051260Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5052560Z copying torch/include/ATen/ops/_linalg_svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5053720Z copying torch/include/ATen/ops/from_blob.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5054980Z copying torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5056250Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5057530Z copying torch/include/ATen/ops/exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5058680Z copying torch/include/ATen/ops/index_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5059880Z copying torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5061070Z copying torch/include/ATen/ops/linspace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5062320Z copying torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5063520Z copying torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5064750Z copying torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5065910Z copying torch/include/ATen/ops/put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5067290Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5068580Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5069740Z copying torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5071030Z copying torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5072220Z copying torch/include/ATen/ops/log1p_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5073430Z copying torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5074710Z copying torch/include/ATen/ops/tril_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5076080Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5077370Z copying torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5078510Z copying torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5079850Z copying torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5080970Z copying torch/include/ATen/ops/put.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5082190Z copying torch/include/ATen/ops/special_airy_ai_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5083500Z copying torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5084740Z copying torch/include/ATen/ops/reflection_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5085800Z copying torch/include/ATen/ops/eq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5087030Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5088310Z copying torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5089660Z copying torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5090700Z copying torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5092150Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5093260Z copying torch/include/ATen/ops/fill_diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5094600Z copying torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5095760Z copying torch/include/ATen/ops/equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5096930Z copying torch/include/ATen/ops/linalg_eigvals_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5098120Z copying torch/include/ATen/ops/_flash_attention_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5099430Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5100630Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5102000Z copying torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5103190Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5104490Z copying torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5105700Z copying torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5106960Z copying torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5108170Z copying torch/include/ATen/ops/_unpack_dual.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5109410Z copying torch/include/ATen/ops/special_log_ndtr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5110810Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5112010Z copying torch/include/ATen/ops/sparse_csc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5113260Z copying torch/include/ATen/ops/log1p_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5114480Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5115640Z copying torch/include/ATen/ops/flatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5116800Z copying torch/include/ATen/ops/sym_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5118130Z copying torch/include/ATen/ops/linalg_svdvals_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5119320Z copying torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5120620Z copying torch/include/ATen/ops/masked_select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5121950Z copying torch/include/ATen/ops/unfold_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5123120Z copying torch/include/ATen/ops/special_airy_ai.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5124300Z copying torch/include/ATen/ops/min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5125480Z copying torch/include/ATen/ops/fmin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5126750Z copying torch/include/ATen/ops/logit_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5128010Z copying torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5129150Z copying torch/include/ATen/ops/view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5130390Z copying torch/include/ATen/ops/threshold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5131570Z copying torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5132940Z copying torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5134210Z copying torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5135270Z copying torch/include/ATen/ops/slice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5136520Z copying torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5137700Z copying torch/include/ATen/ops/polar_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5138890Z copying torch/include/ATen/ops/linspace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5140090Z copying torch/include/ATen/ops/linalg_matrix_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5141400Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5142560Z copying torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5144100Z copying torch/include/ATen/ops/arccos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5145000Z copying torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5146160Z copying torch/include/ATen/ops/silu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5147370Z copying torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5148600Z copying torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5149860Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5151080Z copying torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5152440Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5153580Z copying torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5154820Z copying torch/include/ATen/ops/_cdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5155930Z copying torch/include/ATen/ops/mean_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5157220Z copying torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5158360Z copying torch/include/ATen/ops/_foreach_mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5159640Z copying torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5160780Z copying torch/include/ATen/ops/round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5161960Z copying torch/include/ATen/ops/moveaxis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5163190Z copying torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5164330Z copying torch/include/ATen/ops/mul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5165650Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5166880Z copying torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5167950Z copying torch/include/ATen/ops/select_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5169160Z copying torch/include/ATen/ops/acos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5170380Z copying torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5171580Z copying torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5172860Z copying torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5173940Z copying torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5175330Z copying torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5177930Z copying torch/include/ATen/ops/diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5179610Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5186610Z copying torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5187600Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5188840Z copying torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5196320Z copying torch/include/ATen/ops/mean_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5197440Z copying torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5204590Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5205400Z copying torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5212470Z copying torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5213280Z copying torch/include/ATen/ops/trunc_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5214570Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5220930Z copying torch/include/ATen/ops/detach.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5221850Z copying torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5228650Z copying torch/include/ATen/ops/logaddexp2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5229590Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5230770Z copying torch/include/ATen/ops/random_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5236600Z copying torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5237390Z copying torch/include/ATen/ops/gelu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5244550Z copying torch/include/ATen/ops/masked_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5245450Z copying torch/include/ATen/ops/row_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5246680Z copying torch/include/ATen/ops/expand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5252260Z copying torch/include/ATen/ops/asinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5260440Z copying torch/include/ATen/ops/atanh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5261410Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5262490Z copying torch/include/ATen/ops/sub_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5268270Z copying torch/include/ATen/ops/affine_grid_generator_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5269240Z copying torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5276440Z copying torch/include/ATen/ops/ger_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5277280Z copying torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5284500Z copying torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5285410Z copying torch/include/ATen/ops/upsample_linear1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5286690Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5292300Z copying torch/include/ATen/ops/result_type_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5293400Z copying torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5300550Z copying torch/include/ATen/ops/ormqr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5301400Z copying torch/include/ATen/ops/floor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5302620Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5308910Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5309890Z copying torch/include/ATen/ops/slice_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5316990Z copying torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5317810Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5318990Z copying torch/include/ATen/ops/threshold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5325380Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5326160Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5332960Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5333820Z copying torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5340560Z copying torch/include/ATen/ops/_sparse_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5341420Z copying torch/include/ATen/ops/special_xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5342610Z copying torch/include/ATen/ops/_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5348220Z copying torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5349030Z copying torch/include/ATen/ops/is_floating_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5356180Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5357430Z copying torch/include/ATen/ops/_foreach_pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5364600Z copying torch/include/ATen/ops/fft_irfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5365580Z copying torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5366720Z copying torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5372940Z copying torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5373870Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5380730Z copying torch/include/ATen/ops/median_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5381530Z copying torch/include/ATen/ops/fft_ifft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5382790Z copying torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5388960Z copying torch/include/ATen/ops/ceil_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5389720Z copying torch/include/ATen/ops/leaky_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5396560Z copying torch/include/ATen/ops/full_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5397690Z copying torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5398930Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5404290Z copying torch/include/ATen/ops/rad2deg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5405510Z copying torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5412030Z copying torch/include/ATen/ops/fmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5413220Z copying torch/include/ATen/ops/refine_names.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5419000Z copying torch/include/ATen/ops/linalg_cond_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5421330Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5428620Z copying torch/include/ATen/ops/embedding_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5429630Z copying torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5436500Z copying torch/include/ATen/ops/tensordot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5437410Z copying torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5444460Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5445320Z copying torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5446480Z copying torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5452470Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5453320Z copying torch/include/ATen/ops/glu_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5459850Z copying torch/include/ATen/ops/batch_norm_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5460870Z copying torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5462030Z copying torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5467710Z copying torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5468780Z copying torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5475640Z copying torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5477340Z copying torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5484810Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5485720Z copying torch/include/ATen/ops/batch_norm_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5486900Z copying torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5492620Z copying torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5493350Z copying torch/include/ATen/ops/_assert_tensor_metadata.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5495480Z copying torch/include/ATen/ops/slice_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5501510Z copying torch/include/ATen/ops/add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5502470Z copying torch/include/ATen/ops/rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5509210Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5510720Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5516550Z copying torch/include/ATen/ops/expand_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5518030Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5519510Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5524680Z copying torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5525780Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5532560Z copying torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5533850Z copying torch/include/ATen/ops/_aminmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5541100Z copying torch/include/ATen/ops/istft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5542430Z copying torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5548030Z copying torch/include/ATen/ops/max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5549150Z copying torch/include/ATen/ops/special_expit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5556710Z copying torch/include/ATen/ops/_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5557680Z copying torch/include/ATen/ops/fliplr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5559020Z copying torch/include/ATen/ops/acos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5567280Z copying torch/include/ATen/ops/log10_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5568170Z copying torch/include/ATen/ops/argmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5574830Z copying torch/include/ATen/ops/triu_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5575810Z copying torch/include/ATen/ops/sparse_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5577420Z copying torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5583620Z copying torch/include/ATen/ops/atan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5584510Z copying torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5585860Z copying torch/include/ATen/ops/prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5591940Z copying torch/include/ATen/ops/mul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5599280Z copying torch/include/ATen/ops/is_pinned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5600350Z copying torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5606270Z copying torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5607290Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5608390Z copying torch/include/ATen/ops/unfold.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5615290Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5616160Z copying torch/include/ATen/ops/rrelu_with_noise_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5623100Z copying torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5623950Z copying torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5629960Z copying torch/include/ATen/ops/linalg_householder_product.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5630730Z copying torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5631950Z copying torch/include/ATen/ops/aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5637090Z copying torch/include/ATen/ops/view_as_real.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5638560Z copying torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5645040Z copying torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5646290Z copying torch/include/ATen/ops/huber_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5653140Z copying torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5654390Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5655540Z copying torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5661530Z copying torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5662410Z copying torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5669020Z copying torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5671270Z copying torch/include/ATen/ops/diagflat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5676340Z copying torch/include/ATen/ops/amax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5677160Z copying torch/include/ATen/ops/addr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5678310Z copying torch/include/ATen/ops/special_i1e.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5684040Z copying torch/include/ATen/ops/_embedding_bag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5685090Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5692630Z copying torch/include/ATen/ops/zero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5693370Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5700190Z copying torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5701350Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5702680Z copying torch/include/ATen/ops/arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5708230Z copying torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5709060Z copying torch/include/ATen/ops/chalf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5715540Z copying torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5717350Z copying torch/include/ATen/ops/linalg_svdvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5723840Z copying torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5724750Z copying torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5725910Z copying torch/include/ATen/ops/_weight_int4pack_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5731600Z copying torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5732590Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5739510Z copying torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5740870Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5744810Z copying torch/include/ATen/ops/std_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5748700Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5754220Z copying torch/include/ATen/ops/_linalg_eigh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5762310Z copying torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5763060Z copying torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5770110Z copying torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5770940Z copying torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5772150Z copying torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5779340Z copying torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5780290Z copying torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5787580Z copying torch/include/ATen/ops/masked_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5788440Z copying torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5794420Z copying torch/include/ATen/ops/empty.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5795480Z copying torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5796620Z copying torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5800440Z copying torch/include/ATen/ops/poisson_nll_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5803180Z copying torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5808400Z copying torch/include/ATen/ops/ger.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5809330Z copying torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5813450Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5818200Z copying torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5821500Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5822370Z copying torch/include/ATen/ops/lift_fresh_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5827770Z copying torch/include/ATen/ops/nll_loss2d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5829390Z copying torch/include/ATen/ops/imag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5835610Z copying torch/include/ATen/ops/full_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5836210Z copying torch/include/ATen/ops/_cast_Float_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5837860Z copying torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5844500Z copying torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5846020Z copying torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5852240Z copying torch/include/ATen/ops/lt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5853390Z copying torch/include/ATen/ops/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5854610Z copying torch/include/ATen/ops/_indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5862420Z copying torch/include/ATen/ops/replication_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5863320Z copying torch/include/ATen/ops/index_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5869610Z copying torch/include/ATen/ops/conv_tbc_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5870420Z copying torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5877230Z copying torch/include/ATen/ops/logical_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5878060Z copying torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5879330Z copying torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5884670Z copying torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5885870Z copying torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5893240Z copying torch/include/ATen/ops/ceil_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5894450Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5895690Z copying torch/include/ATen/ops/nanquantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5900940Z copying torch/include/ATen/ops/_make_dep_token_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5902210Z copying torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5908890Z copying torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5909790Z copying torch/include/ATen/ops/special_round_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5916490Z copying torch/include/ATen/ops/_reshape_alias.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5917290Z copying torch/include/ATen/ops/le_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5925390Z copying torch/include/ATen/ops/softshrink_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5926220Z copying torch/include/ATen/ops/resolve_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5933570Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5934540Z copying torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5940790Z copying torch/include/ATen/ops/mvlgamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5941750Z copying torch/include/ATen/ops/lshift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5943010Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5948530Z copying torch/include/ATen/ops/_efficient_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5949520Z copying torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5954800Z copying torch/include/ATen/ops/special_gammaincc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5958230Z copying torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5963770Z copying torch/include/ATen/ops/cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5966420Z copying torch/include/ATen/ops/clamp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5970450Z copying torch/include/ATen/ops/binary_cross_entropy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5972670Z copying torch/include/ATen/ops/concat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5973710Z copying torch/include/ATen/ops/mul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5980540Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5982940Z copying torch/include/ATen/ops/special_multigammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5988560Z copying torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5989410Z copying torch/include/ATen/ops/fft_ifftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5991930Z copying torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5998110Z copying torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.5999810Z copying torch/include/ATen/ops/nonzero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6005300Z copying torch/include/ATen/ops/fliplr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6006120Z copying torch/include/ATen/ops/negative_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6008520Z copying torch/include/ATen/ops/fft_fftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6014580Z copying torch/include/ATen/ops/native_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6017080Z copying torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6022500Z copying torch/include/ATen/ops/new_empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6023700Z copying torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6025210Z copying torch/include/ATen/ops/scatter_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6031060Z copying torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6032010Z copying torch/include/ATen/ops/eye_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6038800Z copying torch/include/ATen/ops/cartesian_prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6039940Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6046620Z copying torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6047570Z copying torch/include/ATen/ops/conv_transpose2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6048840Z copying torch/include/ATen/ops/as_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6055420Z copying torch/include/ATen/ops/geometric_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6056290Z copying torch/include/ATen/ops/cosh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6063300Z copying torch/include/ATen/ops/copysign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6064290Z copying torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6071350Z copying torch/include/ATen/ops/output_nr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6072330Z copying torch/include/ATen/ops/argsort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6073500Z copying torch/include/ATen/ops/fft_hfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6079040Z copying torch/include/ATen/ops/sinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6080770Z copying torch/include/ATen/ops/_foreach_sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6087280Z copying torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6089410Z copying torch/include/ATen/ops/sin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6095360Z copying torch/include/ATen/ops/range_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6096350Z copying torch/include/ATen/ops/special_log_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6099820Z copying torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6104610Z copying torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6108930Z copying torch/include/ATen/ops/argmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6112030Z copying torch/include/ATen/ops/detach_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6118630Z copying torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6118940Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6119530Z copying torch/include/ATen/ops/isnan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6125060Z copying torch/include/ATen/ops/special_xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6126050Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6129920Z copying torch/include/ATen/ops/all_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6134230Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6137180Z copying torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6138360Z copying torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6144280Z copying torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6145520Z copying torch/include/ATen/ops/as_strided_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6152210Z copying torch/include/ATen/ops/scatter_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6152990Z copying torch/include/ATen/ops/_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6158920Z copying torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6160540Z copying torch/include/ATen/ops/sin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6167700Z copying torch/include/ATen/ops/random_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6168540Z copying torch/include/ATen/ops/_pdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6175320Z copying torch/include/ATen/ops/nll_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6176300Z copying torch/include/ATen/ops/tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6183170Z copying torch/include/ATen/ops/cumprod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6184200Z copying torch/include/ATen/ops/special_entr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6190730Z copying torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6191830Z copying torch/include/ATen/ops/any_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6193010Z copying torch/include/ATen/ops/_add_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6198800Z copying torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6200340Z copying torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6206660Z copying torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6207880Z copying torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6209170Z copying torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6214400Z copying torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6215800Z copying torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6223150Z copying torch/include/ATen/ops/linalg_cholesky_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6224100Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6231260Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6232210Z copying torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6233310Z copying torch/include/ATen/ops/fft_rfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6239130Z copying torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6240220Z copying torch/include/ATen/ops/special_entr_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6247510Z copying torch/include/ATen/ops/slow_conv3d_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6248190Z copying torch/include/ATen/ops/qr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6249440Z copying torch/include/ATen/ops/linalg_cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6254910Z copying torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6255860Z copying torch/include/ATen/ops/lerp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6264600Z copying torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6265410Z copying torch/include/ATen/ops/masked_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6272380Z copying torch/include/ATen/ops/flip_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6273340Z copying torch/include/ATen/ops/topk_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6280380Z copying torch/include/ATen/ops/_neg_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6281310Z copying torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6288510Z copying torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6289480Z copying torch/include/ATen/ops/col_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6290990Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6294810Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6298760Z copying torch/include/ATen/ops/rand_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6301840Z copying torch/include/ATen/ops/_foobar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6302710Z copying torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6306930Z copying torch/include/ATen/ops/all_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6310030Z copying torch/include/ATen/ops/native_channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6314740Z copying torch/include/ATen/ops/vdot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6315810Z copying torch/include/ATen/ops/_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6319630Z copying torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6324360Z copying torch/include/ATen/ops/any_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6328380Z copying torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6329110Z copying torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6334350Z copying torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6337160Z copying torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6341520Z copying torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6342530Z copying torch/include/ATen/ops/baddbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6346370Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6350840Z copying torch/include/ATen/ops/trace_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6354740Z copying torch/include/ATen/ops/nextafter_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6355700Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6360210Z copying torch/include/ATen/ops/softshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6363820Z copying torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6366350Z copying torch/include/ATen/ops/_native_multi_head_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6371400Z copying torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6376490Z copying torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6380650Z copying torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6384720Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6388430Z copying torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6389230Z copying torch/include/ATen/ops/renorm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6393650Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6396120Z copying torch/include/ATen/ops/t_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6401350Z copying torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6402180Z copying torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6405720Z copying torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6410280Z copying torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6414710Z copying torch/include/ATen/ops/special_sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6418090Z copying torch/include/ATen/ops/nll_loss_nd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6419330Z copying torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6423160Z copying torch/include/ATen/ops/_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6430490Z copying torch/include/ATen/ops/miopen_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6431670Z copying torch/include/ATen/ops/angle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6436290Z copying torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6438950Z copying torch/include/ATen/ops/gather_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6445020Z copying torch/include/ATen/ops/reflection_pad3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6446850Z copying torch/include/ATen/ops/relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6452670Z copying torch/include/ATen/ops/poisson_nll_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6453370Z copying torch/include/ATen/ops/bitwise_not_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6456460Z copying torch/include/ATen/ops/item_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6461050Z copying torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6462040Z copying torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6466000Z copying torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6466860Z copying torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6474910Z copying torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6475950Z copying torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6483080Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6483970Z copying torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6490700Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6491530Z copying torch/include/ATen/ops/pixel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6492750Z copying torch/include/ATen/ops/rshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6498650Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6499520Z copying torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6506390Z copying torch/include/ATen/ops/squeeze_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6507240Z copying torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6508440Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6514340Z copying torch/include/ATen/ops/mish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6515940Z copying torch/include/ATen/ops/subtract.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6522250Z copying torch/include/ATen/ops/trunc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6523900Z copying torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6525100Z copying torch/include/ATen/ops/amin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6531400Z copying torch/include/ATen/ops/amin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6532440Z copying torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6540590Z copying torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6541700Z copying torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6547540Z copying torch/include/ATen/ops/indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6548510Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6549650Z copying torch/include/ATen/ops/_reshape_from_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6556100Z copying torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6557230Z copying torch/include/ATen/ops/blackman_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6563470Z copying torch/include/ATen/ops/batch_norm_elemt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6564590Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6566310Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6571410Z copying torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6572630Z copying torch/include/ATen/ops/sort_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6577810Z copying torch/include/ATen/ops/logit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6580590Z copying torch/include/ATen/ops/_cummax_helper_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6586730Z copying torch/include/ATen/ops/cat_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6589630Z copying torch/include/ATen/ops/le_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6595000Z copying torch/include/ATen/ops/mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6603390Z copying torch/include/ATen/ops/is_inference.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6604220Z copying torch/include/ATen/ops/fft_ihfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6612130Z copying torch/include/ATen/ops/mode_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6613190Z copying torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6614420Z copying torch/include/ATen/ops/detach_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6619760Z copying torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6621190Z copying torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6627800Z copying torch/include/ATen/ops/corrcoef_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6628730Z copying torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6630660Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6633020Z copying torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6636840Z copying torch/include/ATen/ops/unflatten_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6640600Z copying torch/include/ATen/ops/avg_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6641940Z copying torch/include/ATen/ops/ldexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6646760Z copying torch/include/ATen/ops/special_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6649930Z copying torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6654750Z copying torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6655990Z copying torch/include/ATen/ops/le_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6658200Z copying torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6664040Z copying torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6666910Z copying torch/include/ATen/ops/align_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6671290Z copying torch/include/ATen/ops/linspace_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6672440Z copying torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6676300Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6680430Z copying torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6684120Z copying torch/include/ATen/ops/narrow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6687860Z copying torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6688780Z copying torch/include/ATen/ops/hspmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6693720Z copying torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6696480Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6701460Z copying torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6702370Z copying torch/include/ATen/ops/var_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6705270Z copying torch/include/ATen/ops/erfinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6710210Z copying torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6713970Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6717330Z copying torch/include/ATen/ops/dot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6718460Z copying torch/include/ATen/ops/sparse_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6723210Z copying torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6727030Z copying torch/include/ATen/ops/resize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6731680Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6733130Z copying torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6734470Z copying torch/include/ATen/ops/erfc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6741370Z copying torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6742620Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6748650Z copying torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6749710Z copying torch/include/ATen/ops/digamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6756180Z copying torch/include/ATen/ops/lstm_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6758110Z copying torch/include/ATen/ops/digamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6765050Z copying torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6765860Z copying torch/include/ATen/ops/col_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6772580Z copying torch/include/ATen/ops/tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6773480Z copying torch/include/ATen/ops/mm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6780190Z copying torch/include/ATen/ops/movedim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6781320Z copying torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6782580Z copying torch/include/ATen/ops/tril_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6787580Z copying torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6795110Z copying torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6796040Z copying torch/include/ATen/ops/matrix_H_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6802130Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6804240Z copying torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6809820Z copying torch/include/ATen/ops/_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6810680Z copying torch/include/ATen/ops/addbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6812150Z copying torch/include/ATen/ops/sym_storage_offset_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6817920Z copying torch/include/ATen/ops/ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6818850Z copying torch/include/ATen/ops/quantized_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6825720Z copying torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6827130Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6833850Z copying torch/include/ATen/ops/eq_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6834770Z copying torch/include/ATen/ops/angle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6835930Z copying torch/include/ATen/ops/take_along_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6841410Z copying torch/include/ATen/ops/_dimI_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6842680Z copying torch/include/ATen/ops/atan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6848840Z copying torch/include/ATen/ops/unfold_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6850600Z copying torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6851800Z copying torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6859140Z copying torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6859940Z copying torch/include/ATen/ops/special_ndtri_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6867190Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6867940Z copying torch/include/ATen/ops/resize_as_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6869070Z copying torch/include/ATen/ops/to_mkldnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6874800Z copying torch/include/ATen/ops/le.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6875940Z copying torch/include/ATen/ops/fft_ihfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6882530Z copying torch/include/ATen/ops/lstm_mps_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6884410Z copying torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6885590Z copying torch/include/ATen/ops/transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6892110Z copying torch/include/ATen/ops/meshgrid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6893060Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6899800Z copying torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6900930Z copying torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6902090Z copying torch/include/ATen/ops/_fused_adam_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6909200Z copying torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6910240Z copying torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6917220Z copying torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6918160Z copying torch/include/ATen/ops/special_gammainc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6925240Z copying torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6926210Z copying torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6932330Z copying torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6933680Z copying torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6939730Z copying torch/include/ATen/ops/fft_hfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6940850Z copying torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6942050Z copying torch/include/ATen/ops/split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6947240Z copying torch/include/ATen/ops/empty_permuted.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6948300Z copying torch/include/ATen/ops/smm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6954610Z copying torch/include/ATen/ops/_foreach_expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6956070Z copying torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6962470Z copying torch/include/ATen/ops/is_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6963310Z copying torch/include/ATen/ops/fft_fftshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6964640Z copying torch/include/ATen/ops/_convolution_mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6972480Z copying torch/include/ATen/ops/diagonal_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6978510Z copying torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6979720Z copying torch/include/ATen/ops/_unique_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6986140Z copying torch/include/ATen/ops/cdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6987230Z copying torch/include/ATen/ops/conv_tbc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6988580Z copying torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6995610Z copying torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.6996470Z copying torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7004350Z copying torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7009400Z copying torch/include/ATen/ops/logspace_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7010520Z copying torch/include/ATen/ops/record_stream_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7011770Z copying torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7018980Z copying torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7019980Z copying torch/include/ATen/ops/frac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7026770Z copying torch/include/ATen/ops/binomial_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7027720Z copying torch/include/ATen/ops/fft_ihfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7034480Z copying torch/include/ATen/ops/amin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7035670Z copying torch/include/ATen/ops/hamming_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7036980Z copying torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7042580Z copying torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7043460Z copying torch/include/ATen/ops/indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7050910Z copying torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7051930Z copying torch/include/ATen/ops/bitwise_and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7053200Z copying torch/include/ATen/ops/searchsorted_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7058330Z copying torch/include/ATen/ops/histc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7059510Z copying torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7065690Z copying torch/include/ATen/ops/is_pinned_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7067020Z copying torch/include/ATen/ops/empty_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7073560Z copying torch/include/ATen/ops/cholesky_inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7074750Z copying torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7076170Z copying torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7081260Z copying torch/include/ATen/ops/arctanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7082350Z copying torch/include/ATen/ops/alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7089070Z copying torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7090080Z copying torch/include/ATen/ops/linalg_pinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7097700Z copying torch/include/ATen/ops/instance_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7098890Z copying torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7105360Z copying torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7106350Z copying torch/include/ATen/ops/scatter_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7114000Z copying torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7114650Z copying torch/include/ATen/ops/kron_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7115910Z copying torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7119040Z copying torch/include/ATen/ops/arctan2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7124690Z copying torch/include/ATen/ops/eye.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7126650Z copying torch/include/ATen/ops/_foreach_log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7132720Z copying torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7133530Z copying torch/include/ATen/ops/_foreach_sqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7135580Z copying torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7142980Z copying torch/include/ATen/ops/silu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7144200Z copying torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7145330Z copying torch/include/ATen/ops/nll_loss2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7151520Z copying torch/include/ATen/ops/rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7153050Z copying torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7159870Z copying torch/include/ATen/ops/bartlett_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7161300Z copying torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7162790Z copying torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7167650Z copying torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7169210Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7176260Z copying torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7177450Z copying torch/include/ATen/ops/empty_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7184180Z copying torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7185190Z copying torch/include/ATen/ops/cudnn_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7397890Z copying torch/include/ATen/ops/_gather_sparse_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7398680Z copying torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7399930Z copying torch/include/ATen/ops/view_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7456380Z copying torch/include/ATen/ops/special_entr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7457260Z copying torch/include/ATen/ops/sinh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7458480Z copying torch/include/ATen/ops/_nested_from_padded_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7459890Z copying torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7485690Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7500270Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7501120Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7506440Z copying torch/include/ATen/ops/frac_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7534200Z copying torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7535520Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7549920Z copying torch/include/ATen/ops/_foreach_tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7550870Z copying torch/include/ATen/ops/tan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7570080Z copying torch/include/ATen/ops/frobenius_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7577040Z copying torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7588640Z copying torch/include/ATen/ops/sgn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7589750Z copying torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7590930Z copying torch/include/ATen/ops/_trilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7614710Z copying torch/include/ATen/ops/glu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7615920Z copying torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7617350Z copying torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7618720Z copying torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7636820Z copying torch/include/ATen/ops/as_strided_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7637840Z copying torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7639160Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7662680Z copying torch/include/ATen/ops/sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7663600Z copying torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7664870Z copying torch/include/ATen/ops/special_xlog1py.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7666070Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7667330Z copying torch/include/ATen/ops/inner_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7668550Z copying torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7669880Z copying torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7670950Z copying torch/include/ATen/ops/equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7686780Z copying torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7687690Z copying torch/include/ATen/ops/linalg_lu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7688770Z copying torch/include/ATen/ops/unbind_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7700300Z copying torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7701240Z copying torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7702440Z copying torch/include/ATen/ops/_pin_memory_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7703960Z copying torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7734940Z copying torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7735810Z copying torch/include/ATen/ops/linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7736980Z copying torch/include/ATen/ops/chalf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7750040Z copying torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7750900Z copying torch/include/ATen/ops/floor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7752300Z copying torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7753390Z copying torch/include/ATen/ops/special_polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7756650Z copying torch/include/ATen/ops/values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7757600Z copying torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7786840Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7787920Z copying torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7789130Z copying torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7810160Z copying torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7811070Z copying torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7822690Z copying torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7823590Z copying torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7828580Z copying torch/include/ATen/ops/_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7829480Z copying torch/include/ATen/ops/isposinf_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7830830Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7850160Z copying torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7851090Z copying torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7852220Z copying torch/include/ATen/ops/special_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7856430Z copying torch/include/ATen/ops/linalg_cond_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7857400Z copying torch/include/ATen/ops/to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7879660Z copying torch/include/ATen/ops/_linalg_svd_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7880490Z copying torch/include/ATen/ops/angle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7881670Z copying torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7882910Z copying torch/include/ATen/ops/allclose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7884880Z copying torch/include/ATen/ops/special_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7886060Z copying torch/include/ATen/ops/_embedding_bag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7887310Z copying torch/include/ATen/ops/kaiser_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7888630Z copying torch/include/ATen/ops/_unpack_dual_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7898070Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7899040Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7900270Z copying torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7901510Z copying torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7930530Z copying torch/include/ATen/ops/expand_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7931530Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7950620Z copying torch/include/ATen/ops/binary_cross_entropy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7951580Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7952830Z copying torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7954090Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7955370Z copying torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7956670Z copying torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7958020Z copying torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7959190Z copying torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7960540Z copying torch/include/ATen/ops/special_modified_bessel_k1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7992170Z copying torch/include/ATen/ops/rsqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7993030Z copying torch/include/ATen/ops/to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7997610Z copying torch/include/ATen/ops/fmin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7998610Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.7999760Z copying torch/include/ATen/ops/scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8005390Z copying torch/include/ATen/ops/scaled_dot_product_attention.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8006300Z copying torch/include/ATen/ops/mode_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8027200Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8028130Z copying torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8054760Z copying torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8055740Z copying torch/include/ATen/ops/_foreach_rsqrt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8057130Z copying torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8058430Z copying torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8066410Z copying torch/include/ATen/ops/mul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8076690Z copying torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8086530Z copying torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8100080Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8101220Z copying torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8102490Z copying torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8103780Z copying torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8105200Z copying torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8106360Z copying torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8107560Z copying torch/include/ATen/ops/gcd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8108730Z copying torch/include/ATen/ops/_dimV.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8110060Z copying torch/include/ATen/ops/batch_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8111220Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8112510Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8113670Z copying torch/include/ATen/ops/native_layer_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8114890Z copying torch/include/ATen/ops/special_ndtr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8116210Z copying torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8117340Z copying torch/include/ATen/ops/retain_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8118510Z copying torch/include/ATen/ops/asin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8119760Z copying torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8120970Z copying torch/include/ATen/ops/column_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8122180Z copying torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8123400Z copying torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8124590Z copying torch/include/ATen/ops/_flash_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8125900Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8127150Z copying torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8128400Z copying torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8129590Z copying torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8130830Z copying torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8132030Z copying torch/include/ATen/ops/qr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8133300Z copying torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8134480Z copying torch/include/ATen/ops/trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8135780Z copying torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8137050Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8138210Z copying torch/include/ATen/ops/_foreach_sub_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8139440Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8140680Z copying torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8141940Z copying torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8143050Z copying torch/include/ATen/ops/clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8144290Z copying torch/include/ATen/ops/is_leaf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8145610Z copying torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8146870Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8148010Z copying torch/include/ATen/ops/ldexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8149420Z copying torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8150710Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8152410Z copying torch/include/ATen/ops/upsample_nearest3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8153260Z copying torch/include/ATen/ops/bmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8154460Z copying torch/include/ATen/ops/linalg_inv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8155710Z copying torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8157100Z copying torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8158360Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8159600Z copying torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8160740Z copying torch/include/ATen/ops/randperm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8162000Z copying torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8283860Z copying torch/include/ATen/ops/lu_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8284800Z copying torch/include/ATen/ops/dense_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8286060Z copying torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8287290Z copying torch/include/ATen/ops/exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8288530Z copying torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8289760Z copying torch/include/ATen/ops/margin_ranking_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8290950Z copying torch/include/ATen/ops/bitwise_right_shift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8292190Z copying torch/include/ATen/ops/sparse_csr_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8293500Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8294630Z copying torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8295900Z copying torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8297050Z copying torch/include/ATen/ops/index_fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8337100Z copying torch/include/ATen/ops/maximum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8338110Z copying torch/include/ATen/ops/asinh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8339420Z copying torch/include/ATen/ops/bitwise_not_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8340770Z copying torch/include/ATen/ops/random_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8341910Z copying torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8343050Z copying torch/include/ATen/ops/_foreach_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8344300Z copying torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8345590Z copying torch/include/ATen/ops/special_entr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8346800Z copying torch/include/ATen/ops/upsample_bilinear2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8348100Z copying torch/include/ATen/ops/erf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8349290Z copying torch/include/ATen/ops/_cast_Char.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8350680Z copying torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8351830Z copying torch/include/ATen/ops/trace_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8353150Z copying torch/include/ATen/ops/hinge_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8354420Z copying torch/include/ATen/ops/bartlett_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8355630Z copying torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8356800Z copying torch/include/ATen/ops/indices_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8358090Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8359230Z copying torch/include/ATen/ops/unsafe_chunk.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8360640Z copying torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8361760Z copying torch/include/ATen/ops/_dirichlet_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8363130Z copying torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8364270Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8365710Z copying torch/include/ATen/ops/glu_backward_jvp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8366800Z copying torch/include/ATen/ops/igammac_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8368090Z copying torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8369470Z copying torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8370690Z copying torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8371850Z copying torch/include/ATen/ops/reflection_pad3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8373190Z copying torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8374510Z copying torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8375600Z copying torch/include/ATen/ops/gt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8376820Z copying torch/include/ATen/ops/_nnpack_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8378160Z copying torch/include/ATen/ops/fft_fft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8379570Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8380860Z copying torch/include/ATen/ops/relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8382110Z copying torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8383490Z copying torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8384840Z copying torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8386050Z copying torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8387220Z copying torch/include/ATen/ops/logical_and.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8388570Z copying torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8389790Z copying torch/include/ATen/ops/diff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8391020Z copying torch/include/ATen/ops/round_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8392340Z copying torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8393630Z copying torch/include/ATen/ops/softplus_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8394950Z copying torch/include/ATen/ops/bincount_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8396150Z copying torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8397400Z copying torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8398780Z copying torch/include/ATen/ops/_mkldnn_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8399920Z copying torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8401200Z copying torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8402410Z copying torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8403590Z copying torch/include/ATen/ops/special_digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8405050Z copying torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8406290Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8407520Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8408710Z copying torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8410110Z copying torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8411350Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8412530Z copying torch/include/ATen/ops/floor_divide_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8413760Z copying torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8415060Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8416230Z copying torch/include/ATen/ops/_cast_Char_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8417510Z copying torch/include/ATen/ops/embedding_renorm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8418650Z copying torch/include/ATen/ops/promote_types_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8420080Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8421380Z copying torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8422540Z copying torch/include/ATen/ops/_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8423710Z copying torch/include/ATen/ops/cov_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8424990Z copying torch/include/ATen/ops/greater_equal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8426180Z copying torch/include/ATen/ops/gather_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8427450Z copying torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8428630Z copying torch/include/ATen/ops/_is_all_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8429900Z copying torch/include/ATen/ops/nonzero_numpy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8431180Z copying torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8432350Z copying torch/include/ATen/ops/hardsigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8433690Z copying torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8434820Z copying torch/include/ATen/ops/msort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8436170Z copying torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8437380Z copying torch/include/ATen/ops/hstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8438540Z copying torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8439850Z copying torch/include/ATen/ops/divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8441030Z copying torch/include/ATen/ops/randn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8442300Z copying torch/include/ATen/ops/var_mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8443540Z copying torch/include/ATen/ops/special_xlog1py_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8444860Z copying torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8446120Z copying torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8447470Z copying torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8448560Z copying torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8453530Z copying torch/include/ATen/ops/_sparse_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8454480Z copying torch/include/ATen/ops/q_per_channel_axis.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8455710Z copying torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8461250Z copying torch/include/ATen/ops/_fused_adamw_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8462230Z copying torch/include/ATen/ops/complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8469060Z copying torch/include/ATen/ops/fix_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8470350Z copying torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8476440Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8477590Z copying torch/include/ATen/ops/cat_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8478810Z copying torch/include/ATen/ops/_empty_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8484400Z copying torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8485550Z copying torch/include/ATen/ops/to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8492420Z copying torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8493230Z copying torch/include/ATen/ops/_foreach_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8500110Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8501160Z copying torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8502330Z copying torch/include/ATen/ops/segment_reduce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8507560Z copying torch/include/ATen/ops/cos_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8509650Z copying torch/include/ATen/ops/linalg_tensorinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8514880Z copying torch/include/ATen/ops/fft_ifft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8517140Z copying torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8518770Z copying torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8525400Z copying torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8526280Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8532330Z copying torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8533390Z copying torch/include/ATen/ops/sym_stride.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8539490Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8540340Z copying torch/include/ATen/ops/tan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8541640Z copying torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8547320Z copying torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8548640Z copying torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8555030Z copying torch/include/ATen/ops/triu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8556220Z copying torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8562740Z copying torch/include/ATen/ops/hardshrink_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8563660Z copying torch/include/ATen/ops/argmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8564950Z copying torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8567790Z copying torch/include/ATen/ops/randn_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8573180Z copying torch/include/ATen/ops/histogram_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8577150Z copying torch/include/ATen/ops/dstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8580910Z copying torch/include/ATen/ops/_to_sparse_csc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8582010Z copying torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8588740Z copying torch/include/ATen/ops/_int_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8593780Z copying torch/include/ATen/ops/_lu_with_info_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8594800Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8601770Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8603290Z copying torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8609370Z copying torch/include/ATen/ops/trace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8610820Z copying torch/include/ATen/ops/matrix_exp_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8617590Z copying torch/include/ATen/ops/indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8620260Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8625360Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8626590Z copying torch/include/ATen/ops/gru_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8627950Z copying torch/include/ATen/ops/elu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8635020Z copying torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8635880Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8642050Z copying torch/include/ATen/ops/_test_warn_in_autograd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8643140Z copying torch/include/ATen/ops/arcsin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8650150Z copying torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8651080Z copying torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8872110Z copying torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8873530Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8874350Z copying torch/include/ATen/ops/atleast_3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8875610Z copying torch/include/ATen/ops/kthvalue_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8876820Z copying torch/include/ATen/ops/_spsolve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8877970Z copying torch/include/ATen/ops/_foreach_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8879170Z copying torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8880460Z copying torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8881660Z copying torch/include/ATen/ops/to_sparse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8882840Z copying torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8884170Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8885390Z copying torch/include/ATen/ops/trapz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8886560Z copying torch/include/ATen/ops/_trilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8887800Z copying torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8888980Z copying torch/include/ATen/ops/linear_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8890220Z copying torch/include/ATen/ops/_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8891410Z copying torch/include/ATen/ops/dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8892750Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8893860Z copying torch/include/ATen/ops/randperm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8895230Z copying torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8896400Z copying torch/include/ATen/ops/less_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8897650Z copying torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8898840Z copying torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8900150Z copying torch/include/ATen/ops/qscheme_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8901270Z copying torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8902430Z copying torch/include/ATen/ops/bmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8903800Z copying torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8905050Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8906220Z copying torch/include/ATen/ops/blackman_window.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8907490Z copying torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8908590Z copying torch/include/ATen/ops/elu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8909910Z copying torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8911000Z copying torch/include/ATen/ops/conv_transpose3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8912230Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8913490Z copying torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8914740Z copying torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8915940Z copying torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8917110Z copying torch/include/ATen/ops/index_select_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8918950Z copying torch/include/ATen/ops/dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8919600Z copying torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8920970Z copying torch/include/ATen/ops/cartesian_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8922240Z copying torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8923560Z copying torch/include/ATen/ops/_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8924780Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8925990Z copying torch/include/ATen/ops/ormqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8927300Z copying torch/include/ATen/ops/hardshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8928840Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8930020Z copying torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8931290Z copying torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8932480Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8933770Z copying torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8935060Z copying torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8936170Z copying torch/include/ATen/ops/channel_shuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8937490Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8938620Z copying torch/include/ATen/ops/indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8939930Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8941110Z copying torch/include/ATen/ops/ge_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8942480Z copying torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8943660Z copying torch/include/ATen/ops/minimum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8944850Z copying torch/include/ATen/ops/_dimI_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8945990Z copying torch/include/ATen/ops/resize_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8947420Z copying torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8948570Z copying torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8949720Z copying torch/include/ATen/ops/or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8950980Z copying torch/include/ATen/ops/is_same_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8952130Z copying torch/include/ATen/ops/cumsum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8953370Z copying torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8954590Z copying torch/include/ATen/ops/set_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8955820Z copying torch/include/ATen/ops/exponential_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8957230Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8958450Z copying torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8959790Z copying torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8960990Z copying torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8962210Z copying torch/include/ATen/ops/asin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8963440Z copying torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8964650Z copying torch/include/ATen/ops/mode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8966190Z copying torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8967470Z copying torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8968690Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8970020Z copying torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8971200Z copying torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8972450Z copying torch/include/ATen/ops/alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8973670Z copying torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8974810Z copying torch/include/ATen/ops/hsplit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8976120Z copying torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8977340Z copying torch/include/ATen/ops/kaiser_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8978490Z copying torch/include/ATen/ops/fft_fftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8979630Z copying torch/include/ATen/ops/greater_equal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8980910Z copying torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8982260Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8983820Z copying torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8990560Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.8991660Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9097250Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9098220Z copying torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9099490Z copying torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9100810Z copying torch/include/ATen/ops/vsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9102040Z copying torch/include/ATen/ops/_linalg_eigh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9103320Z copying torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9104600Z copying torch/include/ATen/ops/nanmedian_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9105820Z copying torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9107000Z copying torch/include/ATen/ops/addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9108180Z copying torch/include/ATen/ops/atan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9109530Z copying torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9110840Z copying torch/include/ATen/ops/channel_shuffle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9112040Z copying torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9113300Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9114520Z copying torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9115780Z copying torch/include/ATen/ops/_is_all_true.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9117040Z copying torch/include/ATen/ops/le_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9118420Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9119570Z copying torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9120850Z copying torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9122120Z copying torch/include/ATen/ops/index_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9123300Z copying torch/include/ATen/ops/max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9124560Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9125780Z copying torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9127030Z copying torch/include/ATen/ops/addmv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9128380Z copying torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9129600Z copying torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9130750Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9132060Z copying torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9133280Z copying torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9134550Z copying torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9135700Z copying torch/include/ATen/ops/embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9136960Z copying torch/include/ATen/ops/flatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9138100Z copying torch/include/ATen/ops/fft_hfftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9139460Z copying torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9140610Z copying torch/include/ATen/ops/_cudnn_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9141890Z copying torch/include/ATen/ops/isreal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9143100Z copying torch/include/ATen/ops/cumprod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9144360Z copying torch/include/ATen/ops/logical_xor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9145540Z copying torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9146770Z copying torch/include/ATen/ops/_unsafe_index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9147950Z copying torch/include/ATen/ops/cos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9149220Z copying torch/include/ATen/ops/fft_fftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9150700Z copying torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9151800Z copying torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9153110Z copying torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9154280Z copying torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9155990Z copying torch/include/ATen/ops/_embedding_bag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9157320Z copying torch/include/ATen/ops/_weight_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9163720Z copying torch/include/ATen/ops/eq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9167680Z copying torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9171560Z copying torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9208920Z copying torch/include/ATen/ops/cumprod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9209860Z 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-07-24T03:55:01.9211100Z copying torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9212320Z copying torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9213420Z copying torch/include/ATen/ops/_fft_c2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9214690Z copying torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9215860Z copying torch/include/ATen/ops/_to_sparse_bsc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9217140Z copying torch/include/ATen/ops/pad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9218300Z copying torch/include/ATen/ops/special_modified_bessel_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9219490Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9380970Z copying torch/include/ATen/ops/arcsinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9381870Z copying torch/include/ATen/ops/addr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9422180Z copying torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9423380Z copying torch/include/ATen/ops/cudnn_convolution_relu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9424940Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9426410Z copying torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9431000Z copying torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9432460Z copying torch/include/ATen/ops/_fused_rms_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9433860Z copying torch/include/ATen/ops/lu_unpack_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9434970Z copying torch/include/ATen/ops/_coalesced_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9436150Z copying torch/include/ATen/ops/_scaled_grouped_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9437410Z copying torch/include/ATen/ops/special_erfcx_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9438640Z copying torch/include/ATen/ops/var_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9439930Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9441160Z copying torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9442440Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9443670Z copying torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9445020Z copying torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9446180Z copying torch/include/ATen/ops/var_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9447440Z copying torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9448720Z copying torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9450170Z copying torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9451390Z copying torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9452530Z copying torch/include/ATen/ops/_scaled_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9453800Z copying torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9454940Z copying torch/include/ATen/ops/to_mkldnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9456190Z copying torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9457450Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9458640Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9459880Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9461050Z copying torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9462300Z copying torch/include/ATen/ops/bmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9463440Z copying torch/include/ATen/ops/_to_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9464710Z copying torch/include/ATen/ops/batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9465870Z copying torch/include/ATen/ops/log.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9467210Z copying torch/include/ATen/ops/igamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9468450Z copying torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9469600Z copying torch/include/ATen/ops/new_full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9470870Z copying torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9472250Z copying torch/include/ATen/ops/embedding_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9473230Z copying torch/include/ATen/ops/linalg_slogdet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9474460Z copying torch/include/ATen/ops/fft_rfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9475700Z copying torch/include/ATen/ops/_foreach_atan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9476980Z copying torch/include/ATen/ops/clip.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9478240Z copying torch/include/ATen/ops/reshape.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9479510Z copying torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9480970Z copying torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9482300Z copying torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9483500Z copying torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9484670Z copying torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9485920Z copying torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9487270Z copying torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9488570Z copying torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9489680Z copying torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9490900Z copying torch/include/ATen/ops/mvlgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9492120Z copying torch/include/ATen/ops/permute_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9493310Z copying torch/include/ATen/ops/sign_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9494650Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9495860Z copying torch/include/ATen/ops/reflection_pad2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9497050Z copying torch/include/ATen/ops/_foreach_minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9498240Z copying torch/include/ATen/ops/int_repr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9499540Z copying torch/include/ATen/ops/heaviside_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9500610Z copying torch/include/ATen/ops/column_stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9501770Z copying torch/include/ATen/ops/scatter_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9503070Z copying torch/include/ATen/ops/minimum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9504280Z copying torch/include/ATen/ops/to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9505560Z copying torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9506800Z copying torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9508050Z copying torch/include/ATen/ops/miopen_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9509340Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9510490Z copying torch/include/ATen/ops/sinc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9511780Z copying torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9512920Z copying torch/include/ATen/ops/real_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9514250Z copying torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9515460Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9516590Z copying torch/include/ATen/ops/align_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9517870Z copying torch/include/ATen/ops/acos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9519060Z copying torch/include/ATen/ops/minimum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9520250Z copying torch/include/ATen/ops/special_bessel_y0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9521590Z copying torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9522900Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9524100Z copying torch/include/ATen/ops/logdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9525260Z copying torch/include/ATen/ops/cauchy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9526700Z copying torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9527890Z copying torch/include/ATen/ops/is_vulkan_available_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9529180Z copying torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9530300Z copying torch/include/ATen/ops/gt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9531570Z copying torch/include/ATen/ops/ccol_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9532870Z copying torch/include/ATen/ops/normal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9534050Z copying torch/include/ATen/ops/cudnn_convolution_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9535350Z copying torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9536530Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9537780Z copying torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9544910Z copying torch/include/ATen/ops/linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9545860Z copying torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9552120Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9553150Z copying torch/include/ATen/ops/rnn_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9558940Z copying torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9560140Z copying torch/include/ATen/ops/replication_pad1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9561420Z copying torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9568550Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9569660Z copying torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9575480Z copying torch/include/ATen/ops/sym_constrain_range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9576810Z copying torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9582670Z copying torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9584140Z copying torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9591990Z copying torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9592710Z copying torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9599360Z copying torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9600120Z copying torch/include/ATen/ops/heaviside_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9607860Z copying torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9608540Z copying torch/include/ATen/ops/histc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9609740Z copying torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9615450Z copying torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9691350Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9692080Z copying torch/include/ATen/ops/square.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9693300Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9694490Z copying torch/include/ATen/ops/diagflat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9695720Z copying torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9697120Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9824590Z copying torch/include/ATen/ops/prod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9825410Z copying torch/include/ATen/ops/cdist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9826770Z copying torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9828040Z copying torch/include/ATen/ops/special_expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9829190Z copying torch/include/ATen/ops/atleast_1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9830430Z copying torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9831690Z copying torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9833010Z copying torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9834190Z copying torch/include/ATen/ops/conv_transpose1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9835360Z copying torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9836470Z copying torch/include/ATen/ops/fft_rfftfreq.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9838460Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9838940Z copying torch/include/ATen/ops/cummax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9840250Z copying torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9841370Z copying torch/include/ATen/ops/normal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9842640Z copying torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9843870Z copying torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9845030Z copying torch/include/ATen/ops/cumsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9846210Z copying torch/include/ATen/ops/reflection_pad2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9847670Z copying torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9848770Z copying torch/include/ATen/ops/histogram_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9850000Z copying torch/include/ATen/ops/_foreach_acos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9851290Z copying torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9852560Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9853690Z copying torch/include/ATen/ops/amin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9854910Z copying torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9856100Z copying torch/include/ATen/ops/linalg_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9857320Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9858570Z copying torch/include/ATen/ops/linalg_matrix_power.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9859770Z copying torch/include/ATen/ops/avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9860990Z copying torch/include/ATen/ops/unfold_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9862210Z copying torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9863500Z copying torch/include/ATen/ops/sigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9864770Z copying torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9865930Z copying torch/include/ATen/ops/norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9867070Z copying torch/include/ATen/ops/trunc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9868340Z copying torch/include/ATen/ops/linalg_qr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9869790Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9870890Z copying torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9872150Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9873330Z copying torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9874680Z copying torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9875810Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9876980Z copying torch/include/ATen/ops/lt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9878200Z copying torch/include/ATen/ops/scatter_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9879410Z copying torch/include/ATen/ops/crow_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9880580Z copying torch/include/ATen/ops/to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9881860Z copying torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9882960Z copying torch/include/ATen/ops/pixel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9884160Z copying torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9885370Z copying torch/include/ATen/ops/view_as_complex_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9886570Z copying torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9887870Z copying torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9889090Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9890260Z copying torch/include/ATen/ops/special_expit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9891580Z copying torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9892890Z copying torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9894020Z copying torch/include/ATen/ops/lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9895270Z copying torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9896400Z copying torch/include/ATen/ops/elu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9897800Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9898870Z copying torch/include/ATen/ops/rename.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9900210Z copying torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9901500Z copying torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9902810Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9903980Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9905130Z copying torch/include/ATen/ops/xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9906400Z copying torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9907560Z copying torch/include/ATen/ops/max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9908810Z copying torch/include/ATen/ops/log2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:01.9910010Z copying torch/include/ATen/ops/sub_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0094030Z copying torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0095320Z copying torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0096440Z copying torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0097720Z copying torch/include/ATen/ops/norm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0098940Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0100170Z copying torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0101340Z copying torch/include/ATen/ops/empty_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0102680Z copying torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0103800Z copying torch/include/ATen/ops/native_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0105010Z copying torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0106170Z copying torch/include/ATen/ops/_is_zerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0107400Z copying torch/include/ATen/ops/_log_softmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0108610Z copying torch/include/ATen/ops/col_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0109790Z copying torch/include/ATen/ops/diagonal_scatter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0110960Z copying torch/include/ATen/ops/index_select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0112190Z copying torch/include/ATen/ops/gt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0113420Z copying torch/include/ATen/ops/vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0114910Z copying torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0116090Z copying torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0117300Z copying torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0118520Z copying torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0119830Z copying torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0120990Z copying torch/include/ATen/ops/signbit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0122270Z copying torch/include/ATen/ops/_foreach_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0123450Z copying torch/include/ATen/ops/add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0124770Z copying torch/include/ATen/ops/_addmm_activation_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0125960Z copying torch/include/ATen/ops/maximum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0127320Z copying torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0128570Z copying torch/include/ATen/ops/elu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0129760Z copying torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0131160Z copying torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0132280Z copying torch/include/ATen/ops/tril_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0133490Z copying torch/include/ATen/ops/special_bessel_j0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0134760Z copying torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0135920Z copying torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0137160Z copying torch/include/ATen/ops/_lazy_clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0138340Z copying torch/include/ATen/ops/silu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0139560Z copying torch/include/ATen/ops/_slow_conv2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0140780Z copying torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0141970Z copying torch/include/ATen/ops/result_type_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0143210Z copying torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0144640Z copying torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0145780Z copying torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0147040Z copying torch/include/ATen/ops/special_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0148220Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0149460Z copying torch/include/ATen/ops/_make_dep_token_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0150580Z copying torch/include/ATen/ops/special_zeta_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0151860Z copying torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0153050Z copying torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0154340Z copying torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0155470Z copying torch/include/ATen/ops/fft_irfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0156710Z copying torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0157930Z copying torch/include/ATen/ops/sum_to_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0159170Z copying torch/include/ATen/ops/transpose_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0160470Z copying torch/include/ATen/ops/trace_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0161630Z copying torch/include/ATen/ops/fft_rfft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0163000Z copying torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0164200Z copying torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0165450Z copying torch/include/ATen/ops/one_hot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0166740Z copying torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0167990Z copying torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0169100Z copying torch/include/ATen/ops/atleast_2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0170370Z copying torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0171690Z copying torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0172770Z copying torch/include/ATen/ops/randint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0174700Z copying torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0175610Z copying torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0176800Z copying torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0178080Z copying torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0179420Z copying torch/include/ATen/ops/broadcast_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0180640Z copying torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0181800Z copying torch/include/ATen/ops/sym_constrain_range.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0183140Z copying torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0184240Z copying torch/include/ATen/ops/fft_fftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0185450Z copying torch/include/ATen/ops/glu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0186790Z copying torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0187900Z copying torch/include/ATen/ops/diag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0189230Z copying torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0190420Z copying torch/include/ATen/ops/gather_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0191720Z copying torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0192880Z copying torch/include/ATen/ops/median.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0194170Z copying torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0195310Z copying torch/include/ATen/ops/cummin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0196600Z copying torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0197820Z copying torch/include/ATen/ops/cummax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0199210Z copying torch/include/ATen/ops/native_layer_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0200360Z copying torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0201590Z copying torch/include/ATen/ops/igammac_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0202870Z copying torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0205400Z copying torch/include/ATen/ops/linalg_qr_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0206700Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0209700Z copying torch/include/ATen/ops/celu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0214120Z copying torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0217190Z copying torch/include/ATen/ops/addr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0218100Z copying torch/include/ATen/ops/where.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0224430Z copying torch/include/ATen/ops/empty_strided_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0227780Z copying torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0232780Z copying torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0233560Z copying torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0236880Z copying torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0241930Z copying torch/include/ATen/ops/embedding.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0242980Z copying torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0246370Z copying torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0254850Z copying torch/include/ATen/ops/sym_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0259540Z copying torch/include/ATen/ops/fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0260430Z copying torch/include/ATen/ops/relu6.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0262740Z copying torch/include/ATen/ops/_coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0268430Z copying torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0269320Z copying torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0272900Z copying torch/include/ATen/ops/reflection_pad3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0277870Z copying torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0281590Z copying torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0286000Z copying torch/include/ATen/ops/range_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0287110Z copying torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0290000Z copying torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0294580Z copying torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0298290Z copying torch/include/ATen/ops/bmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0299250Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0303960Z copying torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0312160Z copying torch/include/ATen/ops/triu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0313050Z copying torch/include/ATen/ops/negative.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0319520Z copying torch/include/ATen/ops/linalg_lstsq_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0321350Z copying torch/include/ATen/ops/empty_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0327470Z copying torch/include/ATen/ops/argmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0328350Z copying torch/include/ATen/ops/_to_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0329890Z copying torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0335460Z copying torch/include/ATen/ops/upsample_bicubic2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0336310Z copying torch/include/ATen/ops/arcsinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0343250Z copying torch/include/ATen/ops/q_per_channel_scales.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0344110Z copying torch/include/ATen/ops/tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0350900Z copying torch/include/ATen/ops/_test_optional_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0351890Z copying torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0353070Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0358760Z copying torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0359790Z copying torch/include/ATen/ops/pdist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0366680Z copying torch/include/ATen/ops/_test_string_default.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0367640Z copying torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0368890Z copying torch/include/ATen/ops/narrow_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0374230Z copying torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0375230Z copying torch/include/ATen/ops/argmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0381920Z copying torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0383140Z copying torch/include/ATen/ops/is_signed_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0390020Z copying torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0390840Z copying torch/include/ATen/ops/_test_optional_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0392280Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0397310Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0398630Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0405410Z copying torch/include/ATen/ops/_weight_norm_interface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0406200Z copying torch/include/ATen/ops/atanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0414370Z copying torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0415280Z copying torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0422890Z copying torch/include/ATen/ops/polar_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0429340Z copying torch/include/ATen/ops/square_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0430230Z copying torch/include/ATen/ops/argsort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0431410Z copying torch/include/ATen/ops/slice_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0432630Z copying torch/include/ATen/ops/erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0438240Z copying torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0439070Z copying torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0445750Z copying torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0446770Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0454980Z copying torch/include/ATen/ops/norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0455800Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0456890Z copying torch/include/ATen/ops/mean.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0460050Z copying torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0464190Z copying torch/include/ATen/ops/_sparse_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0467490Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0468260Z copying torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0473820Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0476130Z copying torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0481880Z copying torch/include/ATen/ops/chalf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0483130Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0489490Z copying torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0490880Z copying torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0492190Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0498970Z copying torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0499880Z copying torch/include/ATen/ops/_amp_update_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0506610Z copying torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0507460Z copying torch/include/ATen/ops/pow_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0514350Z copying torch/include/ATen/ops/frexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0515320Z copying torch/include/ATen/ops/cholesky_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0521600Z copying torch/include/ATen/ops/_dim_arange_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0522680Z copying torch/include/ATen/ops/median_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0529580Z copying torch/include/ATen/ops/sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0530940Z copying torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0538090Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0539050Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0540280Z copying torch/include/ATen/ops/bernoulli_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0546190Z copying torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0547110Z copying torch/include/ATen/ops/masked_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0548460Z copying torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0721540Z copying torch/include/ATen/ops/_foreach_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0722410Z copying torch/include/ATen/ops/logical_and_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0723670Z copying torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0724890Z copying torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0726180Z copying torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0727300Z copying torch/include/ATen/ops/conv1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0728440Z copying torch/include/ATen/ops/lcm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0729790Z copying torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0731120Z copying torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0732280Z copying torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0733440Z copying torch/include/ATen/ops/empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0734690Z copying torch/include/ATen/ops/_make_dep_token.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0735910Z copying torch/include/ATen/ops/complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0737040Z copying torch/include/ATen/ops/max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0738310Z copying torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0739760Z copying torch/include/ATen/ops/logaddexp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0764450Z copying torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0765650Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0766830Z copying torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0768120Z copying torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0769330Z copying torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0770640Z copying torch/include/ATen/ops/nansum_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0771870Z copying torch/include/ATen/ops/cholesky_inverse_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0773170Z copying torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0774250Z copying torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0775530Z copying torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0776760Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0777960Z copying torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0779240Z copying torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0780370Z copying torch/include/ATen/ops/scatter_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0781580Z copying torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0782790Z copying torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0783930Z copying torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0785340Z copying torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0786490Z copying torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0787660Z copying torch/include/ATen/ops/polygamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0788840Z copying torch/include/ATen/ops/lgamma_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0790120Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0791360Z copying torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0792520Z copying torch/include/ATen/ops/cholesky_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0793640Z copying torch/include/ATen/ops/max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0794930Z copying torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0796110Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0797310Z copying torch/include/ATen/ops/row_stack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0798530Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0799850Z copying torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0801110Z copying torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0802230Z copying torch/include/ATen/ops/empty_strided.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0803570Z copying torch/include/ATen/ops/_embedding_bag_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0804740Z copying torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0805890Z copying torch/include/ATen/ops/abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0807110Z copying torch/include/ATen/ops/moveaxis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0808370Z copying torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0809650Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0810920Z copying torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0812050Z copying torch/include/ATen/ops/conj_physical.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0813260Z copying torch/include/ATen/ops/_foreach_asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0814520Z copying torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0815700Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0816860Z copying torch/include/ATen/ops/deg2rad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0818080Z copying torch/include/ATen/ops/median_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0819310Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0827290Z copying torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0828370Z copying torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0829540Z copying torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0830840Z copying torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0832000Z copying torch/include/ATen/ops/batch_norm_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0833160Z copying torch/include/ATen/ops/baddbmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0834460Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0835640Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0837050Z copying torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0838090Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0839420Z copying torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0840550Z copying torch/include/ATen/ops/unfold_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0841880Z copying torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0843130Z copying torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0844280Z copying torch/include/ATen/ops/huber_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0845450Z copying torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0846650Z copying torch/include/ATen/ops/pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0847940Z copying torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0849080Z copying torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0850210Z copying torch/include/ATen/ops/stft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0851480Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0852780Z copying torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0853930Z copying torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0858840Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0859790Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0864510Z copying torch/include/ATen/ops/linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0867860Z copying torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0872300Z copying torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0873310Z copying torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0875850Z copying torch/include/ATen/ops/special_ndtri_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0881070Z copying torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0883770Z copying torch/include/ATen/ops/logit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0888620Z copying torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0889560Z copying torch/include/ATen/ops/nanmean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0893000Z copying torch/include/ATen/ops/to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0897580Z copying torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0901260Z copying torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0904720Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0905340Z copying torch/include/ATen/ops/polygamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0910050Z copying torch/include/ATen/ops/normal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0913820Z copying torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0917670Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0923600Z copying torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0927610Z copying torch/include/ATen/ops/add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0931130Z copying torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0931940Z copying torch/include/ATen/ops/special_gammainc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0987570Z copying torch/include/ATen/ops/batch_norm_gather_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0988770Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0989980Z copying torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0991200Z copying torch/include/ATen/ops/stack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0992520Z copying torch/include/ATen/ops/isin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0993690Z copying torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0994900Z copying torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0996200Z copying torch/include/ATen/ops/svd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0997420Z copying torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.0999420Z copying torch/include/ATen/ops/hspmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1000030Z copying torch/include/ATen/ops/conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1001220Z copying torch/include/ATen/ops/linalg_lu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1002470Z copying torch/include/ATen/ops/addmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1003730Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1004960Z copying torch/include/ATen/ops/clone_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1006350Z copying torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1007710Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1008890Z copying torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1010340Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1011600Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1012870Z copying torch/include/ATen/ops/linalg_eigvals.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1014120Z copying torch/include/ATen/ops/linalg_vander_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1019170Z copying torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1020590Z copying torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1025330Z copying torch/include/ATen/ops/conv_tbc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1026930Z copying torch/include/ATen/ops/isposinf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1034160Z copying torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1035340Z copying torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1036780Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1041730Z copying torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1042600Z copying torch/include/ATen/ops/triu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1048020Z copying torch/include/ATen/ops/scatter_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1050140Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1056810Z copying torch/include/ATen/ops/miopen_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1057590Z copying torch/include/ATen/ops/fill_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1058960Z copying torch/include/ATen/ops/special_digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1064180Z copying torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1065260Z copying torch/include/ATen/ops/_test_serialization_subcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1071980Z copying torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1073030Z copying torch/include/ATen/ops/_nested_get_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1080470Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1081460Z copying torch/include/ATen/ops/neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1082840Z copying torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1089740Z copying torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1095560Z copying torch/include/ATen/ops/sparse_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1096630Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1104030Z copying torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1104900Z copying torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1106110Z copying torch/include/ATen/ops/_copy_from_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1111420Z copying torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1112450Z copying torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1119170Z copying torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1120870Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1122190Z copying torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1125040Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1131130Z copying torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1133550Z copying torch/include/ATen/ops/dequantize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1138250Z copying torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1139670Z copying torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1143290Z copying torch/include/ATen/ops/sign_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1152490Z copying torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1158100Z copying torch/include/ATen/ops/_dimV_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1165760Z copying torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1166960Z copying torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1168880Z copying torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1175030Z copying torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1176170Z copying torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1183010Z copying torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1183790Z copying torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1190290Z copying torch/include/ATen/ops/_prelu_kernel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1191400Z copying torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1192750Z copying torch/include/ATen/ops/relu6_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1197730Z copying torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1198880Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1206800Z copying torch/include/ATen/ops/expm1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1207950Z copying torch/include/ATen/ops/kron.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1214580Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1215510Z copying torch/include/ATen/ops/cat_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1216760Z copying torch/include/ATen/ops/_linalg_check_errors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1222160Z copying torch/include/ATen/ops/triplet_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1223160Z copying torch/include/ATen/ops/tril.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1229970Z copying torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1230860Z copying torch/include/ATen/ops/fft_rfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1232370Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1238300Z copying torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1238970Z copying torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1245480Z copying torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1246460Z copying torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1252960Z copying torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1254330Z copying torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1255860Z copying torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1262860Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1269050Z copying torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1270420Z copying torch/include/ATen/ops/hardshrink_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1276900Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1277820Z copying torch/include/ATen/ops/sym_stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1279120Z copying torch/include/ATen/ops/_make_dual_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1284620Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1285510Z copying torch/include/ATen/ops/hardswish_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1292770Z copying torch/include/ATen/ops/elu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1293660Z copying torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1297180Z copying torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1300950Z copying torch/include/ATen/ops/abs_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1301840Z copying torch/include/ATen/ops/conv_transpose1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1306220Z copying torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1309950Z copying torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1313790Z copying torch/include/ATen/ops/poisson_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1314720Z copying torch/include/ATen/ops/embedding_renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1319180Z copying torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1322960Z copying torch/include/ATen/ops/max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1327870Z copying torch/include/ATen/ops/minimum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1330270Z copying torch/include/ATen/ops/log_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1334660Z copying torch/include/ATen/ops/_sobol_engine_ff.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1335810Z copying torch/include/ATen/ops/native_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1339210Z copying torch/include/ATen/ops/block_diag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1344400Z copying torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1347470Z copying torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1351640Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1352750Z copying torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1354290Z copying torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1357290Z copying torch/include/ATen/ops/acosh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1361970Z copying torch/include/ATen/ops/roll_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1370810Z copying torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1374110Z copying torch/include/ATen/ops/_foreach_log2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1375630Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1383160Z copying torch/include/ATen/ops/linear_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1387710Z copying torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1388930Z copying torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1392510Z copying torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1396840Z copying torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1404610Z copying torch/include/ATen/ops/digamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1409860Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1413580Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1418040Z copying torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1423260Z copying torch/include/ATen/ops/conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1426960Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1430960Z copying torch/include/ATen/ops/native_dropout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1431670Z copying torch/include/ATen/ops/_unsafe_index.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1435620Z copying torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1439670Z copying torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1444050Z copying torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1447230Z copying torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1448500Z copying torch/include/ATen/ops/_unique2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1453690Z copying torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1455490Z copying torch/include/ATen/ops/_foreach_log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1461810Z copying torch/include/ATen/ops/native_dropout_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1462680Z copying torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1466690Z copying torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1470980Z copying torch/include/ATen/ops/_to_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1474150Z copying torch/include/ATen/ops/empty_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1475130Z copying torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1480610Z copying torch/include/ATen/ops/bernoulli.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1482510Z copying torch/include/ATen/ops/_pad_circular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1487990Z copying torch/include/ATen/ops/diagonal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1488990Z copying torch/include/ATen/ops/index_select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1495740Z copying torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1497000Z copying torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1503720Z copying torch/include/ATen/ops/size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1504860Z copying torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1506140Z copying torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1511680Z copying torch/include/ATen/ops/special_psi.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1512550Z copying torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1518880Z copying torch/include/ATen/ops/addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1521170Z copying torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1526710Z copying torch/include/ATen/ops/select_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1527750Z copying torch/include/ATen/ops/special_multigammaln_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1529000Z copying torch/include/ATen/ops/exp2_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1534790Z copying torch/include/ATen/ops/_foreach_addcmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1535740Z copying torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1543050Z copying torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1544180Z copying torch/include/ATen/ops/type_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1550740Z copying torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1551490Z copying torch/include/ATen/ops/range_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1553060Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1558180Z copying torch/include/ATen/ops/glu_backward_jvp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1559420Z copying torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1566210Z copying torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1567470Z copying torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1568660Z copying torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1575370Z copying torch/include/ATen/ops/bincount.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1580990Z copying torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1581860Z copying torch/include/ATen/ops/hann_window_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1588880Z copying torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1596570Z copying torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1597530Z copying torch/include/ATen/ops/elu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1599150Z copying torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1605450Z copying torch/include/ATen/ops/cummaxmin_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1606590Z copying torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1614480Z copying torch/include/ATen/ops/affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1615680Z copying torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1621850Z copying torch/include/ATen/ops/split_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1623080Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1624330Z copying torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1626380Z copying torch/include/ATen/ops/greater_equal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1630890Z copying torch/include/ATen/ops/imag.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1634080Z copying torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1635330Z copying torch/include/ATen/ops/special_i0e_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1640480Z copying torch/include/ATen/ops/max_unpool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1643270Z copying torch/include/ATen/ops/erf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1648700Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1649830Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1652570Z copying torch/include/ATen/ops/matrix_H.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1657960Z copying torch/include/ATen/ops/transpose_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1659190Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1666300Z copying torch/include/ATen/ops/fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1667840Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1674860Z copying torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1676030Z copying torch/include/ATen/ops/amin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1677230Z copying torch/include/ATen/ops/rms_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1683270Z copying torch/include/ATen/ops/asin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1684420Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1691370Z copying torch/include/ATen/ops/fliplr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1692540Z copying torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1693770Z copying torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1699510Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1700780Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1707200Z copying torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1708190Z copying torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1709430Z copying torch/include/ATen/ops/sparse_sampled_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1715810Z copying torch/include/ATen/ops/log10.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1716930Z copying torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1723950Z copying torch/include/ATen/ops/quantized_max_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1725920Z copying torch/include/ATen/ops/masked_scatter_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1731420Z copying torch/include/ATen/ops/i0_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1732910Z copying torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1734020Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1739120Z copying torch/include/ATen/ops/log_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1741710Z copying torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1749110Z copying torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1755900Z copying torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1763280Z copying torch/include/ATen/ops/lcm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1764580Z copying torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1766010Z copying torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1771390Z copying torch/include/ATen/ops/softplus_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1772560Z copying torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1779970Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1780660Z copying torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1785050Z copying torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1787200Z copying torch/include/ATen/ops/conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1788880Z copying torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1793780Z copying torch/include/ATen/ops/erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1798780Z copying torch/include/ATen/ops/avg_pool1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1802780Z copying torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1808160Z copying torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1810790Z copying torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1811900Z copying torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1818680Z copying torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1819520Z copying torch/include/ATen/ops/matmul_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1826330Z copying torch/include/ATen/ops/coalesce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1827230Z copying torch/include/ATen/ops/_foreach_log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1828460Z copying torch/include/ATen/ops/_lu_with_info_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1833250Z copying torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1835010Z copying torch/include/ATen/ops/expm1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1840950Z copying torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1843730Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1850960Z copying torch/include/ATen/ops/_weight_norm_interface_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1852650Z copying torch/include/ATen/ops/scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1858410Z copying torch/include/ATen/ops/ne_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1859460Z copying torch/include/ATen/ops/addcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1861760Z copying torch/include/ATen/ops/special_logsumexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1867440Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1870330Z copying torch/include/ATen/ops/to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1874810Z copying torch/include/ATen/ops/_foreach_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1875850Z copying torch/include/ATen/ops/floor_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1880060Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1884040Z copying torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1888160Z copying torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1889540Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1893540Z copying torch/include/ATen/ops/triangular_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1896380Z copying torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1901510Z copying torch/include/ATen/ops/dstack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1902750Z copying torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1906710Z copying torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1911110Z copying torch/include/ATen/ops/special_xlog1py_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1914350Z copying torch/include/ATen/ops/maximum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1915560Z copying torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1920940Z copying torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1928850Z copying torch/include/ATen/ops/contiguous.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1930250Z copying torch/include/ATen/ops/view_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1936030Z copying torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1937770Z copying torch/include/ATen/ops/group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1943450Z copying torch/include/ATen/ops/_fused_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1944800Z copying torch/include/ATen/ops/sgn_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1946410Z copying torch/include/ATen/ops/max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1950920Z copying torch/include/ATen/ops/multiply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1951920Z copying torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1956470Z copying torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1960430Z copying torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1961930Z copying torch/include/ATen/ops/is_signed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1965830Z copying torch/include/ATen/ops/special_ndtri.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1968640Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1975520Z copying torch/include/ATen/ops/lt_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1976390Z copying torch/include/ATen/ops/requires_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1982870Z copying torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1984070Z copying torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1987010Z copying torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1991480Z copying torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1992870Z copying torch/include/ATen/ops/round_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1995810Z copying torch/include/ATen/ops/reflection_pad1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.1999700Z copying torch/include/ATen/ops/norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2001500Z copying torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2006930Z copying torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2008140Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2014870Z copying torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2016070Z copying torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2022940Z copying torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2024240Z copying torch/include/ATen/ops/rand.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2030620Z copying torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2031740Z copying torch/include/ATen/ops/prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2033110Z copying torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2038100Z copying torch/include/ATen/ops/q_per_channel_scales_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2039210Z copying torch/include/ATen/ops/special_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2045410Z copying torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2046270Z copying torch/include/ATen/ops/i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2047840Z copying torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2053800Z copying torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2054670Z copying torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2061160Z copying torch/include/ATen/ops/_nested_get_values_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2062230Z copying torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2068110Z copying torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2069680Z copying torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2075500Z copying torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2076620Z copying torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2077870Z copying torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2084700Z copying torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2086050Z copying torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2092790Z copying torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2094050Z copying torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2100070Z copying torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2101730Z copying torch/include/ATen/ops/_pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2108990Z copying torch/include/ATen/ops/nuclear_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2117650Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2123800Z copying torch/include/ATen/ops/ceil_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2125080Z copying torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2126910Z copying torch/include/ATen/ops/zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2131170Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2132970Z copying torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2138840Z copying torch/include/ATen/ops/isnan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2140350Z copying torch/include/ATen/ops/frac_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2141740Z copying torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2149300Z copying torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2150780Z copying torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2156720Z copying torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2158060Z copying torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2164280Z copying torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2165400Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2166860Z copying torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2171750Z copying torch/include/ATen/ops/erf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2172770Z copying torch/include/ATen/ops/eye_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2179440Z copying torch/include/ATen/ops/argsort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2180770Z copying torch/include/ATen/ops/column_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2182260Z copying torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2189070Z copying torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2190100Z copying torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2196180Z copying torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2197320Z copying torch/include/ATen/ops/sum_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2204650Z copying torch/include/ATen/ops/asin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2205800Z copying torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2206930Z copying torch/include/ATen/ops/fft_irfft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2212550Z copying torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2213390Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2220860Z copying torch/include/ATen/ops/permute_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2221700Z copying torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2223000Z copying torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2228180Z copying torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2229430Z copying torch/include/ATen/ops/row_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2236130Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2237500Z copying torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2238890Z copying torch/include/ATen/ops/quantize_per_channel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2244070Z copying torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2245140Z copying torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2251230Z copying torch/include/ATen/ops/histogram.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2253410Z copying torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2259260Z copying torch/include/ATen/ops/special_i0e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2260700Z copying torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2261990Z copying torch/include/ATen/ops/as_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2269470Z copying torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2270500Z copying torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2277430Z copying torch/include/ATen/ops/_functional_assert_async_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2278220Z copying torch/include/ATen/ops/amax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2284820Z copying torch/include/ATen/ops/retains_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2286090Z copying torch/include/ATen/ops/mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2292230Z copying torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2293940Z copying torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2295260Z copying torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2302260Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2303250Z copying torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2309680Z copying torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2311070Z copying torch/include/ATen/ops/view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2314890Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2320010Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2321350Z copying torch/include/ATen/ops/numpy_T_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2328370Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2335830Z copying torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2343020Z copying torch/include/ATen/ops/cauchy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2344730Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2346500Z copying torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2350600Z copying torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2352190Z copying torch/include/ATen/ops/atanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2358880Z copying torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2360230Z copying torch/include/ATen/ops/native_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2365950Z copying torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2367410Z copying torch/include/ATen/ops/_masked_softmax_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2368510Z copying torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2374040Z copying torch/include/ATen/ops/_foreach_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2375230Z copying torch/include/ATen/ops/fft_fftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2383010Z copying torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2384000Z copying torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2390510Z copying torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2391790Z copying torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2393130Z copying torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2397770Z copying torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2399790Z copying torch/include/ATen/ops/_cast_Short_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2405710Z copying torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2406790Z copying torch/include/ATen/ops/logit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2408010Z copying torch/include/ATen/ops/remainder_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2415440Z copying torch/include/ATen/ops/bilinear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2416440Z copying torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2423160Z copying torch/include/ATen/ops/_sparse_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2423980Z copying torch/include/ATen/ops/_foreach_asin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2431110Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2432000Z copying torch/include/ATen/ops/split_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2438840Z copying torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2439790Z copying torch/include/ATen/ops/any_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2446550Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2447750Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2448980Z copying torch/include/ATen/ops/softplus_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2454900Z copying torch/include/ATen/ops/softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2455750Z copying torch/include/ATen/ops/ccol_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2462190Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2463850Z copying torch/include/ATen/ops/_fft_r2c.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2469810Z copying torch/include/ATen/ops/outer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2470750Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2472000Z copying torch/include/ATen/ops/hypot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2479160Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2480190Z copying torch/include/ATen/ops/adjoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2484270Z copying torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2488210Z copying torch/include/ATen/ops/flip_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2491890Z copying torch/include/ATen/ops/flipud.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2492870Z copying torch/include/ATen/ops/argmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2497600Z copying torch/include/ATen/ops/_foreach_exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2501480Z copying torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2505670Z copying torch/include/ATen/ops/addbmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2506560Z copying torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2509290Z copying torch/include/ATen/ops/exp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2514360Z copying torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2517440Z copying torch/include/ATen/ops/flipud_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2518520Z copying torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2524850Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2526070Z copying torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2529990Z copying torch/include/ATen/ops/_dimV_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2533830Z copying torch/include/ATen/ops/reflection_pad2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2538730Z copying torch/include/ATen/ops/mvlgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2543420Z copying torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2547050Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2551740Z copying torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2552640Z copying torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2555880Z copying torch/include/ATen/ops/_sparse_sum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2561090Z copying torch/include/ATen/ops/_aminmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2564620Z copying torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2568260Z copying torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2569450Z copying torch/include/ATen/ops/miopen_rnn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2573500Z copying torch/include/ATen/ops/normal_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2577100Z copying torch/include/ATen/ops/dot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2582020Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2582920Z copying torch/include/ATen/ops/view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2590640Z copying torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2593900Z copying torch/include/ATen/ops/angle_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2595330Z copying torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2600060Z copying torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2602080Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2608050Z copying torch/include/ATen/ops/_make_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2609080Z copying torch/include/ATen/ops/_rowwise_prune_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2614800Z copying torch/include/ATen/ops/special_erfcx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2616610Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2623040Z copying torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2623990Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2625330Z copying torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2631790Z copying torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2632880Z copying torch/include/ATen/ops/_unsafe_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2637430Z copying torch/include/ATen/ops/_conj_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2640220Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2644990Z copying torch/include/ATen/ops/special_log_ndtr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2649070Z copying torch/include/ATen/ops/asinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2653610Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2657340Z copying torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2661130Z copying torch/include/ATen/ops/grid_sampler_2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2662170Z copying torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2666450Z copying torch/include/ATen/ops/_fused_sgd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2669730Z copying torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2675160Z copying torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2676130Z copying torch/include/ATen/ops/can_cast_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2678860Z copying torch/include/ATen/ops/ge_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2684000Z copying torch/include/ATen/ops/unique_consecutive.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2687090Z copying torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2691190Z copying torch/include/ATen/ops/max.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2692480Z copying torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2696800Z copying torch/include/ATen/ops/_euclidean_dist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2700800Z copying torch/include/ATen/ops/avg_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2704540Z copying torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2705630Z copying torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2709770Z copying torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2714230Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2717410Z copying torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2718290Z copying torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2723670Z copying torch/include/ATen/ops/soft_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2725660Z copying torch/include/ATen/ops/isinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.2731700Z copying torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.3076330Z copying torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5680790Z copying torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5681790Z copying torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5683090Z copying torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5684940Z copying torch/include/ATen/ops/linear_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5685940Z copying torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5687440Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5694720Z copying torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5695800Z copying torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5697090Z copying torch/include/ATen/ops/exp_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5698640Z copying torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5699660Z copying torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5700920Z copying torch/include/ATen/ops/select_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5702260Z copying torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5703610Z copying torch/include/ATen/ops/zeros_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5704830Z copying torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5706100Z copying torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5707540Z copying torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5708990Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5710140Z copying torch/include/ATen/ops/_foreach_sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5711550Z copying torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5712860Z copying torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5714150Z copying torch/include/ATen/ops/_foreach_log2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5715430Z copying torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5716930Z copying torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5718400Z copying torch/include/ATen/ops/softshrink_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5719700Z copying torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5720850Z copying torch/include/ATen/ops/cholesky.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5722360Z copying torch/include/ATen/ops/_masked_scale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5723530Z copying torch/include/ATen/ops/fft_ihfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5724890Z copying torch/include/ATen/ops/or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5726400Z copying torch/include/ATen/ops/sparse_coo_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5727550Z copying torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5728730Z copying torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5729970Z copying torch/include/ATen/ops/max_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5731310Z copying torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5733470Z copying torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5735950Z copying torch/include/ATen/ops/clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5737360Z copying torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5738540Z copying torch/include/ATen/ops/repeat_interleave.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5739850Z copying torch/include/ATen/ops/upsample_nearest2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5741010Z copying torch/include/ATen/ops/item_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5742270Z copying torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5743670Z copying torch/include/ATen/ops/nextafter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5744830Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5745980Z copying torch/include/ATen/ops/fft_fft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5747630Z copying torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5748750Z copying torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5749880Z copying torch/include/ATen/ops/mkldnn_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5767400Z copying torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5773720Z copying torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5775160Z copying torch/include/ATen/ops/glu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5782920Z copying torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5783600Z copying torch/include/ATen/ops/cat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5790020Z copying torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5791710Z copying torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5797880Z copying torch/include/ATen/ops/_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5799960Z copying torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5808460Z copying torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5809580Z copying torch/include/ATen/ops/special_gammaln.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5816810Z copying torch/include/ATen/ops/_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5822250Z copying torch/include/ATen/ops/fill_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5823440Z copying torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5824900Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5831950Z copying torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5833150Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5839150Z copying torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5846870Z copying torch/include/ATen/ops/gcd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5847890Z copying torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5849170Z copying torch/include/ATen/ops/logit_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5852470Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5861470Z copying torch/include/ATen/ops/fft_hfftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5863940Z copying torch/include/ATen/ops/_flash_attention_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5868850Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5869990Z copying torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5873060Z copying torch/include/ATen/ops/_foreach_trunc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5877340Z copying torch/include/ATen/ops/arccos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5880850Z copying torch/include/ATen/ops/unfold_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5882090Z copying torch/include/ATen/ops/conv_tbc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5887270Z copying torch/include/ATen/ops/_foreach_frac_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5889340Z copying torch/include/ATen/ops/new_empty_strided_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5895200Z copying torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5896160Z copying torch/include/ATen/ops/sparse_mask.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5897590Z copying torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5904680Z copying torch/include/ATen/ops/atanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5906250Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5912190Z copying torch/include/ATen/ops/exponential_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5913150Z copying torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5915030Z copying torch/include/ATen/ops/lift_fresh_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5921640Z copying torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5922630Z copying torch/include/ATen/ops/_foreach_sign_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5930720Z copying torch/include/ATen/ops/adjoint_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5939450Z copying torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5948160Z copying torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5956110Z copying torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5971440Z copying torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5972340Z copying torch/include/ATen/ops/mish_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5973580Z copying torch/include/ATen/ops/full.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5978810Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5979970Z copying torch/include/ATen/ops/view_as_real_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5987850Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5988840Z copying torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5990080Z copying torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5995660Z copying torch/include/ATen/ops/linear_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.5996680Z copying torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6003130Z copying torch/include/ATen/ops/reshape_as.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6004630Z copying torch/include/ATen/ops/upsample_nearest1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6010840Z copying torch/include/ATen/ops/prod_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6012020Z copying torch/include/ATen/ops/abs_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6018470Z copying torch/include/ATen/ops/lift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6019630Z copying torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6023750Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6028570Z copying torch/include/ATen/ops/erfc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6032550Z copying torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6036790Z copying torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6038010Z copying torch/include/ATen/ops/_linalg_slogdet_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6045530Z copying torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6051800Z copying torch/include/ATen/ops/pad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6053540Z copying torch/include/ATen/ops/signbit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6059540Z copying torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6060560Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6061760Z copying torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6068350Z copying torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6069220Z copying torch/include/ATen/ops/clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6076020Z copying torch/include/ATen/ops/sort_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6077390Z copying torch/include/ATen/ops/triu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6084070Z copying torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6085200Z copying torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6086520Z copying torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6092070Z copying torch/include/ATen/ops/special_i0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6092920Z copying torch/include/ATen/ops/atleast_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6100210Z copying torch/include/ATen/ops/_nested_select_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6101180Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6108320Z copying torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6109270Z copying torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6110570Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6115720Z copying torch/include/ATen/ops/special_gammaincc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6116680Z copying torch/include/ATen/ops/mish_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6133720Z copying torch/include/ATen/ops/min_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6134530Z copying torch/include/ATen/ops/acosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6135820Z copying torch/include/ATen/ops/_pad_enum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6143070Z copying torch/include/ATen/ops/inverse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6143870Z copying torch/include/ATen/ops/_safe_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6146060Z copying torch/include/ATen/ops/mm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6147400Z copying torch/include/ATen/ops/broadcast_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6371660Z copying torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6372850Z copying torch/include/ATen/ops/zero_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6374290Z copying torch/include/ATen/ops/_foreach_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6375870Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6377310Z copying torch/include/ATen/ops/reflection_pad1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6378790Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6380290Z copying torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6381700Z copying torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6382880Z copying torch/include/ATen/ops/renorm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6384370Z copying torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6385610Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6386900Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6388030Z copying torch/include/ATen/ops/conv_depthwise3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6389400Z copying torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6390700Z copying torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6392120Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6393460Z copying torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6394690Z copying torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6395840Z copying torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6453690Z copying torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6454900Z copying torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6456130Z copying torch/include/ATen/ops/isneginf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6477730Z copying torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6479000Z copying torch/include/ATen/ops/cat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6479930Z copying torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6481460Z copying torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6482680Z copying torch/include/ATen/ops/rand_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6484180Z copying torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6509960Z copying torch/include/ATen/ops/trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6510870Z copying torch/include/ATen/ops/relu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6512230Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6537980Z copying torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6539110Z copying torch/include/ATen/ops/clamp_max_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6540170Z copying torch/include/ATen/ops/_unpack_dual_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6541660Z copying torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6542960Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6566500Z copying torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6567500Z copying torch/include/ATen/ops/polar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6568670Z copying torch/include/ATen/ops/narrow_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6569960Z copying torch/include/ATen/ops/vstack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6571230Z copying torch/include/ATen/ops/convolution_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6592700Z copying torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6593590Z copying torch/include/ATen/ops/transpose_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6594960Z copying torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6596090Z copying torch/include/ATen/ops/tanh_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6597350Z copying torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6598790Z copying torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6600080Z copying torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6616400Z copying torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6617380Z copying torch/include/ATen/ops/_cdist_forward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6618750Z copying torch/include/ATen/ops/view_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6620280Z copying torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6621390Z copying torch/include/ATen/ops/log_sigmoid_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6623130Z copying torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6624530Z copying torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6647230Z copying torch/include/ATen/ops/view_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6648150Z copying torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6649680Z copying torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6650850Z copying torch/include/ATen/ops/eye_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6652220Z copying torch/include/ATen/ops/exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6653450Z copying torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6654980Z copying torch/include/ATen/ops/expm1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6670620Z copying torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6671730Z copying torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6673040Z copying torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6674400Z copying torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6675760Z copying torch/include/ATen/ops/triu_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6677140Z copying torch/include/ATen/ops/convolution_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6678280Z copying torch/include/ATen/ops/diag_embed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6679790Z copying torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6681050Z copying torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6682270Z copying torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6683580Z copying torch/include/ATen/ops/atanh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6685070Z copying torch/include/ATen/ops/reciprocal_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6686250Z copying torch/include/ATen/ops/im2col_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6687640Z copying torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6688930Z copying torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6690220Z copying torch/include/ATen/ops/sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6691480Z copying torch/include/ATen/ops/fft_ifft_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6692830Z copying torch/include/ATen/ops/combinations.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6694060Z copying torch/include/ATen/ops/_to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6695350Z copying torch/include/ATen/ops/_fft_r2c_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6696650Z copying torch/include/ATen/ops/hardtanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6697920Z copying torch/include/ATen/ops/promote_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6699460Z copying torch/include/ATen/ops/cross_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6700490Z copying torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6701980Z copying torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6703210Z copying torch/include/ATen/ops/log1p_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6704510Z copying torch/include/ATen/ops/_foreach_sub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6705950Z copying torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6707160Z copying torch/include/ATen/ops/_cast_Int_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6708430Z copying torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6709830Z copying torch/include/ATen/ops/lshift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6711170Z copying torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6712420Z copying torch/include/ATen/ops/negative_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6713600Z copying torch/include/ATen/ops/_cast_Byte.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6714950Z copying torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6716490Z copying torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6717620Z copying torch/include/ATen/ops/mish_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6799940Z copying torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6800910Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6802210Z copying torch/include/ATen/ops/linalg_cross_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6815160Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6822140Z copying torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6823090Z copying torch/include/ATen/ops/cos.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6824340Z copying torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6825580Z copying torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6826930Z copying torch/include/ATen/ops/rrelu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6839880Z copying torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6840880Z copying torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6853240Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6859940Z copying torch/include/ATen/ops/to_sparse_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6861030Z copying torch/include/ATen/ops/median_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6862350Z copying torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6877670Z copying torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6886490Z copying torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6893100Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6894380Z copying torch/include/ATen/ops/linalg_diagonal_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6895800Z copying torch/include/ATen/ops/index_reduce_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6897170Z copying torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6904870Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6912500Z copying torch/include/ATen/ops/randn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6913470Z copying torch/include/ATen/ops/logical_or_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6915120Z copying torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6916360Z copying torch/include/ATen/ops/neg.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6926210Z copying torch/include/ATen/ops/igamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6927360Z copying torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6928710Z copying torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6929910Z copying torch/include/ATen/ops/norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6942830Z copying torch/include/ATen/ops/trace_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6943920Z copying torch/include/ATen/ops/log_sigmoid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6945340Z copying torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6946580Z copying torch/include/ATen/ops/eq_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6947880Z copying torch/include/ATen/ops/put_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6949370Z copying torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6950790Z copying torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6952100Z copying torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6953450Z copying torch/include/ATen/ops/native_dropout_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6954820Z copying torch/include/ATen/ops/argmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6956090Z copying torch/include/ATen/ops/vstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6957390Z copying torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6958890Z copying torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6960170Z copying torch/include/ATen/ops/can_cast_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6961570Z copying torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6962840Z copying torch/include/ATen/ops/_to_sparse_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6964250Z copying torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6965460Z copying torch/include/ATen/ops/topk_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6966890Z copying torch/include/ATen/ops/_foreach_tan_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6968160Z copying torch/include/ATen/ops/expm1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6969660Z copying torch/include/ATen/ops/_nested_get_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6971260Z copying torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6972800Z copying torch/include/ATen/ops/_masked_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6974080Z copying torch/include/ATen/ops/_foreach_lerp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6975420Z copying torch/include/ATen/ops/matmul_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6976720Z copying torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6978230Z copying torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6979370Z copying torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.6980550Z copying torch/include/ATen/ops/conv_transpose2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7048900Z copying torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7049970Z copying torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7051270Z copying torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7063710Z copying torch/include/ATen/ops/signbit_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7064730Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7071270Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7078570Z copying torch/include/ATen/ops/logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7079340Z copying torch/include/ATen/ops/_foreach_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7093840Z copying torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7100470Z copying torch/include/ATen/ops/_log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7101550Z copying torch/include/ATen/ops/neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7108280Z copying torch/include/ATen/ops/take_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7109400Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7110570Z copying torch/include/ATen/ops/i0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7111860Z copying torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7113060Z copying torch/include/ATen/ops/special_gammainc_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7114270Z copying torch/include/ATen/ops/squeeze_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7115630Z copying torch/include/ATen/ops/_sparse_broadcast_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7116860Z copying torch/include/ATen/ops/hardtanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7139290Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7146540Z copying torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7147470Z copying torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7148720Z copying torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7156330Z copying torch/include/ATen/ops/_reshape_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7157430Z copying torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7158650Z copying torch/include/ATen/ops/diagonal_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7159940Z copying torch/include/ATen/ops/dsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7178200Z copying torch/include/ATen/ops/gather_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7191890Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7199220Z copying torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7206430Z copying torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7207500Z copying torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7208710Z copying torch/include/ATen/ops/_assert_scalar_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7210240Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7221280Z copying torch/include/ATen/ops/_unique.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7228390Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7229420Z copying torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7230790Z copying torch/include/ATen/ops/silu_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7231860Z copying torch/include/ATen/ops/resize_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7232970Z copying torch/include/ATen/ops/range_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7234170Z copying torch/include/ATen/ops/max_pool1d_with_indices.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7235960Z copying torch/include/ATen/ops/replication_pad1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7236700Z copying torch/include/ATen/ops/int_repr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7237980Z copying torch/include/ATen/ops/upsample_linear1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7239380Z copying torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7240670Z copying torch/include/ATen/ops/hardsigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7241850Z copying torch/include/ATen/ops/_lstm_mps_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7243010Z copying torch/include/ATen/ops/mul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7244580Z copying torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7245900Z copying torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7247160Z copying torch/include/ATen/ops/cos_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7248450Z copying torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7249900Z copying torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7292060Z copying torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7293030Z copying torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7294200Z copying torch/include/ATen/ops/coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7303450Z copying torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7304340Z copying torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7305720Z copying torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7307020Z copying torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7308200Z copying torch/include/ATen/ops/add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7309430Z copying torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7310770Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7311960Z copying torch/include/ATen/ops/bmm_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7313180Z copying torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7314560Z copying torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7315820Z copying torch/include/ATen/ops/special_bessel_y0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7317210Z copying torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7318360Z copying torch/include/ATen/ops/real_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7351480Z copying torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7359100Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7359920Z copying torch/include/ATen/ops/max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7361160Z copying torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7362390Z copying torch/include/ATen/ops/col_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7363570Z copying torch/include/ATen/ops/logcumsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7364870Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7366000Z copying torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7367200Z copying torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7368530Z copying torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7369790Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7370910Z copying torch/include/ATen/ops/_foreach_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7372210Z copying torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7373420Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7374740Z copying torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7375880Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7377070Z copying torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7378210Z copying torch/include/ATen/ops/copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7379470Z copying torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7380690Z copying torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7382080Z copying torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7383260Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7439100Z copying torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7439990Z copying torch/include/ATen/ops/max_unpool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7441200Z copying torch/include/ATen/ops/bitwise_xor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7442520Z copying torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7443740Z copying torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7445050Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7446200Z copying torch/include/ATen/ops/_standard_gamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7447680Z copying torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7448850Z copying torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7450050Z copying torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7451370Z copying torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7452690Z copying torch/include/ATen/ops/baddbmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7453840Z copying torch/include/ATen/ops/cummax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7455110Z copying torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7456460Z copying torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7457730Z copying torch/include/ATen/ops/norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7458990Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7460360Z copying torch/include/ATen/ops/concat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7461750Z copying torch/include/ATen/ops/uniform_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7462910Z copying torch/include/ATen/ops/gcd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7464230Z copying torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7465490Z copying torch/include/ATen/ops/new_zeros_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7466720Z copying torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7468080Z copying torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7469220Z copying torch/include/ATen/ops/_cast_Int_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7470470Z copying torch/include/ATen/ops/_unsafe_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7471740Z copying torch/include/ATen/ops/lerp_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7472990Z copying torch/include/ATen/ops/_foreach_add.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7474230Z copying torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7475580Z copying torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7476780Z copying torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7477990Z copying torch/include/ATen/ops/masked_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7479190Z copying torch/include/ATen/ops/_log_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7480610Z copying torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7481810Z copying torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7483170Z copying torch/include/ATen/ops/unflatten_dense_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7484330Z copying torch/include/ATen/ops/new_ones_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7485630Z copying torch/include/ATen/ops/addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7486880Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7488220Z copying torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7489510Z copying torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7490790Z copying torch/include/ATen/ops/ravel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7491960Z copying torch/include/ATen/ops/_foreach_addcdiv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7493330Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7494470Z copying torch/include/ATen/ops/linalg_pinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7495890Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7497050Z copying torch/include/ATen/ops/view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7498340Z copying torch/include/ATen/ops/max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7499520Z copying torch/include/ATen/ops/msort_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7500710Z copying torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7502240Z copying torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7503340Z copying torch/include/ATen/ops/random_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7504570Z copying torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7505830Z copying torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7507230Z copying torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7508430Z copying torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7509570Z copying torch/include/ATen/ops/mkldnn_linear.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7510740Z copying torch/include/ATen/ops/index_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7512150Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7513400Z copying torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7514550Z copying torch/include/ATen/ops/lerp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7515850Z copying torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7517160Z copying torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7518320Z copying torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7519610Z copying torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7520700Z copying torch/include/ATen/ops/_add_relu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7522060Z copying torch/include/ATen/ops/fft_ihfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7523290Z copying torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7524480Z copying torch/include/ATen/ops/sin_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7525810Z copying torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7526940Z copying torch/include/ATen/ops/fmin_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7528180Z copying torch/include/ATen/ops/hardshrink_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7529360Z copying torch/include/ATen/ops/hsplit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7530660Z copying torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7532020Z copying torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7533270Z copying torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7534430Z copying torch/include/ATen/ops/hardtanh_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7535780Z copying torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7537020Z copying torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7538200Z copying torch/include/ATen/ops/repeat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7539460Z copying torch/include/ATen/ops/_reshape_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7540810Z copying torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7542180Z copying torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7543270Z copying torch/include/ATen/ops/less_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7544470Z copying torch/include/ATen/ops/one_hot_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7545820Z copying torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7546980Z copying torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7548230Z copying torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7549460Z copying torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7550770Z copying torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7551980Z copying torch/include/ATen/ops/_foreach_log1p.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7553150Z copying torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7554470Z copying torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7555680Z copying torch/include/ATen/ops/_foreach_trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7556950Z copying torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7558040Z copying torch/include/ATen/ops/expand_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7559350Z copying torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7562840Z copying torch/include/ATen/ops/linalg_matrix_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7564020Z copying torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7565350Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7571480Z copying torch/include/ATen/ops/mul_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7572660Z copying torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7579920Z copying torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7580830Z copying torch/include/ATen/ops/unfold_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7588120Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7589110Z copying torch/include/ATen/ops/linalg_svd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7590410Z copying torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7595980Z copying torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7598100Z copying torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7604160Z copying torch/include/ATen/ops/fft_fft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7604990Z copying torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7606200Z copying torch/include/ATen/ops/normal_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7608490Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7612500Z copying torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7616250Z copying torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7622010Z copying torch/include/ATen/ops/fft_ifft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7624060Z copying torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7629780Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7630760Z copying torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7632170Z copying torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7638050Z copying torch/include/ATen/ops/amax_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7639200Z copying torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7645540Z copying torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7647000Z copying torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7653320Z copying torch/include/ATen/ops/_unsafe_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7654330Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7655640Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7661880Z copying torch/include/ATen/ops/_compute_linear_combination_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7662890Z copying torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7670220Z copying torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7677540Z copying torch/include/ATen/ops/polygamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7678460Z copying torch/include/ATen/ops/l1_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7679760Z copying torch/include/ATen/ops/trace_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7685760Z copying torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7686750Z copying torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7693390Z copying torch/include/ATen/ops/sort.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7694560Z copying torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7695720Z copying torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7702030Z copying torch/include/ATen/ops/is_set_to.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7703000Z copying torch/include/ATen/ops/unflatten_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7709630Z copying torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7712150Z copying torch/include/ATen/ops/_dirichlet_grad_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7717910Z copying torch/include/ATen/ops/einsum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7718880Z copying torch/include/ATen/ops/nan_to_num.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7720230Z copying torch/include/ATen/ops/q_zero_point_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7725780Z copying torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7726770Z copying torch/include/ATen/ops/t_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7734660Z copying torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7735640Z copying torch/include/ATen/ops/split_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7742790Z copying torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7743710Z copying torch/include/ATen/ops/_addmm_activation_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7749560Z copying torch/include/ATen/ops/lerp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7751120Z copying torch/include/ATen/ops/nansum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7752660Z copying torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7758060Z copying torch/include/ATen/ops/_fft_c2r_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7764100Z copying torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7765870Z copying torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7767920Z copying torch/include/ATen/ops/cosine_similarity_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7774110Z copying torch/include/ATen/ops/fix_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7775150Z copying torch/include/ATen/ops/_reshape_alias_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7776380Z copying torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7782220Z copying torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7783010Z copying torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7790400Z copying torch/include/ATen/ops/igamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7791140Z copying torch/include/ATen/ops/poisson_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7792390Z copying torch/include/ATen/ops/full_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7799160Z copying torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7800150Z copying torch/include/ATen/ops/_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7806550Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7808320Z copying torch/include/ATen/ops/linalg_eig_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7814260Z copying torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7815340Z copying torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7816830Z copying torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7821750Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7822920Z copying torch/include/ATen/ops/expm1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7829780Z copying torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7830700Z copying torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7831820Z copying torch/include/ATen/ops/sinh_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7837520Z copying torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7845220Z copying torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7846410Z copying torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7853710Z copying torch/include/ATen/ops/group_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7854780Z copying torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7855990Z copying torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7862140Z copying torch/include/ATen/ops/exp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7863250Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7871560Z copying torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7872520Z copying torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7879730Z copying torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7880770Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7882160Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7887390Z copying torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7888300Z copying torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7889520Z copying torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7895000Z copying torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7896190Z copying torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7902490Z copying torch/include/ATen/ops/arange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7903740Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7904890Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7912020Z copying torch/include/ATen/ops/hardshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7913010Z copying torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7920300Z copying torch/include/ATen/ops/special_round_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7921090Z copying torch/include/ATen/ops/_reshape_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7927920Z copying torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7929090Z copying torch/include/ATen/ops/index_fill.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7930180Z copying torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7934410Z copying torch/include/ATen/ops/convolution_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7936140Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7941310Z copying torch/include/ATen/ops/linalg_diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7942390Z copying torch/include/ATen/ops/nonzero_numpy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7951040Z copying torch/include/ATen/ops/_index_put_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7955040Z copying torch/include/ATen/ops/istft.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7958850Z copying torch/include/ATen/ops/_foreach_erfc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7959890Z copying torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7963860Z copying torch/include/ATen/ops/chain_matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7966140Z copying torch/include/ATen/ops/_conj_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7971420Z copying torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7972420Z copying torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7975990Z copying torch/include/ATen/ops/slice_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7981270Z copying torch/include/ATen/ops/_compute_linear_combination.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7985040Z copying torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7989510Z copying torch/include/ATen/ops/_nnz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7990550Z copying torch/include/ATen/ops/cummaxmin_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7994190Z copying torch/include/ATen/ops/fft_rfft2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.7997900Z copying torch/include/ATen/ops/_stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8002060Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8006710Z copying torch/include/ATen/ops/cartesian_prod_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8010480Z copying torch/include/ATen/ops/_cudnn_attention_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8014770Z copying torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8015660Z copying torch/include/ATen/ops/huber_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8020400Z copying torch/include/ATen/ops/index_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8024260Z copying torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8028540Z copying torch/include/ATen/ops/view_as_real_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8029630Z copying torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8033990Z copying torch/include/ATen/ops/index_add_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8038210Z copying torch/include/ATen/ops/_to_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8043650Z copying torch/include/ATen/ops/max_unpool3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8045020Z copying torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8045890Z copying torch/include/ATen/ops/native_batch_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8049870Z copying torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8053700Z copying torch/include/ATen/ops/_fw_primal_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8056740Z copying torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8059250Z copying torch/include/ATen/ops/full_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8063040Z copying torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8065900Z copying torch/include/ATen/ops/fmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8070450Z copying torch/include/ATen/ops/randint_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8071550Z copying torch/include/ATen/ops/_neg_view_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8077530Z copying torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8079610Z copying torch/include/ATen/ops/unfold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8084640Z copying torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8086140Z copying torch/include/ATen/ops/istft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8088010Z copying torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8093950Z copying torch/include/ATen/ops/fmin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8095090Z copying torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8101500Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8102810Z copying torch/include/ATen/ops/rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8108530Z copying torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8109320Z copying torch/include/ATen/ops/ones_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8112270Z copying torch/include/ATen/ops/erfc_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8118150Z copying torch/include/ATen/ops/tanh_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8119190Z copying torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8125480Z copying torch/include/ATen/ops/_softmax_backward_data.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8127580Z copying torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8133420Z copying torch/include/ATen/ops/_to_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8134540Z copying torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8135860Z copying torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8141140Z copying torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8141960Z copying torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8147970Z copying torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8149960Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8157060Z copying torch/include/ATen/ops/erf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8157890Z copying torch/include/ATen/ops/align_as_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8164790Z copying torch/include/ATen/ops/zero.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8165870Z copying torch/include/ATen/ops/xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8172510Z copying torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8179550Z copying torch/include/ATen/ops/mT.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8180420Z copying torch/include/ATen/ops/uniform_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8181650Z copying torch/include/ATen/ops/embedding_dense_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8189270Z copying torch/include/ATen/ops/orgqr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8190310Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8196960Z copying torch/include/ATen/ops/cumprod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8198240Z copying torch/include/ATen/ops/range_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8205190Z copying torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8206070Z copying torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8207300Z copying torch/include/ATen/ops/_masked_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8210330Z copying torch/include/ATen/ops/linalg_ldl_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8214520Z copying torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8217870Z copying torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8218720Z copying torch/include/ATen/ops/slice_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8224060Z copying torch/include/ATen/ops/random_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8226460Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8231560Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8232490Z copying torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8235570Z copying torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8240890Z copying torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8244740Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8249010Z copying torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8250180Z copying torch/include/ATen/ops/sin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8253300Z copying torch/include/ATen/ops/can_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8258030Z copying torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8260410Z copying torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8261690Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8267920Z copying torch/include/ATen/ops/kl_div_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8269190Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8276150Z copying torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8276950Z copying torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8283690Z copying torch/include/ATen/ops/linalg_vector_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8284790Z copying torch/include/ATen/ops/embedding_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8285980Z copying torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8291790Z copying torch/include/ATen/ops/sparse_bsc_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8292780Z copying torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8299870Z copying torch/include/ATen/ops/is_floating_point.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8301150Z copying torch/include/ATen/ops/fft_fft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8307360Z copying torch/include/ATen/ops/xlogy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8308460Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8309690Z copying torch/include/ATen/ops/ceil_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8314370Z copying torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8316120Z copying torch/include/ATen/ops/masked_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8322370Z copying torch/include/ATen/ops/ge_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8323350Z copying torch/include/ATen/ops/_test_check_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8324730Z copying torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8331110Z copying torch/include/ATen/ops/squeeze.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8332120Z copying torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8340880Z copying torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8346240Z copying torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8347040Z copying torch/include/ATen/ops/permute_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8348200Z copying torch/include/ATen/ops/is_distributed_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8355370Z copying torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8356360Z copying torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8360130Z copying torch/include/ATen/ops/relu6_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8368420Z copying torch/include/ATen/ops/sigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8369520Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8373090Z copying torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8377570Z copying torch/include/ATen/ops/fft_hfft2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8381580Z copying torch/include/ATen/ops/rad2deg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8382560Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8387280Z copying torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8390530Z copying torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8394840Z copying torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8395730Z copying torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8400470Z copying torch/include/ATen/ops/linalg_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8403480Z copying torch/include/ATen/ops/special_zeta_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8408560Z copying torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8409570Z copying torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8413040Z copying torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8417560Z copying torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8421330Z copying torch/include/ATen/ops/lshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8425570Z copying torch/include/ATen/ops/outer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8426600Z copying torch/include/ATen/ops/bilinear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8430690Z copying torch/include/ATen/ops/rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8434960Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8438210Z copying torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8439090Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8444820Z copying torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8446010Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8453050Z copying torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8454070Z copying torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8461570Z copying torch/include/ATen/ops/stft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8462650Z copying torch/include/ATen/ops/linalg_lu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8463970Z copying torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8469670Z copying torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8470530Z copying torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8477830Z copying torch/include/ATen/ops/_linalg_det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8478670Z copying torch/include/ATen/ops/cholesky_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8479910Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8485790Z copying torch/include/ATen/ops/asin_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8493020Z copying torch/include/ATen/ops/from_file_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8494170Z copying torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8495470Z copying torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8502430Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8503360Z copying torch/include/ATen/ops/_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8509500Z copying torch/include/ATen/ops/nansum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8510690Z copying torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8517860Z copying torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8518790Z copying torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8520170Z copying torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8525470Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8526370Z copying torch/include/ATen/ops/norm_except_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8533090Z copying torch/include/ATen/ops/fft_irfft2_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8534340Z copying torch/include/ATen/ops/_make_dual_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8535730Z copying torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8540810Z copying torch/include/ATen/ops/linalg_solve_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8542070Z copying torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8547160Z copying torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8550650Z copying torch/include/ATen/ops/view_as_complex_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8555120Z copying torch/include/ATen/ops/repeat_interleave_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8556110Z copying torch/include/ATen/ops/is_complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8559330Z copying torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8563900Z copying torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8567410Z copying torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8571330Z copying torch/include/ATen/ops/_version.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8576020Z copying torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8578720Z copying torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8585550Z copying torch/include/ATen/ops/softplus_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8586770Z copying torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8593640Z copying torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8594580Z copying torch/include/ATen/ops/tril_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8596000Z copying torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8601820Z copying torch/include/ATen/ops/clip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8602730Z copying torch/include/ATen/ops/matmul_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8609170Z copying torch/include/ATen/ops/linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8610290Z copying torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8616960Z copying torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8617940Z copying torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8619130Z copying torch/include/ATen/ops/tensor_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8624540Z copying torch/include/ATen/ops/align_to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8625610Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8632730Z copying torch/include/ATen/ops/convolution_backward_overrideable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8633600Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8640870Z copying torch/include/ATen/ops/geometric.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8641950Z copying torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8643320Z copying torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8648660Z copying torch/include/ATen/ops/i0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8650160Z copying torch/include/ATen/ops/hardshrink_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8656510Z copying torch/include/ATen/ops/requires_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8657740Z copying torch/include/ATen/ops/elu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8664530Z copying torch/include/ATen/ops/threshold_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8665620Z copying torch/include/ATen/ops/special_entr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8672080Z copying torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8673290Z copying torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8679550Z copying torch/include/ATen/ops/bitwise_xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8680650Z copying torch/include/ATen/ops/special_xlogy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8681910Z copying torch/include/ATen/ops/acos_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8688950Z copying torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8690470Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8696970Z copying torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8697930Z copying torch/include/ATen/ops/_amp_update_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8704440Z copying torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8705430Z copying torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8706740Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8712860Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8713930Z copying torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8720780Z copying torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8721630Z copying torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8722950Z copying torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8728170Z copying torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8729480Z copying torch/include/ATen/ops/matrix_power_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8736610Z copying torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8737430Z copying torch/include/ATen/ops/matmul_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8745290Z copying torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8746110Z copying torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8747520Z copying torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8754090Z copying torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8755050Z copying torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8761760Z copying torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8762630Z copying torch/include/ATen/ops/_coalesce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8763920Z copying torch/include/ATen/ops/special_exp2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8768820Z copying torch/include/ATen/ops/special_erfcx_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8771210Z copying torch/include/ATen/ops/min_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8775380Z copying torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8777550Z copying torch/include/ATen/ops/logit_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8778880Z copying torch/include/ATen/ops/scalar_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8783450Z copying torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8792090Z copying torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8793140Z copying torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8796200Z copying torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8801510Z copying torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8804530Z copying torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8809700Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8810660Z copying torch/include/ATen/ops/_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8812980Z copying torch/include/ATen/ops/_foreach_reciprocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8818520Z copying torch/include/ATen/ops/softplus_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8819400Z copying torch/include/ATen/ops/is_inference_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8823100Z copying torch/include/ATen/ops/any_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8828080Z copying torch/include/ATen/ops/digamma_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8831690Z copying torch/include/ATen/ops/abs_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8834780Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8835480Z copying torch/include/ATen/ops/elu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8840190Z copying torch/include/ATen/ops/mH_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8842890Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8847720Z copying torch/include/ATen/ops/linalg_cross.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8852570Z copying torch/include/ATen/ops/inner.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8857280Z copying torch/include/ATen/ops/nanmedian_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8861910Z copying torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8862980Z copying torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8865050Z copying torch/include/ATen/ops/conj.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8870200Z copying torch/include/ATen/ops/native_group_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8878360Z copying torch/include/ATen/ops/mkldnn_linear_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8879190Z copying torch/include/ATen/ops/select_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8885700Z copying torch/include/ATen/ops/special_log_softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8887010Z copying torch/include/ATen/ops/reshape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8893380Z copying torch/include/ATen/ops/addcmul_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8894190Z copying torch/include/ATen/ops/atan_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8895460Z copying torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8900900Z copying torch/include/ATen/ops/_scaled_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8902230Z copying torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8908960Z copying torch/include/ATen/ops/neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8910070Z copying torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8916420Z copying torch/include/ATen/ops/addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8917890Z copying torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8918760Z copying torch/include/ATen/ops/softmax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8924620Z copying torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8925520Z copying torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8932490Z copying torch/include/ATen/ops/mse_loss_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8933390Z copying torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8939470Z copying torch/include/ATen/ops/vander_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8940780Z copying torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8942140Z copying torch/include/ATen/ops/cumprod_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8948880Z copying torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8950060Z copying torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8957120Z copying torch/include/ATen/ops/matrix_H_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8958080Z copying torch/include/ATen/ops/_resize_output.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8964840Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8965890Z copying torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8967060Z copying torch/include/ATen/ops/linalg_cond.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8972210Z copying torch/include/ATen/ops/special_polygamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8973250Z copying torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8980520Z copying torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8981500Z copying torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8982690Z copying torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8989570Z copying torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8990530Z copying torch/include/ATen/ops/smm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8995220Z copying torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.8999380Z copying torch/include/ATen/ops/_addmm_activation.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9004250Z copying torch/include/ATen/ops/ormqr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9005680Z copying torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9012040Z copying torch/include/ATen/ops/floor_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9013090Z copying torch/include/ATen/ops/sin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9019190Z copying torch/include/ATen/ops/_spdiags_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9022130Z copying torch/include/ATen/ops/float_power_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9022550Z copying torch/include/ATen/ops/imag_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9029110Z copying torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9030220Z copying torch/include/ATen/ops/_foreach_pow_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9037550Z copying torch/include/ATen/ops/sinh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9038350Z copying torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9039610Z copying torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9045570Z copying torch/include/ATen/ops/crow_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9046420Z copying torch/include/ATen/ops/fft_ifftn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9053540Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9054510Z copying torch/include/ATen/ops/sum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9055740Z copying torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9061230Z copying torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9062060Z copying torch/include/ATen/ops/_assert_scalar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9068690Z copying torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9069760Z copying torch/include/ATen/ops/view_as_complex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9076460Z copying torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9077750Z copying torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9079030Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9085020Z copying torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9086080Z copying torch/include/ATen/ops/empty_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9091950Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9093400Z copying torch/include/ATen/ops/is_neg_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9099770Z copying torch/include/ATen/ops/special_i1e_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9101890Z copying torch/include/ATen/ops/floor_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9108240Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9109430Z copying torch/include/ATen/ops/prelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9116470Z copying torch/include/ATen/ops/take_along_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9118420Z copying torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9124130Z copying torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9125250Z copying torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9126410Z copying torch/include/ATen/ops/_unsafe_index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9132110Z copying torch/include/ATen/ops/softshrink_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9133330Z copying torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9139500Z copying torch/include/ATen/ops/_cudnn_rnn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9140780Z copying torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9142200Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9148950Z copying torch/include/ATen/ops/_linalg_det_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9150160Z copying torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9156400Z copying torch/include/ATen/ops/_cdist_forward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9157310Z copying torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9164760Z copying torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9165610Z copying torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9166980Z copying torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9177380Z copying torch/include/ATen/ops/_cdist_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9177830Z copying torch/include/ATen/ops/multi_margin_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9179770Z copying torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9180860Z copying torch/include/ATen/ops/group_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9182110Z copying torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9187990Z copying torch/include/ATen/ops/_foreach_minimum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9189340Z copying torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9196640Z copying torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9197590Z copying torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9205520Z copying torch/include/ATen/ops/_coalesced.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9206540Z copying torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9213230Z copying torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9215670Z copying torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9221390Z copying torch/include/ATen/ops/conv2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9222440Z copying torch/include/ATen/ops/special_logsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9223610Z copying torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9227850Z copying torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9230660Z copying torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9236100Z copying torch/include/ATen/ops/dsplit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9237200Z copying torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9238270Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9244790Z copying torch/include/ATen/ops/igammac.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9245790Z copying torch/include/ATen/ops/_efficientzerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9253250Z copying torch/include/ATen/ops/arange_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9261090Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9261850Z copying torch/include/ATen/ops/clamp_min_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9263280Z copying torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9268790Z copying torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9269950Z copying torch/include/ATen/ops/celu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9277010Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9277980Z copying torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9279140Z copying torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9285350Z copying torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9286270Z copying torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9294010Z copying torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9294650Z copying torch/include/ATen/ops/_chunk_cat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9295930Z copying torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9300940Z copying torch/include/ATen/ops/fmin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9302500Z copying torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9306910Z copying torch/include/ATen/ops/fft_ifftshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9311280Z copying torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9316740Z copying torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9320180Z copying torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9324980Z copying torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9325950Z copying torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9329610Z copying torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9333490Z copying torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9338400Z copying torch/include/ATen/ops/arange_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9340900Z copying torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9341740Z copying torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9348220Z copying torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9349130Z copying torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9356070Z copying torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9356860Z copying torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9363060Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9363970Z copying torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9365340Z copying torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9372260Z copying torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9373120Z copying torch/include/ATen/ops/_foreach_sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9379370Z copying torch/include/ATen/ops/sub_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9381790Z copying torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9386750Z copying torch/include/ATen/ops/unbind_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9387820Z copying torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9388940Z copying torch/include/ATen/ops/signbit_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9395060Z copying torch/include/ATen/ops/gelu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9395990Z copying torch/include/ATen/ops/is_neg_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9401400Z copying torch/include/ATen/ops/numpy_T_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9408780Z copying torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9409570Z copying torch/include/ATen/ops/to_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9413720Z copying torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9417100Z copying torch/include/ATen/ops/replication_pad2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9421800Z copying torch/include/ATen/ops/is_floating_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9427190Z copying torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9430050Z copying torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9435000Z copying torch/include/ATen/ops/_nested_tensor_strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9437000Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9438730Z copying torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9443620Z copying torch/include/ATen/ops/all_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9444940Z copying torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9450910Z copying torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9452120Z copying torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9458210Z copying torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9459450Z copying torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9466600Z copying torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9467540Z copying torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9468800Z copying torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9474130Z copying torch/include/ATen/ops/chunk_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9475240Z copying torch/include/ATen/ops/_foobar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9481750Z copying torch/include/ATen/ops/atan2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9482770Z copying torch/include/ATen/ops/nextafter_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9489290Z copying torch/include/ATen/ops/amin.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9490620Z copying torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9491800Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9498480Z copying torch/include/ATen/ops/_sparse_csr_prod.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9499410Z copying torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9506620Z copying torch/include/ATen/ops/frexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9507540Z copying torch/include/ATen/ops/alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9514540Z copying torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9515440Z copying torch/include/ATen/ops/gru_cell.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9516740Z copying torch/include/ATen/ops/isclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9519270Z copying torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9528450Z copying torch/include/ATen/ops/gather_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9530990Z copying torch/include/ATen/ops/mkldnn_linear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9532160Z copying torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9538760Z copying torch/include/ATen/ops/diagonal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9540500Z copying torch/include/ATen/ops/sspaddmm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9546390Z copying torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9547420Z copying torch/include/ATen/ops/_test_string_default_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9548710Z copying torch/include/ATen/ops/_logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9555910Z copying torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9556830Z copying torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9564190Z copying torch/include/ATen/ops/_unique_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9565130Z copying torch/include/ATen/ops/_sobol_engine_draw.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9572000Z copying torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9572680Z copying torch/include/ATen/ops/feature_dropout_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9573840Z copying torch/include/ATen/ops/diagflat_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9579310Z copying torch/include/ATen/ops/_values.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9580320Z copying torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9588230Z copying torch/include/ATen/ops/index_add_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9589290Z copying torch/include/ATen/ops/glu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9596360Z copying torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9597340Z copying torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9604120Z copying torch/include/ATen/ops/combinations_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9605110Z copying torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9606320Z copying torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9608150Z copying torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9617770Z copying torch/include/ATen/ops/swapdims_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9620960Z copying torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9622240Z copying torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9625920Z copying torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9628850Z copying torch/include/ATen/ops/isreal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9630860Z copying torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9635580Z copying torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9640930Z copying torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9643950Z copying torch/include/ATen/ops/arctan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9648470Z copying torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9649340Z copying torch/include/ATen/ops/_sparse_sum.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9653320Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9656940Z copying torch/include/ATen/ops/sinh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9661440Z copying torch/include/ATen/ops/reflection_pad1d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9662340Z copying torch/include/ATen/ops/arctanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9666500Z copying torch/include/ATen/ops/col2im.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9670250Z copying torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9674080Z copying torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9675040Z copying torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9679450Z copying torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9683180Z copying torch/include/ATen/ops/upsample_linear1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9688620Z copying torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9690320Z copying torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9691760Z copying torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9698140Z copying torch/include/ATen/ops/histc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9699020Z copying torch/include/ATen/ops/unique_dim_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9705470Z copying torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9706920Z copying torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9713090Z copying torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9714660Z copying torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9715890Z copying torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9721120Z copying torch/include/ATen/ops/geometric_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9721990Z copying torch/include/ATen/ops/logit_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9728730Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9730080Z copying torch/include/ATen/ops/mH.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9733340Z copying torch/include/ATen/ops/count_nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9738050Z copying torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9742430Z copying torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9746820Z copying torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9751140Z copying torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9754750Z copying torch/include/ATen/ops/trace_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9760860Z copying torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9764490Z copying torch/include/ATen/ops/addbmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9769060Z copying torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9770060Z copying torch/include/ATen/ops/mv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9773410Z copying torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9776780Z copying torch/include/ATen/ops/tensor_split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9777920Z copying torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9782970Z copying torch/include/ATen/ops/var_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9786180Z copying torch/include/ATen/ops/slice_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9792510Z copying torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9793460Z copying torch/include/ATen/ops/softshrink.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9800520Z copying torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9801470Z copying torch/include/ATen/ops/lgamma.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9802860Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9809160Z copying torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9810020Z copying torch/include/ATen/ops/polar_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9817010Z copying torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9818010Z copying torch/include/ATen/ops/mean_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9824850Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9825770Z copying torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9831110Z copying torch/include/ATen/ops/pow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9834420Z copying torch/include/ATen/ops/_foreach_zero_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9839540Z copying torch/include/ATen/ops/lt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9840510Z copying torch/include/ATen/ops/_foreach_cosh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9843050Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9848430Z copying torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9850120Z copying torch/include/ATen/ops/gelu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9851420Z copying torch/include/ATen/ops/adaptive_max_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9857990Z copying torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9858760Z copying torch/include/ATen/ops/logical_not.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9865260Z copying torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9866220Z copying torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9873320Z copying torch/include/ATen/ops/max_pool1d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9874220Z copying torch/include/ATen/ops/clamp_max_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9875430Z copying torch/include/ATen/ops/cross_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9881550Z copying torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9882810Z copying torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9889110Z copying torch/include/ATen/ops/unbind_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9890350Z copying torch/include/ATen/ops/frac_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9891820Z copying torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9899330Z copying torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9900230Z copying torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9907330Z copying torch/include/ATen/ops/slice_inverse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9908510Z copying torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9914970Z copying torch/include/ATen/ops/ravel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9915840Z copying torch/include/ATen/ops/_nested_select_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9922040Z copying torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9923840Z copying torch/include/ATen/ops/floor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9929470Z copying torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9930240Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9932770Z copying torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9937550Z copying torch/include/ATen/ops/renorm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9938510Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9945450Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9946400Z copying torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9950350Z copying torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9954450Z copying torch/include/ATen/ops/from_file_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9960170Z copying torch/include/ATen/ops/layer_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9964350Z copying torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9965280Z copying torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9968500Z copying torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9974210Z copying torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9976630Z copying torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9981870Z copying torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9982670Z copying torch/include/ATen/ops/allclose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9986080Z copying torch/include/ATen/ops/special_bessel_j0.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9991130Z copying torch/include/ATen/ops/tensordot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9991940Z copying torch/include/ATen/ops/_foreach_tanh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9998370Z copying torch/include/ATen/ops/linalg_ldl_factor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:02.9999820Z copying torch/include/ATen/ops/thnn_conv2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0006450Z copying torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0007400Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0008540Z copying torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0014430Z copying torch/include/ATen/ops/_lu_with_info.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0015340Z copying torch/include/ATen/ops/bincount_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0022020Z copying torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0023190Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0029650Z copying torch/include/ATen/ops/mm_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0031070Z copying torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0035400Z copying torch/include/ATen/ops/positive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0039070Z copying torch/include/ATen/ops/log10_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0044930Z copying torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0046330Z copying torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0052960Z copying torch/include/ATen/ops/_euclidean_dist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0054020Z copying torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0055440Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0061550Z copying torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0062300Z copying torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0070660Z copying torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0071550Z copying torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0078110Z copying torch/include/ATen/ops/resize_as_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0079000Z copying torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0080340Z copying torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0085240Z copying torch/include/ATen/ops/einsum_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0089070Z copying torch/include/ATen/ops/align_tensors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0094710Z copying torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0095590Z copying torch/include/ATen/ops/mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0101770Z copying torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0102590Z copying torch/include/ATen/ops/rnn_tanh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0109470Z copying torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0110410Z copying torch/include/ATen/ops/is_set_to_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0117060Z copying torch/include/ATen/ops/linalg_householder_product_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0118010Z copying torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0119450Z copying torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0123860Z copying torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0125500Z copying torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0131290Z copying torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0132220Z copying torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0138980Z copying torch/include/ATen/ops/_cast_Byte_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0140400Z copying torch/include/ATen/ops/dstack_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0146470Z copying torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0147540Z copying torch/include/ATen/ops/sign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0148810Z copying torch/include/ATen/ops/triu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0155600Z copying torch/include/ATen/ops/is_distributed.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0156420Z copying torch/include/ATen/ops/_sparse_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0162950Z copying torch/include/ATen/ops/unflatten.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0165370Z copying torch/include/ATen/ops/_segment_reduce_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0168540Z copying torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0170470Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0178200Z copying torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0179360Z copying torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0185520Z copying torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0187910Z copying torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0193580Z copying torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0194680Z copying torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0195870Z copying torch/include/ATen/ops/mm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0201230Z copying torch/include/ATen/ops/gru_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0202180Z copying torch/include/ATen/ops/log2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0209020Z copying torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0210530Z copying torch/include/ATen/ops/one_hot_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0217640Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0218860Z copying torch/include/ATen/ops/as_strided_scatter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0219830Z copying torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0226570Z copying torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0227470Z copying torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0228750Z copying torch/include/ATen/ops/new_zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0233330Z copying torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0240950Z copying torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0241820Z copying torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0248030Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0249740Z copying torch/include/ATen/ops/tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0256990Z copying torch/include/ATen/ops/lu_solve.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0258050Z copying torch/include/ATen/ops/quantized_batch_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0264740Z copying torch/include/ATen/ops/sgn_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0265750Z copying torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0272520Z copying torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0273710Z copying torch/include/ATen/ops/_fw_primal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0280960Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0281870Z copying torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0283150Z copying torch/include/ATen/ops/fft_irfftn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0288530Z copying torch/include/ATen/ops/addmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0289810Z copying torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0293630Z copying torch/include/ATen/ops/blackman_window_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0297810Z copying torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0298750Z copying torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0302470Z copying torch/include/ATen/ops/quantize_per_tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0306790Z copying torch/include/ATen/ops/transpose.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0311060Z copying torch/include/ATen/ops/_fused_sgd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0314160Z copying torch/include/ATen/ops/amin_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0315160Z copying torch/include/ATen/ops/acosh_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0320410Z copying torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0322760Z copying torch/include/ATen/ops/sum_to_size_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0327460Z copying torch/include/ATen/ops/var_mean_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0328880Z copying torch/include/ATen/ops/histc_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0332400Z copying torch/include/ATen/ops/align_tensors_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0337300Z copying torch/include/ATen/ops/diagonal_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0340450Z copying torch/include/ATen/ops/sym_size_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0344790Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0345750Z copying torch/include/ATen/ops/tensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0349430Z copying torch/include/ATen/ops/quantile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0353960Z copying torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0356970Z copying torch/include/ATen/ops/ge_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0358130Z copying torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0363570Z copying torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0365100Z copying torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0370740Z copying torch/include/ATen/ops/amax_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0372290Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0378310Z copying torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0379770Z copying torch/include/ATen/ops/fft_ifftn_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0382870Z copying torch/include/ATen/ops/log_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0387280Z copying torch/include/ATen/ops/pow_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0392360Z copying torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0396710Z copying torch/include/ATen/ops/q_scale.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0401140Z copying torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0403650Z copying torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0404490Z copying torch/include/ATen/ops/rot90_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0410830Z copying torch/include/ATen/ops/linalg_eig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0411830Z copying torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0418640Z copying torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0427360Z copying torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0428390Z copying torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0429810Z copying torch/include/ATen/ops/stride_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0434930Z copying torch/include/ATen/ops/cudnn_is_acceptable.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0435850Z copying torch/include/ATen/ops/special_zeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0443240Z copying torch/include/ATen/ops/avg_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0444100Z copying torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0451090Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0452140Z copying torch/include/ATen/ops/is_coalesced_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0458920Z copying torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0460020Z copying torch/include/ATen/ops/_nested_view_from_buffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0466970Z copying torch/include/ATen/ops/true_divide_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0467890Z copying torch/include/ATen/ops/_linalg_solve_ex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0469170Z copying torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0474580Z copying torch/include/ATen/ops/histogram_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0475740Z copying torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0481580Z copying torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0483430Z copying torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0489430Z copying torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0490180Z copying torch/include/ATen/ops/unique_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0491480Z copying torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0498420Z copying torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0499110Z copying torch/include/ATen/ops/unsafe_split_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0505980Z copying torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0506850Z copying torch/include/ATen/ops/dense_dim_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0513270Z copying torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0514520Z copying torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0515640Z copying torch/include/ATen/ops/masked_fill_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0521800Z copying torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0522980Z copying torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0529270Z copying torch/include/ATen/ops/_cast_Byte_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0530570Z copying torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0531720Z copying torch/include/ATen/ops/any.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0539220Z copying torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0540250Z copying torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0547010Z copying torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0547900Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0554650Z copying torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0555510Z copying torch/include/ATen/ops/_reshape_alias_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0556790Z copying torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0561740Z copying torch/include/ATen/ops/nll_loss_forward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0563810Z copying torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0569580Z copying torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0570870Z copying torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0572150Z copying torch/include/ATen/ops/contiguous_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0578290Z copying torch/include/ATen/ops/le_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0579270Z copying torch/include/ATen/ops/convolution_overrideable_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0585820Z copying torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0809980Z copying torch/include/ATen/ops/elu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0810940Z copying torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0812110Z copying torch/include/ATen/ops/elu_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0813570Z copying torch/include/ATen/ops/angle_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0814850Z copying torch/include/ATen/ops/cross_entropy_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0816370Z copying torch/include/ATen/ops/special_gammaincc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0817280Z copying torch/include/ATen/ops/subtract_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0818790Z copying torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0819850Z copying torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0820940Z copying torch/include/ATen/ops/floor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0822180Z copying torch/include/ATen/ops/retains_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0823520Z copying torch/include/ATen/ops/sspaddmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0824810Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0826000Z copying torch/include/ATen/ops/index_reduce_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0827310Z copying torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0828600Z copying torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0829810Z copying torch/include/ATen/ops/_copy_from.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0831110Z copying torch/include/ATen/ops/narrow_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0832320Z copying torch/include/ATen/ops/flip_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0833640Z copying torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0834820Z copying torch/include/ATen/ops/logical_not_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0836050Z copying torch/include/ATen/ops/_scaled_grouped_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0837810Z copying torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0838830Z copying torch/include/ATen/ops/mse_loss_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0840070Z copying torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0841320Z copying torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0842650Z copying torch/include/ATen/ops/special_logsumexp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0843950Z copying torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0845180Z copying torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0846550Z copying torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0847650Z copying torch/include/ATen/ops/bitwise_or_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0848860Z copying torch/include/ATen/ops/l1_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0850050Z copying torch/include/ATen/ops/geqrf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0851230Z copying torch/include/ATen/ops/log2_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0917940Z copying torch/include/ATen/ops/isposinf_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0918750Z copying torch/include/ATen/ops/_masked_scale_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0920050Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0921530Z copying torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0922730Z copying torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0923880Z copying torch/include/ATen/ops/frexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0925160Z copying torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0926670Z copying torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0927970Z copying torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0956180Z copying torch/include/ATen/ops/special_xlog1py_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0957060Z copying torch/include/ATen/ops/exp2_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0958450Z copying torch/include/ATen/ops/mean_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0959760Z copying torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0960870Z copying torch/include/ATen/ops/le_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0962180Z copying torch/include/ATen/ops/conv3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0990160Z copying torch/include/ATen/ops/stack_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0991100Z copying torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0992140Z copying torch/include/ATen/ops/special_erfinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.0993420Z copying torch/include/ATen/ops/var_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1033690Z copying torch/include/ATen/ops/rsqrt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1034620Z copying torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1035810Z copying torch/include/ATen/ops/polar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1037150Z copying torch/include/ATen/ops/_softmax_backward_data_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1038610Z copying torch/include/ATen/ops/_make_dual_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1039830Z copying torch/include/ATen/ops/trunc_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1041100Z copying torch/include/ATen/ops/meshgrid_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1042450Z copying torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1043600Z copying torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1044920Z copying torch/include/ATen/ops/silu_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1046240Z copying torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1047600Z copying torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1090980Z copying torch/include/ATen/ops/special_logit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1091950Z copying torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1093190Z copying torch/include/ATen/ops/full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1094450Z copying torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1096000Z copying torch/include/ATen/ops/isneginf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1097290Z copying torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1127190Z copying torch/include/ATen/ops/linalg_inv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1128150Z copying torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1129340Z copying torch/include/ATen/ops/index_put_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1130510Z copying torch/include/ATen/ops/data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1132050Z copying torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1133510Z copying torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1134640Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1135740Z copying torch/include/ATen/ops/div_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1136940Z copying torch/include/ATen/ops/logaddexp_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1138240Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1139420Z copying torch/include/ATen/ops/permute_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1140580Z copying torch/include/ATen/ops/dense_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1141830Z copying torch/include/ATen/ops/xor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1143120Z copying torch/include/ATen/ops/max_unpool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1144390Z copying torch/include/ATen/ops/linalg_inv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1145640Z copying torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1146920Z copying torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1148360Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1149470Z copying torch/include/ATen/ops/ge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1150770Z copying torch/include/ATen/ops/_foreach_clamp_min.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1152050Z copying torch/include/ATen/ops/index_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1153390Z copying torch/include/ATen/ops/tanh_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1227800Z copying torch/include/ATen/ops/cos_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1228720Z copying torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1229920Z copying torch/include/ATen/ops/split.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1231130Z copying torch/include/ATen/ops/div.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1232310Z copying torch/include/ATen/ops/msort_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1233500Z copying torch/include/ATen/ops/refine_names_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1234710Z copying torch/include/ATen/ops/t_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1236070Z copying torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1237470Z copying torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1238800Z copying torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1240090Z copying torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1241500Z copying torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1242750Z copying torch/include/ATen/ops/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1244170Z copying torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1245480Z copying torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1246730Z copying torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1247920Z copying torch/include/ATen/ops/_foreach_log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1249210Z copying torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1250520Z copying torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1251870Z copying torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1253090Z copying torch/include/ATen/ops/softplus_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1254410Z copying torch/include/ATen/ops/log_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1319940Z copying torch/include/ATen/ops/trapz_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1320530Z copying torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1321840Z copying torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1322970Z copying torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1324180Z copying torch/include/ATen/ops/arcsin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1325430Z copying torch/include/ATen/ops/batch_norm_update_stats.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1326580Z copying torch/include/ATen/ops/exp2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1327780Z copying torch/include/ATen/ops/cosine_embedding_loss.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1329010Z copying torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1330270Z copying torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1331510Z copying torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1332670Z copying torch/include/ATen/ops/col_indices_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1333810Z copying torch/include/ATen/ops/lgamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1335110Z copying torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1336290Z copying torch/include/ATen/ops/pin_memory_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1337560Z copying torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1338760Z copying torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1339960Z copying torch/include/ATen/ops/special_bessel_j1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1341090Z copying torch/include/ATen/ops/div_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1342280Z copying torch/include/ATen/ops/_copy_from_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1343370Z copying torch/include/ATen/ops/_neg_view_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1350120Z copying torch/include/ATen/ops/concat_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1350490Z copying torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1350760Z copying torch/include/ATen/ops/histogramdd_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1351060Z copying torch/include/ATen/ops/_native_batch_norm_legit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1351340Z copying torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1351640Z copying torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1352080Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1353100Z copying torch/include/ATen/ops/igamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1354340Z copying torch/include/ATen/ops/_nested_get_offsets_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1355630Z copying torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1356710Z copying torch/include/ATen/ops/_standard_gamma_grad.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1357850Z copying torch/include/ATen/ops/zero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1359100Z copying torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1360380Z copying torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1361570Z copying torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1362740Z copying torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1364010Z copying torch/include/ATen/ops/pixel_unshuffle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1365280Z copying torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1366540Z copying torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1367690Z copying torch/include/ATen/ops/logcumsumexp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1368850Z copying torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1370210Z copying torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1371320Z copying torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1372610Z copying torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1373940Z copying torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1375130Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1376380Z copying torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1377570Z copying torch/include/ATen/ops/_is_any_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1378790Z copying torch/include/ATen/ops/linalg_tensorinv.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1380010Z copying torch/include/ATen/ops/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1381370Z copying torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1382670Z copying torch/include/ATen/ops/exponential.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1383930Z copying torch/include/ATen/ops/gt_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1386860Z copying torch/include/ATen/ops/linalg_det_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1387930Z copying torch/include/ATen/ops/masked_select_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1389240Z copying torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1390720Z copying torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1531260Z copying torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1532040Z copying torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1533280Z copying torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1534480Z copying torch/include/ATen/ops/_foreach_sqrt_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1535660Z copying torch/include/ATen/ops/atleast_1d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1536930Z copying torch/include/ATen/ops/isin_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1538120Z copying torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1539380Z copying torch/include/ATen/ops/_to_sparse_csr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1540620Z copying torch/include/ATen/ops/sinc_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1541800Z copying torch/include/ATen/ops/dist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1543000Z copying torch/include/ATen/ops/norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1544300Z copying torch/include/ATen/ops/hardtanh_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1553800Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1554750Z copying torch/include/ATen/ops/copysign_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1556060Z copying torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1557430Z copying torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1558700Z copying torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1600720Z copying torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1601700Z copying torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1602960Z copying torch/include/ATen/ops/histogramdd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1604180Z copying torch/include/ATen/ops/aminmax_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1605300Z copying torch/include/ATen/ops/index_reduce_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1606580Z copying torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1607760Z copying torch/include/ATen/ops/leaky_relu_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1608890Z copying torch/include/ATen/ops/lshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1610250Z copying torch/include/ATen/ops/fft_irfft_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1611320Z copying torch/include/ATen/ops/digamma_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1650160Z copying torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1651110Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1652470Z copying torch/include/ATen/ops/_sparse_addmm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1669180Z copying torch/include/ATen/ops/gather_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1670110Z copying torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1671280Z copying torch/include/ATen/ops/_dimI.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1677460Z copying torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1678540Z copying torch/include/ATen/ops/_weight_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1690840Z copying torch/include/ATen/ops/lu_unpack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1692010Z copying torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1709030Z copying torch/include/ATen/ops/_foreach_ceil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1710000Z copying torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1720520Z copying torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1721370Z copying torch/include/ATen/ops/matmul_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1722570Z copying torch/include/ATen/ops/_print_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1753730Z copying torch/include/ATen/ops/to_dense_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1754790Z copying torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1756000Z copying torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1757290Z copying torch/include/ATen/ops/quantize_per_channel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1758980Z copying torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1759940Z copying torch/include/ATen/ops/replication_pad3d_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1761060Z copying torch/include/ATen/ops/ctc_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1762320Z copying torch/include/ATen/ops/argwhere.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1763530Z copying torch/include/ATen/ops/_foreach_tan.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1764730Z copying torch/include/ATen/ops/asin_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1765960Z copying torch/include/ATen/ops/index_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1767190Z copying torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1768350Z copying torch/include/ATen/ops/bitwise_or.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1769870Z copying torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1771220Z copying torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1772310Z copying torch/include/ATen/ops/diff_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1773530Z copying torch/include/ATen/ops/fix.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1774910Z copying torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1776060Z copying torch/include/ATen/ops/special_expit_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1777260Z copying torch/include/ATen/ops/rsub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1778520Z copying torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1780120Z copying torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1781070Z copying torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1782300Z copying torch/include/ATen/ops/std.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1783530Z copying torch/include/ATen/ops/_is_all_true_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1784930Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1786230Z copying torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1787390Z copying torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1788690Z copying torch/include/ATen/ops/index_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1790000Z copying torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1791150Z copying torch/include/ATen/ops/_test_optional_floatlist.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1792560Z copying torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1793820Z copying torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1795060Z copying torch/include/ATen/ops/index_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1796190Z copying torch/include/ATen/ops/aminmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1797560Z copying torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1799030Z copying torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1800220Z copying torch/include/ATen/ops/tril_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1801500Z copying torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1802920Z copying torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1804050Z copying torch/include/ATen/ops/fmod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1805270Z copying torch/include/ATen/ops/randint_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1806460Z copying torch/include/ATen/ops/linalg_norm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1807970Z copying torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1809230Z copying torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1810450Z copying torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1811630Z copying torch/include/ATen/ops/special_expm1.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1812850Z copying torch/include/ATen/ops/special_erfinv_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1813970Z copying torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1815240Z copying torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1816410Z copying torch/include/ATen/ops/pad_sequence.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1817740Z copying torch/include/ATen/ops/hardswish.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1818850Z copying torch/include/ATen/ops/geqrf_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1820170Z copying torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1821310Z copying torch/include/ATen/ops/grid_sampler_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1822650Z copying torch/include/ATen/ops/logit_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1823990Z copying torch/include/ATen/ops/ones_like.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1825230Z copying torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1826650Z copying torch/include/ATen/ops/split_with_sizes_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1827910Z copying torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1829070Z copying torch/include/ATen/ops/neg_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1830280Z copying torch/include/ATen/ops/isfinite.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1831680Z copying torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1832850Z copying torch/include/ATen/ops/q_per_channel_axis_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1834090Z copying torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1835300Z copying torch/include/ATen/ops/_batch_norm_no_update.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1836780Z copying torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1837930Z copying torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1839260Z copying torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1840610Z copying torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1841960Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1843150Z copying torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1844490Z copying torch/include/ATen/ops/_is_zerotensor.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1845650Z copying torch/include/ATen/ops/xlogy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1846980Z copying torch/include/ATen/ops/is_conj_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1848180Z copying torch/include/ATen/ops/log10_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1849450Z copying torch/include/ATen/ops/_standard_gamma_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1850580Z copying torch/include/ATen/ops/conv2d_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1851960Z copying torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1853230Z copying torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1854580Z copying torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1855690Z copying torch/include/ATen/ops/_pin_memory.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1857150Z copying torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1858310Z copying torch/include/ATen/ops/gcd_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1859650Z copying torch/include/ATen/ops/_convolution_mode_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1860850Z copying torch/include/ATen/ops/convolution_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1862100Z copying torch/include/ATen/ops/cosine_similarity_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1863420Z copying torch/include/ATen/ops/_shape_as_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1864780Z copying torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1865990Z copying torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1867240Z copying torch/include/ATen/ops/conv_transpose3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1868520Z copying torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1869820Z copying torch/include/ATen/ops/reflection_pad3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.1871740Z copying torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2078270Z copying torch/include/ATen/ops/_version_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2079310Z copying torch/include/ATen/ops/_pdist_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2080560Z copying torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2102960Z copying torch/include/ATen/ops/empty_like_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2103700Z copying torch/include/ATen/ops/uniform.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2104920Z copying torch/include/ATen/ops/grid_sampler_3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2106160Z copying torch/include/ATen/ops/masked_scatter_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2107420Z copying torch/include/ATen/ops/rshift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2108630Z copying torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2109850Z copying torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2111040Z copying torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2112220Z copying torch/include/ATen/ops/diagonal_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2113410Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2114540Z copying torch/include/ATen/ops/avg_pool2d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2115830Z copying torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2117000Z copying torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2118220Z copying torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2119440Z copying torch/include/ATen/ops/bmm_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2164580Z copying torch/include/ATen/ops/detach_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2165540Z copying torch/include/ATen/ops/set.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2166760Z copying torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2168210Z copying torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2169390Z copying torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2170570Z copying torch/include/ATen/ops/silu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2171860Z copying torch/include/ATen/ops/native_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2197210Z copying torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2198060Z copying torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2199350Z copying torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2200540Z copying torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2201680Z copying torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2203030Z copying torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2226760Z copying torch/include/ATen/ops/det.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2227720Z copying torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2228870Z copying torch/include/ATen/ops/exp_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2230110Z copying torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2231280Z copying torch/include/ATen/ops/_fft_c2r_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2252790Z copying torch/include/ATen/ops/_add_batch_dim.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2254080Z copying torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2255240Z copying torch/include/ATen/ops/threshold_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2256470Z copying torch/include/ATen/ops/_foreach_tanh_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2257780Z copying torch/include/ATen/ops/linalg_vander.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2259060Z copying torch/include/ATen/ops/sigmoid_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2260260Z copying torch/include/ATen/ops/mish_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2261660Z copying torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2262900Z copying torch/include/ATen/ops/_has_same_storage_numel.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2264230Z copying torch/include/ATen/ops/embedding_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2301820Z copying torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2302800Z copying torch/include/ATen/ops/_cast_Double_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2304010Z copying torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2305180Z copying torch/include/ATen/ops/_softmax.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2306360Z copying torch/include/ATen/ops/diagonal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2307550Z copying torch/include/ATen/ops/new_full_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2308770Z copying torch/include/ATen/ops/isposinf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2310000Z copying torch/include/ATen/ops/new_empty_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2311330Z copying torch/include/ATen/ops/_weight_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2312680Z copying torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2314170Z copying torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2315390Z copying torch/include/ATen/ops/special_round.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2354700Z copying torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2355900Z copying torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2357310Z copying torch/include/ATen/ops/quantile_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2358710Z copying torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2359950Z copying torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2361250Z copying torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2362520Z copying torch/include/ATen/ops/pad_sequence_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2363910Z copying torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2365270Z copying torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2394050Z copying torch/include/ATen/ops/elu_backward_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2395470Z copying torch/include/ATen/ops/glu_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2396880Z copying torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2398160Z copying torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2399400Z copying torch/include/ATen/ops/_fw_primal_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2400610Z copying torch/include/ATen/ops/sym_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2401950Z copying torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2403210Z copying torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2404410Z copying torch/include/ATen/ops/hardsigmoid_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2405810Z copying torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2407090Z copying torch/include/ATen/ops/batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2408310Z copying torch/include/ATen/ops/row_indices_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2409740Z copying torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2410650Z copying torch/include/ATen/ops/slow_conv3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2411970Z copying torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2413130Z copying torch/include/ATen/ops/special_bessel_j1_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2414350Z copying torch/include/ATen/ops/t_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2415720Z copying torch/include/ATen/ops/det_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2417030Z copying torch/include/ATen/ops/_to_sparse_bsr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2418330Z copying torch/include/ATen/ops/randperm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2477840Z copying torch/include/ATen/ops/expand_copy_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2478770Z copying torch/include/ATen/ops/_fft_c2r.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2479980Z copying torch/include/ATen/ops/sqrt_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2481140Z copying torch/include/ATen/ops/cosine_similarity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2482340Z copying torch/include/ATen/ops/_foreach_add_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2483510Z copying torch/include/ATen/ops/nonzero_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2484790Z copying torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2485960Z copying torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2487300Z copying torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2488750Z copying torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2493720Z copying torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2494590Z copying torch/include/ATen/ops/logdet_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2495840Z copying torch/include/ATen/ops/take_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2497140Z copying torch/include/ATen/ops/miopen_rnn_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2498390Z copying torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2499700Z copying torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2500910Z copying torch/include/ATen/ops/greater_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2502280Z copying torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2550830Z copying torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2551530Z copying torch/include/ATen/ops/prod_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2552800Z copying torch/include/ATen/ops/tril_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2554030Z copying torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2555270Z copying torch/include/ATen/ops/_functional_assert_async_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2556550Z copying torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2557700Z copying torch/include/ATen/ops/_is_any_true_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2559040Z copying torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2560230Z copying torch/include/ATen/ops/_fused_adam_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2561400Z copying torch/include/ATen/ops/max_unpool3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2562630Z copying torch/include/ATen/ops/linalg_pinv_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2563870Z copying torch/include/ATen/ops/_cast_Half_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2565190Z copying torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2566330Z copying torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2567540Z copying torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2568890Z copying torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2575820Z copying torch/include/ATen/ops/col2im_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2576440Z copying torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2577250Z copying torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2577950Z copying torch/include/ATen/ops/crow_indices_copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2578500Z copying torch/include/ATen/ops/cosh_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2579120Z copying torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2579810Z copying torch/include/ATen/ops/threshold_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2580440Z copying torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2581210Z copying torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2581940Z copying torch/include/ATen/ops/_foreach_exp_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2582690Z copying torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2660280Z copying torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2661160Z copying torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2662340Z copying torch/include/ATen/ops/log_softmax_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2663530Z copying torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2664820Z copying torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2665960Z copying torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2667300Z copying torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2668410Z copying torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2669680Z copying torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2671020Z copying torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2672100Z copying torch/include/ATen/ops/is_pinned_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2673480Z copying torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2674790Z copying torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2676280Z copying torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2721170Z copying torch/include/ATen/ops/_cslt_compress_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2722110Z copying torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2723250Z copying torch/include/ATen/ops/_foreach_abs.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2724770Z copying torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2725960Z copying torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2727010Z copying torch/include/ATen/ops/histc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2728220Z copying torch/include/ATen/ops/upsample_trilinear3d.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2729450Z copying torch/include/ATen/ops/_sparse_sum_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2730720Z copying torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2731890Z copying torch/include/ATen/ops/relu_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2733150Z copying torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2734410Z copying torch/include/ATen/ops/linalg_matrix_exp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2735690Z copying torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2773610Z copying torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2774590Z copying torch/include/ATen/ops/_scaled_mm_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2775820Z copying torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2777090Z copying torch/include/ATen/ops/trapz_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2778510Z copying torch/include/ATen/ops/block_diag_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2779580Z copying torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2810490Z copying torch/include/ATen/ops/copy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2811740Z copying torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2812990Z copying torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2814180Z copying torch/include/ATen/ops/cumsum_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2815510Z copying torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2816640Z copying torch/include/ATen/ops/fft_ifftshift.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2817980Z copying torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2819280Z copying torch/include/ATen/ops/_assert_async.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2820570Z copying torch/include/ATen/ops/q_zero_point_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2821880Z copying torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2823200Z copying torch/include/ATen/ops/_values_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2824510Z copying torch/include/ATen/ops/is_same_size.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2825740Z copying torch/include/ATen/ops/atan2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2827110Z copying torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2828450Z copying torch/include/ATen/ops/diagonal_scatter_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2829760Z copying torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2831000Z copying torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2832250Z copying torch/include/ATen/ops/isnan_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2833830Z copying torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2834810Z copying torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2835920Z copying torch/include/ATen/ops/l1_loss_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2837270Z copying torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2838520Z copying torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2840010Z copying torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2841050Z copying torch/include/ATen/ops/nuclear_norm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2842280Z copying torch/include/ATen/ops/lift_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2843790Z copying torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2845020Z copying torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2846200Z copying torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2847540Z copying torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2848700Z copying torch/include/ATen/ops/and_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2850100Z copying torch/include/ATen/ops/select.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2851330Z copying torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2852670Z copying torch/include/ATen/ops/true_divide.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2854010Z copying torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2855380Z copying torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2856670Z copying torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2857890Z copying torch/include/ATen/ops/nonzero_numpy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2859290Z copying torch/include/ATen/ops/special_sinc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2860600Z copying torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2861890Z copying torch/include/ATen/ops/_foreach_cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2963400Z copying torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2964320Z copying torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2965500Z copying torch/include/ATen/ops/_pdist_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2967120Z copying torch/include/ATen/ops/cos_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2968630Z copying torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2969810Z copying torch/include/ATen/ops/tan_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2971050Z copying torch/include/ATen/ops/ones_like_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2972400Z copying torch/include/ATen/ops/_conj_physical_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2973690Z copying torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2975190Z copying torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2976440Z copying torch/include/ATen/ops/_to_copy_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2977610Z copying torch/include/ATen/ops/cos_cpu_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2978920Z copying torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2980180Z copying torch/include/ATen/ops/mkldnn_convolution_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2981470Z copying torch/include/ATen/ops/_fused_rms_norm_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.2982840Z copying torch/include/ATen/ops/_linalg_eigh.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3033080Z copying torch/include/ATen/ops/_print_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3033920Z copying torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3035120Z copying torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3036360Z copying torch/include/ATen/ops/cat_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3038340Z copying torch/include/ATen/ops/ne_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3039120Z copying torch/include/ATen/ops/expand_as_native.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3040440Z copying torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3041720Z copying torch/include/ATen/ops/complex_mps_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3042870Z copying torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3044410Z copying torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops 2025-07-24T03:55:03.3045920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3086360Z copying torch/include/ATen/functorch/BatchedFallback.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3087470Z copying torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3088640Z copying torch/include/ATen/functorch/ADInterpreters.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3089890Z copying torch/include/ATen/functorch/Interpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3091270Z copying torch/include/ATen/functorch/TensorWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3092730Z copying torch/include/ATen/functorch/BatchRulesHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3094160Z copying torch/include/ATen/functorch/PlumbingHelper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3095430Z copying torch/include/ATen/functorch/VmapInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3096580Z copying torch/include/ATen/functorch/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3097850Z copying torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3099020Z copying torch/include/ATen/functorch/BatchedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3100220Z copying torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3101420Z copying torch/include/ATen/functorch/DynamicLayer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch 2025-07-24T03:55:03.3102720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-24T03:55:03.3103270Z copying torch/include/ATen/cudnn/Handles.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-24T03:55:03.3104540Z copying torch/include/ATen/cudnn/Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-24T03:55:03.3105680Z copying torch/include/ATen/cudnn/Types.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-24T03:55:03.3106820Z copying torch/include/ATen/cudnn/Descriptors.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-24T03:55:03.3107980Z copying torch/include/ATen/cudnn/Handle.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-24T03:55:03.3109170Z copying torch/include/ATen/cudnn/cudnn-wrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn 2025-07-24T03:55:03.3110450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10 2025-07-24T03:55:03.3110950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3111570Z copying torch/include/c10/core/RefcountedDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3112800Z copying torch/include/c10/core/QEngine.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3113950Z copying torch/include/c10/core/TensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3115330Z copying torch/include/c10/core/SymFloat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3116480Z copying torch/include/c10/core/GradMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3117670Z copying torch/include/c10/core/Device.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3118910Z copying torch/include/c10/core/CPUAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3120340Z copying torch/include/c10/core/DefaultDtype.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3121600Z copying torch/include/c10/core/DefaultTensorOptions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3122840Z copying torch/include/c10/core/alignment.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3124130Z copying torch/include/c10/core/Event.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3125080Z copying torch/include/c10/core/Backend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3126310Z copying torch/include/c10/core/CompileTimeFunctionPointer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3127490Z copying torch/include/c10/core/DeviceArray.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3128630Z copying torch/include/c10/core/PyHandleCache.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3129860Z copying torch/include/c10/core/ConstantSymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3131000Z copying torch/include/c10/core/WrapDimMinimal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3132210Z copying torch/include/c10/core/QScheme.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3133400Z copying torch/include/c10/core/SafePyObject.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3134550Z copying torch/include/c10/core/Stream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3135810Z copying torch/include/c10/core/UndefinedTensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3136990Z copying torch/include/c10/core/Scalar.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3138140Z copying torch/include/c10/core/AutogradState.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3139330Z copying torch/include/c10/core/SymIntArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3140520Z copying torch/include/c10/core/thread_pool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3141680Z copying torch/include/c10/core/CopyBytes.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3142830Z copying torch/include/c10/core/SymNodeImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3144150Z copying torch/include/c10/core/StreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3145330Z copying torch/include/c10/core/DynamicCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3146470Z copying torch/include/c10/core/Layout.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3147740Z copying torch/include/c10/core/GeneratorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3148920Z copying torch/include/c10/core/DispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3150390Z copying torch/include/c10/core/Allocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3151580Z copying torch/include/c10/core/TensorImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3153420Z copying torch/include/c10/core/Contiguity.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3154590Z copying torch/include/c10/core/ScalarType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3156340Z copying torch/include/c10/core/Storage.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3157200Z copying torch/include/c10/core/DeviceType.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3158400Z copying torch/include/c10/core/DeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3159600Z copying torch/include/c10/core/StorageImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3160780Z copying torch/include/c10/core/SymbolicShapeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3161980Z copying torch/include/c10/core/MemoryFormat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3163120Z copying torch/include/c10/core/SymBool.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3164310Z copying torch/include/c10/core/DispatchKey.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3165640Z copying torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3166820Z copying torch/include/c10/core/InferenceMode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3167970Z copying torch/include/c10/core/SymInt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3169200Z copying torch/include/c10/core/OptionalRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3170380Z copying torch/include/c10/core/CachingDeviceAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core 2025-07-24T03:55:03.3171640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3172280Z copying torch/include/c10/core/impl/InlineStreamGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3173520Z copying torch/include/c10/core/impl/SizesAndStrides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3174810Z copying torch/include/c10/core/impl/InlineDeviceGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3175970Z copying torch/include/c10/core/impl/GPUTrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3177160Z copying torch/include/c10/core/impl/COWDeleter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3178410Z copying torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3179570Z copying torch/include/c10/core/impl/alloc_cpu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3180820Z copying torch/include/c10/core/impl/VirtualGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3182080Z copying torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3183250Z copying torch/include/c10/core/impl/PyObjectSlot.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3184570Z copying torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3185820Z copying torch/include/c10/core/impl/PyInterpreter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3187040Z copying torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3188370Z copying torch/include/c10/core/impl/COW.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3189640Z copying torch/include/c10/core/impl/InlineEvent.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3190910Z copying torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3192120Z copying torch/include/c10/core/impl/FakeGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl 2025-07-24T03:55:03.3193360Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test 2025-07-24T03:55:03.3194080Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-07-24T03:55:03.3195220Z copying torch/include/c10/test/util/complex_test_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-07-24T03:55:03.3196430Z copying torch/include/c10/test/util/complex_math_test_common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-07-24T03:55:03.3197830Z copying torch/include/c10/test/util/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util 2025-07-24T03:55:03.3204860Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3205390Z copying torch/include/c10/util/Type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3206460Z copying torch/include/c10/util/order_preserving_flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3212770Z copying torch/include/c10/util/Float8_e4m3fn-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3213510Z copying torch/include/c10/util/quint4x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3220790Z copying torch/include/c10/util/FbcodeMaps.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3221480Z copying torch/include/c10/util/Semaphore.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3222830Z copying torch/include/c10/util/signal_handler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3228010Z copying torch/include/c10/util/error.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3229490Z copying torch/include/c10/util/safe_numerics.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3236530Z copying torch/include/c10/util/Half.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3237390Z copying torch/include/c10/util/flat_hash_map.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3238870Z copying torch/include/c10/util/env.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3245050Z copying torch/include/c10/util/llvmMathExtras.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3245970Z copying torch/include/c10/util/Gauge.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3253540Z copying torch/include/c10/util/WaitCounterDynamicBackend.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3261120Z copying torch/include/c10/util/Float8_e8m0fnu-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3261900Z copying torch/include/c10/util/Synchronized.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3263040Z copying torch/include/c10/util/Bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3269360Z copying torch/include/c10/util/typeid.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3270510Z copying torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3279090Z copying torch/include/c10/util/TypeSafeSignMath.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3279890Z copying torch/include/c10/util/intrusive_ptr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3281340Z copying torch/include/c10/util/string_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3288120Z copying torch/include/c10/util/IntrusiveList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3289040Z copying torch/include/c10/util/win32-headers.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3290260Z copying torch/include/c10/util/AlignOf.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3291610Z copying torch/include/c10/util/static_tracepoint.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3292760Z copying torch/include/c10/util/ssize.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3293990Z copying torch/include/c10/util/Enumerate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3295220Z copying torch/include/c10/util/numa.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3296500Z copying torch/include/c10/util/qint32.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3297820Z copying torch/include/c10/util/Float4_e2m1fn_x2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3299090Z copying torch/include/c10/util/CallOnce.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3300290Z copying torch/include/c10/util/Float8_e5m2fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3302020Z copying torch/include/c10/util/MaybeOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3302850Z copying torch/include/c10/util/Half-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3304110Z copying torch/include/c10/util/TypeTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3305360Z copying torch/include/c10/util/DeadlockDetection.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3306710Z copying torch/include/c10/util/FunctionRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3307850Z copying torch/include/c10/util/Backtrace.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3310540Z copying torch/include/c10/util/overflows.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3312730Z copying torch/include/c10/util/ExclusivelyOwned.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3456740Z copying torch/include/c10/util/Load.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3457730Z copying torch/include/c10/util/BFloat16-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3458830Z copying torch/include/c10/util/static_tracepoint_elfx86.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3460070Z copying torch/include/c10/util/ConstexprCrc.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3461250Z copying torch/include/c10/util/ThreadLocal.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3462590Z copying torch/include/c10/util/IdWrapper.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3463800Z copying torch/include/c10/util/Flags.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3465040Z copying torch/include/c10/util/overloaded.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3466260Z copying torch/include/c10/util/Float8_e4m3fnuz.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3467450Z copying torch/include/c10/util/quint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3468650Z copying torch/include/c10/util/Float8_e5m2-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3469910Z copying torch/include/c10/util/StringUtil.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3471100Z copying torch/include/c10/util/Logging.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3472330Z copying torch/include/c10/util/MathConstants.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3473630Z copying torch/include/c10/util/Registry.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3474880Z copying torch/include/c10/util/Optional.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3476020Z copying torch/include/c10/util/Float8_e5m2.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3477150Z copying torch/include/c10/util/tempfile.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3478350Z copying torch/include/c10/util/copysign.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3479650Z copying torch/include/c10/util/ArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3480780Z copying torch/include/c10/util/thread_name.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3481960Z copying torch/include/c10/util/strides.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3483100Z copying torch/include/c10/util/Unicode.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3484500Z copying torch/include/c10/util/Float8_e8m0fnu.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3485680Z copying torch/include/c10/util/TypeCast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3487040Z copying torch/include/c10/util/sparse_bitset.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3488500Z copying torch/include/c10/util/OptionalArrayRef.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3489680Z copying torch/include/c10/util/BFloat16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3490910Z copying torch/include/c10/util/TypeList.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3492360Z copying torch/include/c10/util/TypeIndex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3493600Z copying torch/include/c10/util/NetworkFlow.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3494820Z copying torch/include/c10/util/Array.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3495960Z copying torch/include/c10/util/logging_is_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3497180Z copying torch/include/c10/util/Metaprogramming.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3498310Z copying torch/include/c10/util/WaitCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3499530Z copying torch/include/c10/util/quint2x4.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3500680Z copying torch/include/c10/util/floating_point_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3501950Z copying torch/include/c10/util/ParallelGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3503070Z copying torch/include/c10/util/BFloat16-math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3504240Z copying torch/include/c10/util/int128.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3505410Z copying torch/include/c10/util/Lazy.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3506770Z copying torch/include/c10/util/Deprecated.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3508000Z copying torch/include/c10/util/irange.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3509050Z copying torch/include/c10/util/SmallBuffer.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3510200Z copying torch/include/c10/util/ScopeExit.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3511350Z copying torch/include/c10/util/Unroll.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3518590Z copying torch/include/c10/util/LeftRight.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3518850Z copying torch/include/c10/util/bit_cast.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3519110Z copying torch/include/c10/util/qint8.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3519350Z copying torch/include/c10/util/complex_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3519630Z copying torch/include/c10/util/logging_is_not_google_glog.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3519880Z copying torch/include/c10/util/DynamicCounter.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3520110Z copying torch/include/c10/util/Exception.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3520870Z copying torch/include/c10/util/UniqueVoidPtr.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3521960Z copying torch/include/c10/util/ThreadLocalDebugInfo.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3523100Z copying torch/include/c10/util/Float8_e4m3fn.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3524310Z copying torch/include/c10/util/AbortHandler.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3525430Z copying torch/include/c10/util/DimVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3526710Z copying torch/include/c10/util/accumulate.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3527820Z copying torch/include/c10/util/C++17.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3529040Z copying torch/include/c10/util/strong_type.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3530450Z copying torch/include/c10/util/ApproximateClock.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3531660Z copying torch/include/c10/util/SmallVector.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3533130Z copying torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3534260Z copying torch/include/c10/util/hash.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3535390Z copying torch/include/c10/util/python_stub.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3536600Z copying torch/include/c10/util/complex.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3537940Z copying torch/include/c10/util/bits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3539090Z copying torch/include/c10/util/string_view.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3540390Z copying torch/include/c10/util/Float8_fnuz_cvt.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3541550Z copying torch/include/c10/util/complex_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3542810Z copying torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3543970Z copying torch/include/c10/util/generic_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util 2025-07-24T03:55:03.3545290Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-24T03:55:03.3545840Z copying torch/include/c10/metal/utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-24T03:55:03.3547130Z copying torch/include/c10/metal/special_math.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-24T03:55:03.3548650Z copying torch/include/c10/metal/reduction_utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-24T03:55:03.3549890Z copying torch/include/c10/metal/expm1f.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-24T03:55:03.3550980Z copying torch/include/c10/metal/common.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-24T03:55:03.3552090Z copying torch/include/c10/metal/indexing.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-24T03:55:03.3553370Z copying torch/include/c10/metal/random.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-24T03:55:03.3554540Z copying torch/include/c10/metal/atomic.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal 2025-07-24T03:55:03.3555810Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3556430Z copying torch/include/c10/cuda/CUDADeviceAssertion.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3557600Z copying torch/include/c10/cuda/driver_api.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3558820Z copying torch/include/c10/cuda/CUDAMathCompat.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3559980Z copying torch/include/c10/cuda/CUDAAlgorithm.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3561200Z copying torch/include/c10/cuda/CUDAStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3562380Z copying torch/include/c10/cuda/CUDAGuard.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3563630Z copying torch/include/c10/cuda/CUDAMiscFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3564990Z copying torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3566090Z copying torch/include/c10/cuda/CUDAMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3567590Z copying torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3568800Z copying torch/include/c10/cuda/CUDAFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3570130Z copying torch/include/c10/cuda/CUDAException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3571300Z copying torch/include/c10/cuda/CUDACachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3572740Z copying torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda 2025-07-24T03:55:03.3574000Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-07-24T03:55:03.3574680Z copying torch/include/c10/cuda/impl/CUDATest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-07-24T03:55:03.3575920Z copying torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl 2025-07-24T03:55:03.3577180Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-24T03:55:03.3577720Z copying torch/include/c10/xpu/XPUStream.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-24T03:55:03.3578990Z copying torch/include/c10/xpu/XPUDeviceProp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-24T03:55:03.3580220Z copying torch/include/c10/xpu/XPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-24T03:55:03.3581440Z copying torch/include/c10/xpu/XPUMacros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-24T03:55:03.3582650Z copying torch/include/c10/xpu/XPUException.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-24T03:55:03.3584010Z copying torch/include/c10/xpu/XPUFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu 2025-07-24T03:55:03.3585400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-07-24T03:55:03.3586100Z copying torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl 2025-07-24T03:55:03.3587170Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test 2025-07-24T03:55:03.3587640Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-07-24T03:55:03.3588220Z copying torch/include/c10/xpu/test/impl/XPUTest.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl 2025-07-24T03:55:03.3589410Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-07-24T03:55:03.3590000Z copying torch/include/c10/macros/cmake_macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-07-24T03:55:03.3591260Z copying torch/include/c10/macros/Export.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-07-24T03:55:03.3592430Z copying torch/include/c10/macros/Macros.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros 2025-07-24T03:55:03.3593600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-07-24T03:55:03.3594340Z copying torch/include/c10/mobile/CPUCachingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-07-24T03:55:03.3595600Z copying torch/include/c10/mobile/CPUProfilingAllocator.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile 2025-07-24T03:55:03.3596900Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-07-24T03:55:03.3597490Z copying torch/include/fp16/fp16.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-07-24T03:55:03.3598970Z copying torch/include/fp16/psimd.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-07-24T03:55:03.3600100Z copying torch/include/fp16/bitcasts.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16 2025-07-24T03:55:03.3601610Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3603140Z copying torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3604370Z copying torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3605600Z copying torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3610100Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3611740Z copying torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3613200Z copying torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3619090Z copying torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3620080Z copying torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3626560Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3628160Z copying torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3633730Z copying torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3634710Z copying torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3636190Z copying torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3638050Z copying torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3642750Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3653160Z copying torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3653980Z copying torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3655380Z copying torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3662670Z copying torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3663610Z copying torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3670900Z copying torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3671820Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3678460Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3679640Z copying torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3680840Z copying torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3686790Z copying torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3687760Z copying torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3689030Z copying torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3690250Z copying torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3691520Z copying torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3692750Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3694180Z copying torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3695670Z copying torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3697010Z copying torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3698300Z copying torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3699740Z copying torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3700990Z copying torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3702290Z copying torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:03.3703540Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-24T03:55:03.3704290Z copying torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-24T03:55:03.3705780Z copying torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-24T03:55:03.3706920Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-24T03:55:03.3707670Z 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-07-24T03:55:03.3708850Z copying torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-24T03:55:03.3710380Z copying torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-24T03:55:03.3711400Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-24T03:55:03.3712110Z copying torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-24T03:55:03.3713350Z copying torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-24T03:55:03.3714720Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:03.3715910Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:03.3720070Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:03.3724440Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:03.3726960Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:03.3727940Z copying torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:03.3733820Z copying torch/include/torch/csrc/jit/testing/catch_utils.hpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing 2025-07-24T03:55:03.3735900Z copying torch/include/ATen/native/cuda/Normalization.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3741220Z copying torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3742220Z copying torch/include/ATen/native/cuda/block_reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3748380Z copying torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3749830Z copying torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3756400Z copying torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3757380Z copying torch/include/ATen/native/cuda/im2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3758650Z copying torch/include/ATen/native/cuda/cutlass_common.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3763530Z copying torch/include/ATen/native/cuda/SortUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3765920Z copying torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3770790Z copying torch/include/ATen/native/cuda/UpSample.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3778970Z copying torch/include/ATen/native/cuda/Randperm.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3779700Z copying torch/include/ATen/native/cuda/vol2col.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3781250Z copying torch/include/ATen/native/cuda/Pow.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3786840Z copying torch/include/ATen/native/cuda/reduction_template.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3788280Z copying torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3795840Z copying torch/include/ATen/native/cuda/Math.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3802610Z copying torch/include/ATen/native/cuda/SortingCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3803420Z copying torch/include/ATen/native/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3810260Z copying torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3811450Z copying torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3812630Z copying torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3820050Z copying torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3821030Z copying torch/include/ATen/native/cuda/GroupMMCommon.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3828200Z copying torch/include/ATen/native/cuda/JitLoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3829370Z copying torch/include/ATen/native/cuda/KernelUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3830060Z copying torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3831390Z copying torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3832580Z copying torch/include/ATen/native/cuda/Loops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3833720Z copying torch/include/ATen/native/cuda/UniqueCub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3835000Z copying torch/include/ATen/native/cuda/CUDALoops.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3836710Z copying torch/include/ATen/native/cuda/GridSampler.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3837990Z copying torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3839330Z copying torch/include/ATen/native/cuda/Reduce.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3840860Z copying torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3842040Z copying torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda 2025-07-24T03:55:03.3843190Z copying torch/include/ATen/cuda/AsmUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3844410Z copying torch/include/ATen/cuda/cub-RadixSortPairs.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3845610Z copying torch/include/ATen/cuda/DeviceUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3846760Z copying torch/include/ATen/cuda/cub_definitions.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3847940Z copying torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3849130Z copying torch/include/ATen/cuda/PhiloxUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3850370Z copying torch/include/ATen/cuda/ScanUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3851550Z copying torch/include/ATen/cuda/NumericLimits.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3852750Z copying torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3853850Z copying torch/include/ATen/cuda/cub.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3855300Z copying torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3856460Z copying torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3857760Z copying torch/include/ATen/cuda/Atomic.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda 2025-07-24T03:55:03.3859160Z copying torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:03.3860470Z copying torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:03.3861660Z copying torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:03.3862950Z copying torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:03.3864160Z copying torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:03.3865330Z copying torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail 2025-07-24T03:55:03.3866580Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc 2025-07-24T03:55:03.3867100Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor 2025-07-24T03:55:03.3867600Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:03.3868210Z copying torch/csrc/inductor/aoti_runtime/model.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:03.3869490Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-07-24T03:55:03.3870140Z copying torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime 2025-07-24T03:55:03.3923960Z copying torch/_inductor/script.ld -> build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor 2025-07-24T03:55:03.3932980Z copying torch/_export/serde/schema.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-24T03:55:03.3940380Z copying torch/_export/serde/export_schema.thrift -> build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde 2025-07-24T03:55:03.3947450Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share 2025-07-24T03:55:03.3947680Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake 2025-07-24T03:55:03.3948110Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-07-24T03:55:03.3948700Z copying torch/share/cmake/ATen/ATenConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen 2025-07-24T03:55:03.3949950Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-24T03:55:03.3950590Z copying torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-24T03:55:03.3952050Z copying torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-24T03:55:03.3952980Z copying torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-24T03:55:03.3954210Z copying torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-24T03:55:03.3955640Z copying torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-24T03:55:03.3956820Z copying torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-24T03:55:03.3958010Z copying torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2 2025-07-24T03:55:03.3959160Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3959760Z copying torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3960990Z copying torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3962160Z copying torch/share/cmake/Caffe2/public/glog.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3963410Z copying torch/share/cmake/Caffe2/public/utils.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3965040Z copying torch/share/cmake/Caffe2/public/protobuf.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3965960Z copying torch/share/cmake/Caffe2/public/mkl.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3967120Z copying torch/share/cmake/Caffe2/public/gflags.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3968310Z copying torch/share/cmake/Caffe2/public/cuda.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3969550Z copying torch/share/cmake/Caffe2/public/xpu.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public 2025-07-24T03:55:03.3970720Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-24T03:55:03.3971330Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-24T03:55:03.3972590Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-24T03:55:03.3973760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:03.3974500Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:03.3975970Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:03.3976960Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:03.3978640Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:03.3979760Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:03.3980510Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:03.3981730Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:03.3983090Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:03.3984390Z copying torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:03.3985380Z creating build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-07-24T03:55:03.3985980Z copying torch/share/cmake/Torch/TorchConfig.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-07-24T03:55:03.3987210Z copying torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch 2025-07-24T03:55:03.3988420Z copying torch/utils/benchmark/utils/timeit_template.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils 2025-07-24T03:55:03.4002110Z copying torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:03.4009560Z copying torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:03.4016180Z copying torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:03.4019650Z copying torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:03.4020210Z copying torch/utils/model_dump/skeleton.html -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-24T03:55:03.4038360Z copying torch/utils/model_dump/code.js -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-24T03:55:03.4050650Z copying torch/utils/model_dump/preact.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-24T03:55:03.4057950Z copying torch/utils/model_dump/htm.mjs -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump 2025-07-24T03:55:03.4065200Z copying torch/_dynamo/graph_break_registry.json -> build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo 2025-07-24T03:55:03.4066580Z copying torch/lib/libtorch_python.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-24T03:55:03.4874170Z copying torch/lib/libtorch.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-24T03:55:03.4892980Z copying torch/lib/libtorch_global_deps.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-24T03:55:03.4906050Z copying torch/lib/libtorch_cpu.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-24T03:55:04.7305300Z copying torch/lib/libc10.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-24T03:55:04.7445380Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged 2025-07-24T03:55:04.7445740Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7447050Z copying torchgen/packaged/autograd/load_derivatives.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7447940Z copying torchgen/packaged/autograd/build.bzl -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7449250Z copying torchgen/packaged/autograd/gen_autograd.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7450610Z copying torchgen/packaged/autograd/gen_python_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7452150Z copying torchgen/packaged/autograd/gen_autograd_functions.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7453680Z copying torchgen/packaged/autograd/gen_variable_factories.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7454950Z copying torchgen/packaged/autograd/__init__.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7456010Z copying torchgen/packaged/autograd/gen_variable_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7457750Z copying torchgen/packaged/autograd/README.md -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7459150Z copying torchgen/packaged/autograd/context.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7460410Z copying torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7461850Z copying torchgen/packaged/autograd/deprecated.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7463140Z copying torchgen/packaged/autograd/BUILD.bazel -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7464410Z copying torchgen/packaged/autograd/gen_trace_type.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7465880Z copying torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7467150Z copying torchgen/packaged/autograd/derivatives.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7469640Z copying torchgen/packaged/autograd/gen_view_funcs.py -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd 2025-07-24T03:55:04.7470580Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7471250Z copying torchgen/packaged/autograd/templates/python_return_types.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7472640Z copying torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7473910Z copying torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7475050Z copying torchgen/packaged/autograd/templates/python_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7476310Z copying torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7477560Z copying torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7478800Z copying torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7480050Z copying torchgen/packaged/autograd/templates/ViewFuncs.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7481360Z copying torchgen/packaged/autograd/templates/python_return_types.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7482690Z copying torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7483820Z copying torchgen/packaged/autograd/templates/TraceType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7485250Z copying torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7486850Z copying torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7488080Z copying torchgen/packaged/autograd/templates/python_functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7489330Z copying torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7490690Z copying torchgen/packaged/autograd/templates/VariableType.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7491950Z copying torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7493290Z copying torchgen/packaged/autograd/templates/VariableType.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7494470Z copying torchgen/packaged/autograd/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7495780Z copying torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7497020Z copying torchgen/packaged/autograd/templates/variable_factories.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7498300Z copying torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7499460Z copying torchgen/packaged/autograd/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates 2025-07-24T03:55:04.7500700Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen 2025-07-24T03:55:04.7501150Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-07-24T03:55:04.7501860Z copying torchgen/packaged/ATen/native/native_functions.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-07-24T03:55:04.7506260Z copying torchgen/packaged/ATen/native/tags.yaml -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native 2025-07-24T03:55:04.7507140Z creating build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7507860Z copying torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7509100Z copying torchgen/packaged/ATen/templates/TensorBody.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7510660Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7511620Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7512880Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7514090Z copying torchgen/packaged/ATen/templates/Operators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7515300Z copying torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7516460Z copying torchgen/packaged/ATen/templates/NativeFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7517580Z copying torchgen/packaged/ATen/templates/Operator.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7518830Z copying torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7519990Z copying torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7521200Z copying torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7522450Z copying torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7523610Z copying torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7524900Z copying torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7526060Z copying torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7527260Z copying torchgen/packaged/ATen/templates/MethodOperators.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7528470Z copying torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7529650Z copying torchgen/packaged/ATen/templates/Operators.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7530840Z copying torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7532120Z copying torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7533270Z copying torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7534440Z copying torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7535840Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7536900Z copying torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7538150Z copying torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7539350Z copying torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7540520Z copying torchgen/packaged/ATen/templates/Functions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7541800Z copying torchgen/packaged/ATen/templates/NativeFunctions.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7543110Z copying torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7544260Z copying torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7545400Z copying torchgen/packaged/ATen/templates/enum_tag.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7546550Z copying torchgen/packaged/ATen/templates/Functions.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7547780Z copying torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7549020Z copying torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7550170Z copying torchgen/packaged/ATen/templates/Function.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7551370Z copying torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7552530Z copying torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7553730Z copying torchgen/packaged/ATen/templates/LazyIr.h -> build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates 2025-07-24T03:55:04.7554920Z copying torch/nn/parameter.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:55:04.7557240Z copying torch/nn/functional.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/nn 2025-07-24T03:55:04.7558810Z copying torch/utils/_config_typing.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils 2025-07-24T03:55:04.7560460Z copying torch/jit/_script.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/jit 2025-07-24T03:55:04.7562810Z copying torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim 2025-07-24T03:55:04.7564070Z copying torch/optim/_multi_tensor/__init__.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor 2025-07-24T03:55:04.7835680Z copying torch/utils/data/datapipes/datapipe.pyi -> build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes 2025-07-24T03:55:04.8196970Z running build_ext 2025-07-24T03:55:04.8215920Z -- Building with NumPy bindings 2025-07-24T03:55:04.8216120Z -- Not using cuDNN 2025-07-24T03:55:04.8216270Z -- Not using CUDA 2025-07-24T03:55:04.8216400Z -- Not using XPU 2025-07-24T03:55:04.8216520Z -- Not using MKLDNN 2025-07-24T03:55:04.8216640Z -- Not using NCCL 2025-07-24T03:55:04.8216790Z -- Building with distributed package: 2025-07-24T03:55:04.8216980Z -- USE_TENSORPIPE=False 2025-07-24T03:55:04.8217130Z -- USE_GLOO=False 2025-07-24T03:55:04.8217250Z -- USE_MPI=False 2025-07-24T03:55:04.8217370Z -- Not using ITT 2025-07-24T03:55:04.9038070Z Copying functorch._C from functorch/functorch.so to /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so 2025-07-24T03:55:04.9038910Z copying functorch/functorch.so -> /Users/ec2-user/runner/_work/pytorch/pytorch/build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so 2025-07-24T03:55:04.9074290Z building 'torch._C' extension 2025-07-24T03:55:04.9074780Z creating build/temp.macosx-14.0-arm64-cpython-312 2025-07-24T03:55:04.9075420Z creating build/temp.macosx-14.0-arm64-cpython-312/torch 2025-07-24T03:55:04.9075920Z creating build/temp.macosx-14.0-arm64-cpython-312/torch/csrc 2025-07-24T03:55:04.9084870Z clang -fno-strict-overflow -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk -I/Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/include -I/opt/homebrew/opt/python@3.12/Frameworks/Python.framework/Versions/3.12/include/python3.12 -c torch/csrc/stub.c -o build/temp.macosx-14.0-arm64-cpython-312/torch/csrc/stub.o -Wall -Wextra -Wno-strict-overflow -Wno-unused-parameter -Wno-missing-field-initializers -Wno-unknown-pragmas -fno-strict-aliasing 2025-07-24T03:55:05.0080590Z clang -bundle -undefined dynamic_lookup -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX14.sdk build/temp.macosx-14.0-arm64-cpython-312/torch/csrc/stub.o -L/Users/ec2-user/runner/_work/pytorch/pytorch/torch/lib -ltorch_python -o build/lib.macosx-14.0-arm64-cpython-312/torch/_C.cpython-312-darwin.so -Wl,-rpath,@loader_path/lib 2025-07-24T03:55:05.1241530Z copying /opt/homebrew/opt/libomp/lib/libomp.dylib -> build/lib.macosx-14.0-arm64-cpython-312/torch/lib 2025-07-24T03:55:05.9099690Z copying /opt/homebrew/opt/libomp/include/omp.h -> build/lib.macosx-14.0-arm64-cpython-312/torch/include 2025-07-24T03:55:05.9140030Z /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084/lib/python3.12/site-packages/setuptools/_distutils/cmd.py:66: SetuptoolsDeprecationWarning: setup.py install is deprecated. 2025-07-24T03:55:05.9140570Z !! 2025-07-24T03:55:05.9140760Z 2025-07-24T03:55:05.9140910Z ******************************************************************************** 2025-07-24T03:55:05.9141180Z Please avoid running ``setup.py`` directly. 2025-07-24T03:55:05.9141420Z Instead, use pypa/build, pypa/installer or other 2025-07-24T03:55:05.9141640Z standards-based tools. 2025-07-24T03:55:05.9141750Z 2025-07-24T03:55:05.9141940Z See https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html for details. 2025-07-24T03:55:05.9142260Z ******************************************************************************** 2025-07-24T03:55:05.9142410Z 2025-07-24T03:55:05.9142440Z !! 2025-07-24T03:55:05.9142570Z self.initialize_options() 2025-07-24T03:55:05.9164660Z installing to build/bdist.macosx-14.0-arm64/wheel 2025-07-24T03:55:05.9164880Z running install 2025-07-24T03:55:05.9203790Z running install_lib 2025-07-24T03:55:05.9230310Z creating build/bdist.macosx-14.0-arm64 2025-07-24T03:55:05.9231150Z creating build/bdist.macosx-14.0-arm64/wheel 2025-07-24T03:55:05.9233250Z creating build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:05.9234090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9234960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/flat_apply.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9236630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/foreach_map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9238040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/effects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9243990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/_invoke_quant.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9249300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/invoke_subgraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9263750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/aoti_call_delegate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9264680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/while_loop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9266090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/base_hop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9271680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9276630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/strict_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9277430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/torchbind.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9278660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/cond.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9280100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9281350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/hints_wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9282580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9288550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/out_dtype.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9289510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/executorch_call_delegate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9290740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/scan.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9292190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/run_const_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9297430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/associative_scan.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9298530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/auto_functionalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9300060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/triton_kernel_wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9301600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9302990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9304080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_higher_order_ops/schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_higher_order_ops 2025-07-24T03:55:05.9305450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-24T03:55:05.9306130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/debug_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-24T03:55:05.9307310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-24T03:55:05.9308930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-24T03:55:05.9310100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/rng_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-24T03:55:05.9311250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims/executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims 2025-07-24T03:55:05.9312410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_storage_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:05.9313830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc 2025-07-24T03:55:05.9314590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor 2025-07-24T03:55:05.9315420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:05.9316180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/csrc/inductor/aoti_runtime/model.h -> build/bdist.macosx-14.0-arm64/wheel/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:05.9322610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-24T03:55:05.9323150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-24T03:55:05.9324560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/scribe.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-24T03:55:05.9329970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-24T03:55:05.9330910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-24T03:55:05.9332040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_logging/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_logging 2025-07-24T03:55:05.9333540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9334240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/partitioners.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9336040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compile_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9341660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9342610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/autograd_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9344510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-24T03:55:05.9345350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/graph_info_provider.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-24T03:55:05.9346650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/knapsack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-24T03:55:05.9347880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-24T03:55:05.9349110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/ac_logging_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-24T03:55:05.9350750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_activation_checkpointing/knapsack_evaluator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_activation_checkpointing 2025-07-24T03:55:05.9351560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/python_key.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9352900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pytree_hacks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9353940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/pyfunctorch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9355190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/deprecated.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9356460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/top_operators_github_usage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9357710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9363160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/batch_norm_replacement.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9368690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/fx_minifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9370020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9370800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/input_output_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9372170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/runtime_wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9373860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9375200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/functional_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9376520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/autograd_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9378130Z 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-07-24T03:55:05.9379570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9380980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9382380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/collect_metadata_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9383770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/frontend_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9384980Z 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-07-24T03:55:05.9386130Z 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-07-24T03:55:05.9387700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/subclass_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9388940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/logging_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9390100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/_aot_autograd/subclass_parametrization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch/_aot_autograd 2025-07-24T03:55:05.9391240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/apis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9392740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9394020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/aot_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9395810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/compilers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9397130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/eager_transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9399130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/vmap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9400500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/benchmark_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9401800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/make_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9403400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_functorch/functional_call.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_functorch 2025-07-24T03:55:05.9404960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9405680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_reductions_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9406940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_getlimits.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9408410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_unary_ufuncs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9409270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_casting_dicts.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9410620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9416410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_binary_ufuncs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9421460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9422680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-07-24T03:55:05.9423400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-07-24T03:55:05.9424620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/testing/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy/testing 2025-07-24T03:55:05.9426160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9427370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/linalg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9428540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ndarray.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9430040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_ufuncs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9431040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9432140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_normalizations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9433300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_dtypes_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9434420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9435580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9437020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_numpy/_funcs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_numpy 2025-07-24T03:55:05.9438620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9439260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/error.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9440590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/tools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9441990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-07-24T03:55:05.9442610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-07-24T03:55:05.9443550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra/proxy_value.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-07-24T03:55:05.9444780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_infra/node_metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/pass_infra 2025-07-24T03:55:05.9450470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9451040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/insert_custom_op_guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9452190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9453550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9454690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/collect_tracepoints_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9455910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_with_hop_pass_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9457200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9458520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/_node_metadata_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9459770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/lift_constants_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9461280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/constant_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9462500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/add_runtime_assertions_for_constraints_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9463690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_autocast_with_hop_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9465040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/functionalize_side_effectful_ops_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9466230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/replace_set_grad_with_hop_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9467500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/passes/remove_runtime_assertions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/passes 2025-07-24T03:55:05.9468610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/converter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9470300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9471380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/pass_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9472830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9474260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9475520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-24T03:55:05.9476220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-24T03:55:05.9477660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-24T03:55:05.9478660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/gen_example.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-24T03:55:05.9480230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9480930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/list_unpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9482180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/specialized_attribute.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9483380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/static_for_loop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9489440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_closed_over_variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9494550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/fn_with_kwargs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9499300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/constrain_as_value_example.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9500170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_slicing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9501350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_branch_nonlocal_variables.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9502450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/autograd_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9503530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/type_reflection_method.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9504780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_operands.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9509920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/decorator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9511060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_view.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9512190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9513510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/nested_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9514580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_constructor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9515560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9516760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_if_guard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9522350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/assume_constant_result.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9523260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_branch_class_method.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9524350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/class_method.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9529820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/pytree_flatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9530650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/scalar_output.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9531770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_predicate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9537190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_assert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9538050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/unsupported_operator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9543220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/tensor_setattr.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9548240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/optional_input.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9549200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/constrain_as_size_example.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9554190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/static_if.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9559180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dictionary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9559970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/list_contains.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9561170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/dynamic_shape_round.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9566670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/user_input_mutation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9567520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/null_context_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9572660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/cond_branch_nested_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9573490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/examples/model_attr_mutation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db/examples 2025-07-24T03:55:05.9574610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/db/case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/db 2025-07-24T03:55:05.9575770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/non_strict_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9577370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-24T03:55:05.9578050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/serialize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-24T03:55:05.9580030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-24T03:55:05.9580950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/schema_check.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-24T03:55:05.9582160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/schema.yaml -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-24T03:55:05.9583320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-24T03:55:05.9584470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/export_schema.thrift -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-24T03:55:05.9585550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/union.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-24T03:55:05.9586640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/serde/schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export/serde 2025-07-24T03:55:05.9587750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_export/verifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_export 2025-07-24T03:55:05.9589300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-07-24T03:55:05.9589960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/monitor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/monitor 2025-07-24T03:55:05.9591300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-07-24T03:55:05.9591980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-07-24T03:55:05.9592880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dispatch/python.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dispatch 2025-07-24T03:55:05.9594290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-24T03:55:05.9595000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/functional_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-24T03:55:05.9596280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/meta_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-24T03:55:05.9598070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-24T03:55:05.9599250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/_fake_tensor_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-24T03:55:05.9600380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-24T03:55:05.9601790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-24T03:55:05.9603550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/schema_check_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-24T03:55:05.9604640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_subclasses/fake_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_subclasses 2025-07-24T03:55:05.9605750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_meta_registrations.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:05.9608450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:05.9609240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-07-24T03:55:05.9609890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/futures/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/futures 2025-07-24T03:55:05.9610940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/library.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:05.9612540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-07-24T03:55:05.9613170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/linalg/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/linalg 2025-07-24T03:55:05.9614880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_jit_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:05.9616460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-07-24T03:55:05.9617060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-07-24T03:55:05.9617980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-07-24T03:55:05.9619060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_op/impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_custom_op 2025-07-24T03:55:05.9620670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9621420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-24T03:55:05.9622050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/bias.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-24T03:55:05.9623330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-07-24T03:55:05.9624010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-07-24T03:55:05.9625180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/experimental/_paged_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention/experimental 2025-07-24T03:55:05.9626210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-24T03:55:05.9627300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-24T03:55:05.9629110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/attention/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/attention 2025-07-24T03:55:05.9630090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-24T03:55:05.9630770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/parallel_apply.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-24T03:55:05.9631850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/comm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-24T03:55:05.9632920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/scatter_gather.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-24T03:55:05.9634060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/replicate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-24T03:55:05.9635130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-24T03:55:05.9636320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/data_parallel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-24T03:55:05.9637360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-24T03:55:05.9638420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parallel/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/parallel 2025-07-24T03:55:05.9640280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat 2025-07-24T03:55:05.9641090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic 2025-07-24T03:55:05.9641740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic 2025-07-24T03:55:05.9647150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-07-24T03:55:05.9647730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-07-24T03:55:05.9648880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/dynamic/modules 2025-07-24T03:55:05.9649910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat 2025-07-24T03:55:05.9651220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-24T03:55:05.9651900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-24T03:55:05.9653000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-24T03:55:05.9654150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-24T03:55:05.9655300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/qat/modules 2025-07-24T03:55:05.9656420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/common_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9657730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-07-24T03:55:05.9658660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference 2025-07-24T03:55:05.9659710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference 2025-07-24T03:55:05.9660830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-24T03:55:05.9661540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-24T03:55:05.9662730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-24T03:55:05.9663870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-24T03:55:05.9664990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-24T03:55:05.9666040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-24T03:55:05.9667190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/_reference/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/_reference/modules 2025-07-24T03:55:05.9668550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic 2025-07-24T03:55:05.9674210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic 2025-07-24T03:55:05.9674790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-24T03:55:05.9675470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-24T03:55:05.9676330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-24T03:55:05.9677160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-24T03:55:05.9677990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/dynamic/modules 2025-07-24T03:55:05.9678730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-07-24T03:55:05.9679400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized 2025-07-24T03:55:05.9679930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9680510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9681310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9682100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9683050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9684260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9685450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9686630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/dropout.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9692010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9692790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/normalization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9698260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9699160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantized/modules 2025-07-24T03:55:05.9705100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-07-24T03:55:05.9705620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends/thnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-07-24T03:55:05.9706740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/backends 2025-07-24T03:55:05.9707540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9708580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9709770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/_reduction.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9711370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9712120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_named_member_accessor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9713330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/spectral_norm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9714450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/convert_parameters.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9715590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/stateless.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9716690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/parametrize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9718060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/memory_format.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9719390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_per_sample_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9720500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9721640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/weight_norm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9722700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9723780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/prune.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9725300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/parametrizations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9726610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9727750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_deprecation_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9728780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9730360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9731200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9732460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9738100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/conv_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9743170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/expanded_weights_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9744070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9745340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/embedding_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9746600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/conv_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9747740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9749160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/linear_expanded_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9750390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/_expanded_weights/expanded_weights_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils/_expanded_weights 2025-07-24T03:55:05.9751510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/utils/clip_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/utils 2025-07-24T03:55:05.9752880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable 2025-07-24T03:55:05.9753590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable 2025-07-24T03:55:05.9754920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-07-24T03:55:05.9755600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-07-24T03:55:05.9757140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-07-24T03:55:05.9758510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/quantizable/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/quantizable/modules 2025-07-24T03:55:05.9759590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9761080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic 2025-07-24T03:55:05.9761920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat 2025-07-24T03:55:05.9762620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat 2025-07-24T03:55:05.9764060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-24T03:55:05.9764850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-24T03:55:05.9766070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-24T03:55:05.9767450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-24T03:55:05.9768570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/qat/modules 2025-07-24T03:55:05.9769920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized 2025-07-24T03:55:05.9770720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-07-24T03:55:05.9771510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic 2025-07-24T03:55:05.9772950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:55:05.9773670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:55:05.9775020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:55:05.9776160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized 2025-07-24T03:55:05.9777650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-24T03:55:05.9778380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-24T03:55:05.9779680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-24T03:55:05.9780840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-24T03:55:05.9782030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/quantized/modules 2025-07-24T03:55:05.9783110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic 2025-07-24T03:55:05.9784770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-07-24T03:55:05.9785550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules/fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-07-24T03:55:05.9786730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/intrinsic/modules 2025-07-24T03:55:05.9787820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9790160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9791560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/functional.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9792780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9794600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9795080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/upsampling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9796370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/channelshuffle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9797710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/instancenorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9798950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/flatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9800070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/batchnorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9801350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9802550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9803710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/pooling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9805060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9806250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/distance.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9807400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/container.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9808960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/pixelshuffle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9810140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/adaptive.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9811240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/loss.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9812920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9814310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9815650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/transformer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9817000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9818360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9820090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/dropout.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9821210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9822620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9823820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/normalization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9824840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9826370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/padding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9827540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/modules/fold.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn/modules 2025-07-24T03:55:05.9828710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nn/parameter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nn 2025-07-24T03:55:05.9829910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_thread_safe_fork.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:05.9830970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-07-24T03:55:05.9831600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/event.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-07-24T03:55:05.9832930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-07-24T03:55:05.9834130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mps/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mps 2025-07-24T03:55:05.9835210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:05.9836830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9837260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_type_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9838550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9844470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-24T03:55:05.9844990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-24T03:55:05.9846510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-24T03:55:05.9847220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-07-24T03:55:05.9848040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-07-24T03:55:05.9853320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes/type_promotion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-07-24T03:55:05.9854440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/passes/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx/passes 2025-07-24T03:55:05.9855530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/type_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-24T03:55:05.9856700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-24T03:55:05.9866890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/patcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-24T03:55:05.9867730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-24T03:55:05.9868860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/fx/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/fx 2025-07-24T03:55:05.9870030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-24T03:55:05.9870950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/_lazy_import.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-24T03:55:05.9872270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/_exporter_legacy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-24T03:55:05.9873860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9874530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9883360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9884220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_flags.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9896820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_errors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9897720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_capture_strategies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9898790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_tensors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9904320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_dispatching.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9905210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_isolated.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9910030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_decomp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9910830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9911860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_onnx_program.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9913470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-07-24T03:55:05.9914150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-07-24T03:55:05.9915050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-07-24T03:55:05.9916160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:55:05.9916830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/nn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:55:05.9918060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:55:05.9919270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:55:05.9920460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/symops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:55:05.9925970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:55:05.9926870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/ops/hop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib/ops 2025-07-24T03:55:05.9928080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter/_torchlib 2025-07-24T03:55:05.9934030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_building.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9934860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9936100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9937440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9938980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_verification.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9940220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_reporting.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9941320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9942560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_testing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9943700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_compat.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9944910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_ir_passes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9946250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_type_casting.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9947080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/exporter/_fx_passes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal/exporter 2025-07-24T03:55:05.9948180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/onnx_proto_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-24T03:55:05.9949360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_internal/jit_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/_internal 2025-07-24T03:55:05.9950490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset15.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9951620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_onnx_supported_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9952760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset7.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9953840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset11.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9955430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/verification.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9956850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_flags.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9958020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset10.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9959250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset20.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9960360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset14.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9961570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_globals.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9962640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_helper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9964270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset9.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9966770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9967730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset8.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9968830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset19.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9969870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9971500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/_experimental.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9973110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset18.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9974780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-24T03:55:05.9975470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/_dtype_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-24T03:55:05.9976730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/_symbolic_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-24T03:55:05.9978100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-24T03:55:05.9978890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx/ops 2025-07-24T03:55:05.9980210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/errors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9981400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset13.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9982750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9983880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset17.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9984960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset16.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9986120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/onnx/symbolic_opset12.py -> build/bdist.macosx-14.0-arm64/wheel/torch/onnx 2025-07-24T03:55:05.9987540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-07-24T03:55:05.9988200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/protoc-3.13.0.0 -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-07-24T03:55:06.0043200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/torch_shm_manager -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-07-24T03:55:06.0044370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/bin/protoc -> build/bdist.macosx-14.0-arm64/wheel/torch/bin 2025-07-24T03:55:06.0100440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:06.0101730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-07-24T03:55:06.0102630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-07-24T03:55:06.0103360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-07-24T03:55:06.0104470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-07-24T03:55:06.0105640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/packaging/_structures.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor/packaging 2025-07-24T03:55:06.0106610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vendor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_vendor 2025-07-24T03:55:06.0107670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-07-24T03:55:06.0108330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu 2025-07-24T03:55:06.0109800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-07-24T03:55:06.0110470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-07-24T03:55:06.0111530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-07-24T03:55:06.0112600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cpu/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cpu/amp 2025-07-24T03:55:06.0114150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0115000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-07-24T03:55:06.0115760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-07-24T03:55:06.0116920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-07-24T03:55:06.0118230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tensor/placement_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tensor 2025-07-24T03:55:06.0119390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharding_spec 2025-07-24T03:55:06.0120180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharding_spec/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharding_spec 2025-07-24T03:55:06.0121430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0122530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0123700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0124780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/run.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0126190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_state_dict_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0127830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-07-24T03:55:06.0128500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-07-24T03:55:06.0129610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launcher/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/launcher 2025-07-24T03:55:06.0131090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0131790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_async_process_executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0133010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0134160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/format_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0135430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/planner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0136720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_consolidate_hf_safetensors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0138190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_dedup_save_plans.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0139420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/state_dict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0141100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0142290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_storage_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0143390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_version.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0145070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0145850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0147170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/barriers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0148250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpointer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0149480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0150690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0151740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0153000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpoint_reader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0154050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0155330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpoint_process.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0156540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/checkpoint_writer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0157840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_experimental/staging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint/_experimental 2025-07-24T03:55:06.0158890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_traverse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0160090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_sharded_tensor_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0161280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_dedup_tensors.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0162470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/filesystem.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0163760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/state_dict_saver.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0164990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0166150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_hf_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0167540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0168570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_pg_transport.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0169810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/resharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0170980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0172160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/state_dict_loader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0173540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_async_executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0174550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0175670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/default_planner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0176900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0178000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_state_dict_stager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0179160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/planner_helpers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0180500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0181510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_async_thread_executor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0186810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/staging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0187670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_checkpointer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0188470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/stateful.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0189310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_fsspec_filesystem.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0190130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_extension.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0190940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/_nested_dict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0191740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/checkpoint/hf_storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/checkpoint 2025-07-24T03:55:06.0192490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0193030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharded_tensor 2025-07-24T03:55:06.0193640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_sharded_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_sharded_tensor 2025-07-24T03:55:06.0194240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-07-24T03:55:06.0194740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-07-24T03:55:06.0195430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn 2025-07-24T03:55:06.0196600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-07-24T03:55:06.0197390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/instantiator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-07-24T03:55:06.0198290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit 2025-07-24T03:55:06.0199340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-07-24T03:55:06.0200110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-07-24T03:55:06.0201010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/jit/templates/remote_module_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/jit/templates 2025-07-24T03:55:06.0202220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-07-24T03:55:06.0203130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api/remote_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-07-24T03:55:06.0204770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/nn/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/nn/api 2025-07-24T03:55:06.0206010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-07-24T03:55:06.0206940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-07-24T03:55:06.0207640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-07-24T03:55:06.0208890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/metrics/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/metrics 2025-07-24T03:55:06.0210270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0210970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0212230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0213220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0214330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/_etcd_stub.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0215480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0216920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0218000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0219430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0220400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0221480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/dynamic_rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0222960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/etcd_server.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0224130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/rendezvous 2025-07-24T03:55:06.0225530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-24T03:55:06.0226450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-24T03:55:06.0227390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-24T03:55:06.0228620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-24T03:55:06.0229780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/subprocess_handler 2025-07-24T03:55:06.0230830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/tail_log.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-24T03:55:06.0231910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-24T03:55:06.0232870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-24T03:55:06.0234480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/redirects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing 2025-07-24T03:55:06.0235750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-07-24T03:55:06.0236520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors/handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-07-24T03:55:06.0237650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-07-24T03:55:06.0238920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/multiprocessing/errors/error_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/multiprocessing/errors 2025-07-24T03:55:06.0240230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-24T03:55:06.0240850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/local_timer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-24T03:55:06.0242030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/debug_info_logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-24T03:55:06.0243150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-24T03:55:06.0244290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-24T03:55:06.0245520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/timer/file_based_local_timer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/timer 2025-07-24T03:55:06.0246770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-07-24T03:55:06.0247970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/control_plane.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic 2025-07-24T03:55:06.0249260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-24T03:55:06.0250020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-24T03:55:06.0251210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-24T03:55:06.0252330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-24T03:55:06.0253660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/log_level.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-24T03:55:06.0254590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-24T03:55:06.0255700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils 2025-07-24T03:55:06.0256930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-07-24T03:55:06.0257760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data/elastic_distributed_sampler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-07-24T03:55:06.0258870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data/cycling_iterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-07-24T03:55:06.0260010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/utils/data/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/utils/data 2025-07-24T03:55:06.0261650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent 2025-07-24T03:55:06.0262250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent 2025-07-24T03:55:06.0263060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-24T03:55:06.0263810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/health_check_server.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-24T03:55:06.0264940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-24T03:55:06.0266040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-24T03:55:06.0267590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/agent/server/local_elastic_agent.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/agent/server 2025-07-24T03:55:06.0269200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-07-24T03:55:06.0269820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events/handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-07-24T03:55:06.0270880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-07-24T03:55:06.0272030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/elastic/events/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/elastic/events 2025-07-24T03:55:06.0273400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/autograd 2025-07-24T03:55:06.0273960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/autograd 2025-07-24T03:55:06.0275100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/distributed_c10d.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0277890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0278470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_IR.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0279690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_unflatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0280860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_schedule_visualizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0281950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0283000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/microbatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0284110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_backward.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0285190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0286560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/stage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0287710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/schedules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0289480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/pipelining/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/pipelining 2025-07-24T03:55:06.0290490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/argparse_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0291640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_checkpointable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0292830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0293890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/c10d_logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0295180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-07-24T03:55:06.0296030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-07-24T03:55:06.0296750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-07-24T03:55:06.0297970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_comm_hooks/default_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_comm_hooks 2025-07-24T03:55:06.0299170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-07-24T03:55:06.0299880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-07-24T03:55:06.0301060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_checkpoint/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_checkpoint 2025-07-24T03:55:06.0302070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-24T03:55:06.0302840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-24T03:55:06.0303800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/averagers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-24T03:55:06.0304880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-24T03:55:06.0306080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/model_averaging 2025-07-24T03:55:06.0307380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0308220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0309380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0310430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0311610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0312780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0313840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0315100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0316260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0317350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/ddp_comm_hooks 2025-07-24T03:55:06.0318620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-07-24T03:55:06.0319740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/join.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms 2025-07-24T03:55:06.0321100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-07-24T03:55:06.0321920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-07-24T03:55:06.0323050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_optimizer_overlap/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_optimizer_overlap 2025-07-24T03:55:06.0324600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-07-24T03:55:06.0325310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization/quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-07-24T03:55:06.0326300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/algorithms/_quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/algorithms/_quantization 2025-07-24T03:55:06.0327100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0327810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/_deprecation_warning.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0328950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/named_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0330130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/zero_redundancy_optimizer.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0331220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0332260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_sgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0333380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adagrad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0334570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adamw.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0335620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/apply_optimizer_in_backward.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0336870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0337780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0338940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_rprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0340110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/post_localSGD_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0341160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0342280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adadelta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0343380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_rmsprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0344520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/zero_redundancy_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0346210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/optim/functional_adamax.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/optim 2025-07-24T03:55:06.0347280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0348340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_dist2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0349650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-24T03:55:06.0350370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/replicate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-24T03:55:06.0351520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-24T03:55:06.0352820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-07-24T03:55:06.0353560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-07-24T03:55:06.0354700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/fsdp/fully_shard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable/fsdp 2025-07-24T03:55:06.0355760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/contract.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-24T03:55:06.0356980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_composable/checkpoint_activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_composable 2025-07-24T03:55:06.0358290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0358950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/mem_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0360300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/ilp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0361410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/runtime_estimator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0362690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/fsdp2_mem_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0363870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/sac_estimator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0365150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0366360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/memory_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0367450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/fake_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0368610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/common_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0369690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/sac_ilp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0370930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_tools/mod_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_tools 2025-07-24T03:55:06.0372230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0372890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_exec_order_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0374050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_traversal_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0375400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/sharded_grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0376190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_state_dict_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0377740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0378410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0379550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0380630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0382120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0383210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_param.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0384600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0385760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0387050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fully_shard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0388230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fully_shard/_fsdp_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp/_fully_shard 2025-07-24T03:55:06.0389660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/fully_sharded_data_parallel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0391290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_wrap_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0392350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_optim_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0393860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_trace_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0395000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_common_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0396250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0397380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0398670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_limiter_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0399750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_dynamo_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0400890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_unshard_param_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0402030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_shard_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0403310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/wrap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0404330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_runtime_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0405800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_fsdp_extensions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0406830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_init_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0408190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0409640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/fsdp/_flat_param.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/fsdp 2025-07-24T03:55:06.0411220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/collective_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0412760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_functional_collectives.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0414360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-24T03:55:06.0415280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/checkpoint 2025-07-24T03:55:06.0416030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/checkpoint/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/checkpoint 2025-07-24T03:55:06.0417310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-24T03:55:06.0418320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/op_registry_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-24T03:55:06.0419900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-24T03:55:06.0420680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/logging_handlers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-24T03:55:06.0421860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/metadata.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-24T03:55:06.0422920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:55:06.0423660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:55:06.0424800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:55:06.0425890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:55:06.0427020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:55:06.0428150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:55:06.0429220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/_ops/init.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor/_ops 2025-07-24T03:55:06.0430310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-24T03:55:06.0431560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/logger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-24T03:55:06.0432670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/reshard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-24T03:55:06.0433800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-24T03:55:06.0435250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/shard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-24T03:55:06.0436320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_tensor/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_tensor 2025-07-24T03:55:06.0437710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-07-24T03:55:06.0438430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-07-24T03:55:06.0439620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_plan/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_plan 2025-07-24T03:55:06.0440830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-24T03:55:06.0442210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-24T03:55:06.0443240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-24T03:55:06.0444170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:55:06.0445040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:55:06.0447330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:55:06.0448420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:55:06.0449580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops 2025-07-24T03:55:06.0450620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-24T03:55:06.0451500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-24T03:55:06.0452360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-24T03:55:06.0453240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharding_spec 2025-07-24T03:55:06.0454390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-07-24T03:55:06.0455160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-07-24T03:55:06.0456330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/sharded_optim/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard/sharded_optim 2025-07-24T03:55:06.0457390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/common_op_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-24T03:55:06.0458490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-24T03:55:06.0459630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_shard/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_shard 2025-07-24T03:55:06.0460750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/launch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0462140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-07-24T03:55:06.0462840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory/_nvshmem_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-07-24T03:55:06.0463960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_symmetric_memory/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/_symmetric_memory 2025-07-24T03:55:06.0465620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0466520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/remote_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0467640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/device_mesh.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0469310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0470170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-24T03:55:06.0471290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-24T03:55:06.0472680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-24T03:55:06.0473850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_tp_transform.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-24T03:55:06.0475150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_register_sharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-24T03:55:06.0476280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/experimental/_func_map.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/experimental 2025-07-24T03:55:06.0477570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-24T03:55:06.0478320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/ddp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-24T03:55:06.0479400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-24T03:55:06.0480530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/style.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-24T03:55:06.0481890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-24T03:55:06.0482910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-24T03:55:06.0484090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/loss.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-24T03:55:06.0485520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/input_reshard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-24T03:55:06.0486690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/parallel/_data_parallel_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/parallel 2025-07-24T03:55:06.0487660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_shards_wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0488880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_redistribute.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0489930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_sharding_prop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0491240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_collective_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0492270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0493780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_dtensor_spec.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0495200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0495930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_einsum_strategy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0497200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0498350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_tensor_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0499650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0505360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_conv_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0506220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_pointwise_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0507030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_matrix_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0507810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_math_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0508590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_common_rules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0509380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0510150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_random_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0510930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_ops/_view_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/_ops 2025-07-24T03:55:06.0511700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0512430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0513170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0514140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_op_schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0515320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/placement_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0516550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_tp_conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0517650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/device_mesh.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0518700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor 2025-07-24T03:55:06.0519980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-24T03:55:06.0520670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-24T03:55:06.0521780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/_op_coverage.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-24T03:55:06.0522890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/_visualize_sharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-24T03:55:06.0524020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/tensor/debug/_comm_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/tensor/debug 2025-07-24T03:55:06.0525440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0526090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0527190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/options.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0528420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0529380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0530420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0531720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-07-24T03:55:06.0532350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-07-24T03:55:06.0533480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_testing/faulty_agent_backend_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc/_testing 2025-07-24T03:55:06.0534510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/api.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0535840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/rref_proxy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0536970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/server_process_global_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0538010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0539130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/rpc/backend_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed/rpc 2025-07-24T03:55:06.0540240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributed/_functional_collectives_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributed 2025-07-24T03:55:06.0541290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_size_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:06.0542610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0543240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/anomaly_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0544660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-07-24T03:55:06.0545550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-07-24T03:55:06.0546970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions/tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-07-24T03:55:06.0548060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/_functions/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd/_functions 2025-07-24T03:55:06.0549150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0550560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/forward_ad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0551690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0552950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0554090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0555550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/grad_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0556790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0558120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler_legacy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0559220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/gradcheck.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0560810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0562190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/autograd/function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/autograd 2025-07-24T03:55:06.0563630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_torch_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:06.0567450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0567860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0568920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0570580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0571260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/validator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0572930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-24T03:55:06.0573610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-24T03:55:06.0574740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-24T03:55:06.0575870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-24T03:55:06.0577090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/unification_tools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-24T03:55:06.0578490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:55:06.0579320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:55:06.0580410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/variadic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:55:06.0581550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:55:06.0582640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:55:06.0583770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/conflict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:55:06.0584900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/multipledispatch/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification/multipledispatch 2025-07-24T03:55:06.0586290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/variable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-24T03:55:06.0587180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/more.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-24T03:55:06.0588130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-24T03:55:06.0589260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unification/match.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/unification 2025-07-24T03:55:06.0590430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/meta_tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0591560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_dynamism.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0592680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/partitioner_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0593800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/recording.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0595120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/rewriter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0596370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/const_fold.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0597870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:55:06.0598580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/constraint.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:55:06.0599890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/constraint_transformation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:55:06.0601170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/util.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:55:06.0602280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:55:06.0603410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/operation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:55:06.0604440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/transform_to_z3.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:55:06.0605390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/z3_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:55:06.0606550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/migrate_gradual_types/constraint_generator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental/migrate_gradual_types 2025-07-24T03:55:06.0607780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/accelerator_partitioner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0609230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/normalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0610420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_constant_symnode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0611540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/optimization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0612810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/refinement_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0613960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/graph_gradual_typechecker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0615190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0616140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/sym_node.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0617640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/unify_refinements.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0618730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/merge_matmul.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0619920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0621070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/schema_type_annotation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0622170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/symbolic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0625270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0626110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/_backward_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0627200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/experimental/proxy_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/experimental 2025-07-24T03:55:06.0628810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/operator_schemas.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0630150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0631220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/proxy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0632450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_lazy_graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0633530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0634640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0636450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0637090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/net_min_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0638540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/param_fetch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0639600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tools_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0640980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-24T03:55:06.0641730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/partitioner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-24T03:55:06.0642990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-24T03:55:06.0644040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/pass_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-24T03:55:06.0645100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/infra/pass_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/infra 2025-07-24T03:55:06.0646240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/split_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0647350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/shape_prop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0648520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/split_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0649810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/runtime_assert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0651170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/reinplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0652620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-07-24T03:55:06.0653380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-07-24T03:55:06.0654240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/backends/cudagraphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/backends 2025-07-24T03:55:06.0655840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-07-24T03:55:06.0656360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-07-24T03:55:06.0657190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/tests/test_pass_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/tests 2025-07-24T03:55:06.0658090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0659500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-24T03:55:06.0660230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/source_matcher_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-24T03:55:06.0661430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/matcher_with_name_node_map_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-24T03:55:06.0662410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-24T03:55:06.0663470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-24T03:55:06.0664770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/matcher_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-24T03:55:06.0666120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/utils/fuser_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/utils 2025-07-24T03:55:06.0667190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/pass_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0668330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/_tensorify_python_scalars.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0669400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/fake_tensor_prop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0670470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/operator_support.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0671640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/annotate_getitem_nodes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0672670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/graph_manipulation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0673940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect 2025-07-24T03:55:06.0674560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect 2025-07-24T03:55:06.0675590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-07-24T03:55:06.0676360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common/cse_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-07-24T03:55:06.0677510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/dialect/common/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes/dialect/common 2025-07-24T03:55:06.0678260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/graph_drawer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0679510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/splitter_base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0680870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/passes/graph_transform_observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx/passes 2025-07-24T03:55:06.0681990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/tensor_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0683140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0684240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/immutable_collections.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0685250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/annotate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0686330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/subgraph_rewriter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0687420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/interpreter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0688650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_symbolic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0690020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/node.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0691350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_compatibility.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0692430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_graph_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0693660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fx/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fx 2025-07-24T03:55:06.0694760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:06.0696170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils_internal.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:06.0697170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quasirandom.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:06.0698560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-07-24T03:55:06.0699200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-07-24T03:55:06.0700740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_prims_common/wrappers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_prims_common 2025-07-24T03:55:06.0702080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-24T03:55:06.0702760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/queue.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-24T03:55:06.0703880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/_atfork.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-24T03:55:06.0704910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-24T03:55:06.0705950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/spawn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-24T03:55:06.0707070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/reductions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-24T03:55:06.0708280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/multiprocessing/pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/multiprocessing 2025-07-24T03:55:06.0709600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0710280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_pin_memory_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0711320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/gds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0712350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0713450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/error.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0714320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/comm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0715450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0716790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/jiterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0717870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nccl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0718950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0720310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0721380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_sanitizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0722610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0723690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_memory_viz.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0724910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/tunable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0726410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-24T03:55:06.0727140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-24T03:55:06.0728200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-24T03:55:06.0729290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-24T03:55:06.0730550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/amp/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda/amp 2025-07-24T03:55:06.0731440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0732520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/nvtx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0733600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/graphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0734870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0735940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/cuda/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/cuda 2025-07-24T03:55:06.0737440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.0738030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/sleef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.0740610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0741040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/attr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0742260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/embed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0743300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/numpy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0744840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/pybind11.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0746520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0747630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/iostream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0748750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/gil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0749900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/chrono.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0751010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/typing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0752130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl_bind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0753390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/buffer_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0754600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0756060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-07-24T03:55:06.0756770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen/matrix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-07-24T03:55:06.0758070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-07-24T03:55:06.0759120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/eigen 2025-07-24T03:55:06.0760430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/stl 2025-07-24T03:55:06.0761180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl/filesystem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/stl 2025-07-24T03:55:06.0762300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0763370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/stl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0764700Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0765690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/type_caster_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0766810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/exception_translation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0767860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/typeid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0768940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/descr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0770080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/internals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0771350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/cpp_conduit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0772440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/value_and_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0773470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0774900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0776080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/detail/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11/detail 2025-07-24T03:55:06.0777320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0778350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eval.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0779440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0780940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/type_caster_pyobject_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0782000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/eigen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0783110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/gil_safe_call_once.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0784170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/pytypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0786160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pybind11/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/pybind11 2025-07-24T03:55:06.0787120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0787720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/ostream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0788810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/format-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0790350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/ranges.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0791650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/xchar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0792660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/core.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0793750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/chrono.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0795160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/os.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0796250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/color.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0797460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0798540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/printf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0799800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/compile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0801030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0803300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/std.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0804100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fmt/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fmt 2025-07-24T03:55:06.0806200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2 2025-07-24T03:55:06.0806740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-07-24T03:55:06.0807450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core/timer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-07-24T03:55:06.0808610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-07-24T03:55:06.0809660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/core/macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/core 2025-07-24T03:55:06.0810870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-07-24T03:55:06.0811610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels/batch_box_cox_vec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-07-24T03:55:06.0812750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels/embedding_lookup_idx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-07-24T03:55:06.0813830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/perfkernels/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/perfkernels 2025-07-24T03:55:06.0815050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-24T03:55:06.0815780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/in_memory_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-24T03:55:06.0816890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/read_adapter_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-24T03:55:06.0817920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/crc_alt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-24T03:55:06.0819520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/versions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-24T03:55:06.0820550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/inline_container.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-24T03:55:06.0821640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/file_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-24T03:55:06.0822860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/serialize/istream_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/serialize 2025-07-24T03:55:06.0824790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-07-24T03:55:06.0825220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/string_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-07-24T03:55:06.0826760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:06.0827580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/ThreadPool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:06.0829080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:06.0830260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/pthreadpool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:06.0831860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:06.0833040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/WorkersPool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:06.0834410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/threadpool/thread_pool_guard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils/threadpool 2025-07-24T03:55:06.0835660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/fixed_divisor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-07-24T03:55:06.0836960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/caffe2/utils/proto_wrap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/caffe2/utils 2025-07-24T03:55:06.0838290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google 2025-07-24T03:55:06.0839470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0840210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/source_context.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0841660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0842450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/stringpiece.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0844030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/stl_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0845280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/port.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0846580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/status.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0847970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/template_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0849320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/map_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0850950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/casts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0852130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0853290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/bytestream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0854350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0855480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0856690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/platform_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0857820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/once.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0858920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/fastmem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0859950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/mutex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0861060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/callback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0862400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/strutil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0863640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/stubs/hash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/stubs 2025-07-24T03:55:06.0864750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/repeated_field.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0866390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/port.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0867490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/wire_format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0868780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/inlined_string_field.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0870050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-24T03:55:06.0870770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/time_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-24T03:55:06.0871930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/field_mask_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-24T03:55:06.0873080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/json_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-24T03:55:06.0874160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/type_resolver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-24T03:55:06.0875250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/field_comparator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-24T03:55:06.0876360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/type_resolver_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-24T03:55:06.0877450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/message_differencer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-24T03:55:06.0878840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/util/delimited_message_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/util 2025-07-24T03:55:06.0879860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0881200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/arenastring.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0882320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_entry_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0883700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/service.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0884760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/struct.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0886110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/empty.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0887470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/descriptor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0888950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0889660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/zero_copy_stream_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0890820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/printer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0891900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/gzip_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0892980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0894240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/strtod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0895360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/tokenizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0896580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/zero_copy_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0897790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/io_win32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0898950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/io/coded_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/io 2025-07-24T03:55:06.0900420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0902070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/wrappers.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0904320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/text_format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0905150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/has_bits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0906310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/arena_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0907380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/api.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0908820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0909910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/extension_set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0911460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/reflection_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0912620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_message_table_driven.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0913750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/duration.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0914950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_message_reflection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0916020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/unknown_field_set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0917140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/type.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0918770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_field_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0919800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/timestamp.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0921090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/field_mask.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0921920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/descriptor.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0934210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_entry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0934590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/message_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0935020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_message_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0935430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/descriptor_database.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0935790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_field.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0936200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_enum_reflection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0936600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/generated_enum_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0941450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/any.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0941880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_type_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0942260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/parse_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0942650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/extension_set_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0943040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/map_field_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0943420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/metadata_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0943860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/implicit_weak_message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0944250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/arena.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0945330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-24T03:55:06.0946220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/code_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-24T03:55:06.0947560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/plugin.pb.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-24T03:55:06.0949120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/plugin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-24T03:55:06.0950470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/python 2025-07-24T03:55:06.0951280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/python/python_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/python 2025-07-24T03:55:06.0952400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-24T03:55:06.0953900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-07-24T03:55:06.0954710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js/well_known_types_embed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-07-24T03:55:06.0955880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/js/js_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/js 2025-07-24T03:55:06.0957130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-07-24T03:55:06.0957900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java/java_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-07-24T03:55:06.0959030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/java/java_names.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/java 2025-07-24T03:55:06.0960270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/php 2025-07-24T03:55:06.0961070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/php/php_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/php 2025-07-24T03:55:06.0962250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/command_line_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-24T03:55:06.0963690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/cpp 2025-07-24T03:55:06.0964430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/cpp/cpp_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/cpp 2025-07-24T03:55:06.0965530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/importer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler 2025-07-24T03:55:06.0966840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-07-24T03:55:06.0967640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp/csharp_names.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-07-24T03:55:06.0968850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/csharp/csharp_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/csharp 2025-07-24T03:55:06.0969980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/ruby 2025-07-24T03:55:06.0970750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/ruby/ruby_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/ruby 2025-07-24T03:55:06.0971980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-07-24T03:55:06.0972810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-07-24T03:55:06.0973950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf/compiler/objectivec 2025-07-24T03:55:06.0974970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0976120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/reflection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0977450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/dynamic_message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0978670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/google/protobuf/wire_format_lite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/google/protobuf 2025-07-24T03:55:06.0980230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/cpuinfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.0982060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-24T03:55:06.0982730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly 2025-07-24T03:55:06.0983580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/util 2025-07-24T03:55:06.0984360Z 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-07-24T03:55:06.0985580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-07-24T03:55:06.0986300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros/cmake_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-07-24T03:55:06.0987410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros/Export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-07-24T03:55:06.0988510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/headeronly/macros/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/headeronly/macros 2025-07-24T03:55:06.0990550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.0990950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-07-24T03:55:06.0991740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/library.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-07-24T03:55:06.0992970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-07-24T03:55:06.0994100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/stable/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/stable 2025-07-24T03:55:06.0995150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.0996510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-24T03:55:06.0997310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-07-24T03:55:06.0998140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-07-24T03:55:06.0999540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_package 2025-07-24T03:55:06.1000840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-07-24T03:55:06.1001650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-07-24T03:55:06.1002810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_eager 2025-07-24T03:55:06.1003830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/inductor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-24T03:55:06.1004960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/array_ref_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-24T03:55:06.1006100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/static_cuda_launcher.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-24T03:55:06.1007460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:06.1008190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:06.1009280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:06.1010420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:06.1011520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:06.1012610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:06.1013760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runner 2025-07-24T03:55:06.1015190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1015850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1017060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1018210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1019300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1020410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1021530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1022660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1023750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1024910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1026070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1027340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/model.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1028290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1029360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/model_container.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1030710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_runtime/model_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_runtime 2025-07-24T03:55:06.1032070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:06.1032820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:06.1033950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:06.1035030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:06.1036110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:06.1037250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:06.1038350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_include/array_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_include 2025-07-24T03:55:06.1039410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_prefix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor 2025-07-24T03:55:06.1040970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:06.1041860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:06.1042670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:06.1044000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:06.1045290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:06.1046860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/generated 2025-07-24T03:55:06.1047980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:06.1049250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:06.1050450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:06.1051560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:06.1052720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch 2025-07-24T03:55:06.1054100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:06.1054780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:06.1055880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:06.1057110Z 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-07-24T03:55:06.1058240Z 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-07-24T03:55:06.1059340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:06.1060450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/aoti_torch/c/shim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/aoti_torch/c 2025-07-24T03:55:06.1061890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:06.1062770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:06.1063620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:06.1064760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:06.1065960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:06.1067050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper/device_internal 2025-07-24T03:55:06.1068030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:06.1069150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:06.1070260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:06.1071440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:06.1072430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:06.1073530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/inductor/cpp_wrapper 2025-07-24T03:55:06.1074580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1075820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/DeviceAccelerator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1077060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-07-24T03:55:06.1077790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor/events.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-07-24T03:55:06.1078980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor/counters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-07-24T03:55:06.1080110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/monitor/python_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/monitor 2025-07-24T03:55:06.1081440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/instruction_counter 2025-07-24T03:55:06.1082230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/instruction_counter/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/instruction_counter 2025-07-24T03:55:06.1083200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1084840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1086440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/THConcat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1087560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mps 2025-07-24T03:55:06.1088250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mps/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mps 2025-07-24T03:55:06.1089710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-07-24T03:55:06.1090380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx/back_compat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-07-24T03:55:06.1091510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-07-24T03:55:06.1092600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/onnx/onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/onnx 2025-07-24T03:55:06.1093660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1094960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cpu 2025-07-24T03:55:06.1095630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cpu/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cpu 2025-07-24T03:55:06.1096790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1098290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed 2025-07-24T03:55:06.1099130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-07-24T03:55:06.1099930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-07-24T03:55:06.1101350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-07-24T03:55:06.1102190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context/container.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-07-24T03:55:06.1103360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/context/context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/context 2025-07-24T03:55:06.1104820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1105500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1106680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1107840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1108900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1110130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1111290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1112370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1113500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1114680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1115790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/rpc_messages 2025-07-24T03:55:06.1117090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/python_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-07-24T03:55:06.1118220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd 2025-07-24T03:55:06.1119350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-07-24T03:55:06.1120300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-07-24T03:55:06.1121510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/functions 2025-07-24T03:55:06.1122730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/engine 2025-07-24T03:55:06.1123560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/autograd/engine 2025-07-24T03:55:06.1124770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1125630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/metrics 2025-07-24T03:55:06.1126530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/metrics 2025-07-24T03:55:06.1127810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1128730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rref_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1129960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/request_callback_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1131110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1132260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rref_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1133630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/request_callback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1134830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1135930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rref_proto.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1137050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/py_rref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1138110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rpc_agent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1139270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1140400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1141530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1142550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_remote_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1143690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1144860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1146180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/script_remote_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1147420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-07-24T03:55:06.1148200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing/testing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-07-24T03:55:06.1149560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/testing 2025-07-24T03:55:06.1150610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/script_resp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1151700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rpc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1152890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/rpc_command_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1154200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-24T03:55:06.1155050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-24T03:55:06.1156220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc/profiler 2025-07-24T03:55:06.1157360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/script_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1158530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1159670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/torchscript_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1160810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1162000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1163170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/agent_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1164280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/rpc 2025-07-24T03:55:06.1165810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1166630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1168180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/error.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1169330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1170320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/logger.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1171410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Work.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1172540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1173610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1174890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-24T03:55:06.1175780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-24T03:55:06.1176900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_collectives 2025-07-24T03:55:06.1177900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/debug.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1179160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1180310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Store.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1181420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1182570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1183840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-24T03:55:06.1184660Z 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-07-24T03:55:06.1185840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-24T03:55:06.1186860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/cuda 2025-07-24T03:55:06.1187900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1189050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/RankLocal.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1190110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1191170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FileStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1192280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/reducer.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1193580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1194840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1195970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1197330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1198610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/comm.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1199840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Functional.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1201430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-24T03:55:06.1202330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization/quantization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-24T03:55:06.1203640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-24T03:55:06.1204920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/quantization 2025-07-24T03:55:06.1206100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/socket_fmt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1207600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Backoff.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1209420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/TCPStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1210670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/python_comm_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1212090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1213500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1215070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/NanCheck.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1216390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1217730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1219200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1220370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/HashStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1221580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/c10d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1222770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/sequence_num.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1224230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-24T03:55:06.1224890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-24T03:55:06.1226100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/control_plane 2025-07-24T03:55:06.1227280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1228470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1229710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1231200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Backend.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1232460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1233930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/TraceUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1235200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:06.1236090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:06.1237340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:06.1238710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:06.1239950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:06.1241100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:06.1242190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:06.1243370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d/symm_mem 2025-07-24T03:55:06.1244520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Utils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1245890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/Types.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1247040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1248060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1249270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/socket.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1250520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/distributed/c10d 2025-07-24T03:55:06.1252110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1252870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:06.1253700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/python_return_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:06.1254980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/ViewFuncs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:06.1256500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/python_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:06.1257580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/VariableType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:06.1258680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:06.1262650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/generated/variable_factories.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/generated 2025-07-24T03:55:06.1263700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1264950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/custom_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1266220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_linalg_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1267410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/saved_variable_hooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1268550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/record_function_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1269880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/engine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1270860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_enum_tag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1271980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/graph_task.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1273080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/edge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1274290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_nested_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1275540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/variable_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1276750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/saved_variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1277850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_engine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1278960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_legacy_variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1280110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler_python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1281400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1282560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_saved_variable_hooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1283590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_cpp_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1284730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1286000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/VariableTypeUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1287110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1288350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler_kineto.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1289380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1291470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:06.1292010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/warnings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:06.1293090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/wrap_outputs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:06.1294310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/python_arg_parsing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:06.1295370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/grad_layout_contract.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:06.1296500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/lambda_post_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:06.1297750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/utils/error_messages.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/utils 2025-07-24T03:55:06.1298820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_fft_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1300080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_variable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1301170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_torch_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1302340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/function_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1303530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/input_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1304870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/grad_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1306060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/jit_decomp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1307280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_sparse_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1308250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/symbolic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1309420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/input_buffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1310490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler_legacy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1311620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1312920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/cpp_hook.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1314020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:06.1314770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:06.1315950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:06.1317040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/comm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:06.1318140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/basic_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:06.1319280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/accumulate_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:06.1320380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/functions/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd/functions 2025-07-24T03:55:06.1321530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_special_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1322730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/FunctionsManual.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1324200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/forward_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1325340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_anomaly_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1326510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_nn_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1327730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/InferenceMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1328870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/python_variable_indexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1330040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/profiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1331090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1332490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/autograd/anomaly_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/autograd 2025-07-24T03:55:06.1334070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/fx 2025-07-24T03:55:06.1334660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/fx/node.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/fx 2025-07-24T03:55:06.1335920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/multiprocessing 2025-07-24T03:55:06.1336700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/multiprocessing/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/multiprocessing 2025-07-24T03:55:06.1337890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1338670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1339740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/GdsFile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1340770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1341900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/THCP.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1342940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/nccl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1344140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/memory_snapshot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1345170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/python_nccl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1346240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/device_set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1347330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1348400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/python_comm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1349450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/comm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1350500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1351640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/cuda/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/cuda 2025-07-24T03:55:06.1352770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1353780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1355010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/itt_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1356190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-07-24T03:55:06.1356860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-07-24T03:55:06.1357950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-07-24T03:55:06.1358920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/xpu/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/xpu 2025-07-24T03:55:06.1359920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/QScheme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1361230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1361930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cache_entry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1363020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1364170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cpython_defs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1365130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cpp_shim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1366280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/framelocals_mapping.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1367440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/cpython_includes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1368500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/extra_state.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1369630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/compiled_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1371160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/eval_frame_cpp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1372210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/eval_frame.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1373230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/debug_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1374390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/python_compiled_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1375420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1376640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/dynamo/guards.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/dynamo 2025-07-24T03:55:06.1378440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1378830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/object_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1380050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_numpy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1381110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_dtypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1382280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_tuples.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1383290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/nested.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1384350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_raii.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1386240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_numbers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1386630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_scalars.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1387780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1388910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1389880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_memoryformats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1391060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_arg_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1392460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_torch_function_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1393640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/schema_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1394830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/generated_serialization_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1396520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_new.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1397620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_qschemes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1398730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/verbose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1399930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1401040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1402220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/invalid_arguments.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1403310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pythoncapi_compat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1404670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/cpp_stacktraces.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1405830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/device_lazy_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1406850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1408070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_symnode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1409170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/byte_order.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1410400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pycfunction_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1411470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/cuda_enabled.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1412510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/numpy_stub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1413610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/out_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1414730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_layouts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1415930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/structseq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1417000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/throughput_benchmark.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1418180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/disable_torch_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1419300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/pyobject_preservation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1420450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/throughput_benchmark-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1421610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_flatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1422690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/torch_dispatch_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1423800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/tensor_apply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1424980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1426150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_compat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1427260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/six.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1428550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/python_stub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1429680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/utils/variadic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/utils 2025-07-24T03:55:06.1430740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1431850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/DataLoader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1432930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/THP.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1434030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/python_headers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1435060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Layout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1436190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/DynamicTypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1437250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/copy_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1438800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-07-24T03:55:06.1439410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/jit_opt_limit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-07-24T03:55:06.1440970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1441750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/error_report.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1442920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/source_range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1444740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/edit_distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1445650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1446810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/schema_matching.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1447850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/function_schema_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1448960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/tree_views.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1450340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/ir_emitter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1451470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1452560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/strtod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1453770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/tree.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1454820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/concrete_module_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1456050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/builtin_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1457100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/exit_transforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1458260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/parse_string_literal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1459360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/sugared_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1460820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/inline_loop_condition.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1461890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/name_mangler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1462970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/tracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1464170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/resolver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1465380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/script_type_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1466520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/schema_type_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1467570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/lexer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1468890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/versioned_symbols.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1469990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/convert_to_ssa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1471200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/source_ref.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1472360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/mini_environment.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1473530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/frontend/parser_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/frontend 2025-07-24T03:55:06.1474970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1475720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1476950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1477970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1479030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/script_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1480100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_tree_views.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1481160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1482330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_ivalue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1483490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_dict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1484650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_custom_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1485810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/update_graph_executor_opt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1486980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_tracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1488080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/pybind_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1489410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1490670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_sugared_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1491770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/python_arg_flatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1492890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/python/module_python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/python 2025-07-24T03:55:06.1494330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1495130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1496320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1497360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1498540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1499680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/lowerings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1500740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/graph_opt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1501860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1503110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1503900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1505050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1506140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1507210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/misc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1508290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1509330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1510430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1511480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1512540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr/operators 2025-07-24T03:55:06.1513580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1514720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1515870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1516950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1518270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1519380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1520560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/hash_provider.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1521600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_printer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1522690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1523770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1524880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/expr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1526010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cuda_random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1527200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1528290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1529350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1530450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1531560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/eval.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1532740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1533870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1534930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/block_codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1536100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1537190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1538300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/loopnest.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1544690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1545430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1545870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1546330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1546790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/external_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1547200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/stmt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1547640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/half_support.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1548080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/registerizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1548710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/reduction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1549920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1551010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1552170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/tensorexpr/analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/tensorexpr 2025-07-24T03:55:06.1553490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1554250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/named_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1555350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/irparser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1556530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1557940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/graph_node_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1559040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/ir_views.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1560170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/alias_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1561300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/attributes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1562360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/type_hashing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1563430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1564630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/subgraph_matcher.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1565710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/scope.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1566890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/graph_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1568140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/ir/node_hashing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/ir 2025-07-24T03:55:06.1569660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/cuda 2025-07-24T03:55:06.1570520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/cuda/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/cuda 2025-07-24T03:55:06.1572680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1573140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_read.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1574280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/export_bytecode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1575380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_source.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1576490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1577620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_export_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1578960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/type_name_uniquer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1580000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/pickler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1581170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/storage_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1582390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/python_print.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1583640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1584780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_export_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1585880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1587190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/pickler_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1588260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/pickle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1589710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import_export_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1591010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1592240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/import.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1593520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1594670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/unpickler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1595890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/source_range_serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1597040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1598910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/serialization/onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/serialization 2025-07-24T03:55:06.1600510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1601410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_debug_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1602700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1603770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1605010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1606170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml 2025-07-24T03:55:06.1607050Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-07-24T03:55:06.1607940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/cpp/context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/cpp 2025-07-24T03:55:06.1609340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:06.1610170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:06.1611540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:06.1612880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:06.1614190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:06.1615340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/coreml/objc 2025-07-24T03:55:06.1616640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_debug_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1617670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack 2025-07-24T03:55:06.1618530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-07-24T03:55:06.1619450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/serialization 2025-07-24T03:55:06.1620620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack 2025-07-24T03:55:06.1621890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-07-24T03:55:06.1622750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/executor 2025-07-24T03:55:06.1624090Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-07-24T03:55:06.1624950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends/xnnpack/compiler 2025-07-24T03:55:06.1626110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_resolver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1627250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_preprocess.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1628570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_detail.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1629850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/backends/backend_init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/backends 2025-07-24T03:55:06.1631870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1632290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:06.1633110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/frame.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:06.1634370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:06.1635690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:06.1636920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/interpreter 2025-07-24T03:55:06.1638490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1639630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1641130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1642170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/operator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1643360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/script_profile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1644560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/interpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1646000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/register_ops_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1647650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/jit_exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1649140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/exception_message.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1650250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/argument_spec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1651440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/shape_function_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1652740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1654000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/jit_trace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1655280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1656280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1657510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1658600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/custom_operator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1660070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1660880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/te_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1662290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1663480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/static_method.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1664660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/memory_planner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1665750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1666880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/passes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1667930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1669070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1670430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1671610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime/static 2025-07-24T03:55:06.1672670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/vararg_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1673770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/graph_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1674920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/symbolic_script.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1676050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/variable_tensor_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1677280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/decomposition_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1678500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1679760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/autodiff.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1680970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/print_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1682130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/profiling_record.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1683230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1684320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/graph_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1685610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/operator_options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1686700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/instruction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1687920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/runtime/graph_executor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/runtime 2025-07-24T03:55:06.1690430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1691160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_expands.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1692890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/restore_mutation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1693890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_list_idioms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1695000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/subgraph_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1696070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fuse_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1697430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/guard_elimination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1698660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1699700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/freeze_module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1700800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/clear_undefinedness.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1702200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dtype_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1702940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1704090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1705240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1706360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/value_refinement_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1707520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/metal_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1708600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/liveness.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1710040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1710840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1711990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/function_substitution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1713030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1714190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1715270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1716370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1717450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1718570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/onnx_log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1719700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/peephole.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1720880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1722070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/constant_fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1723300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/constant_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1724390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/function_extraction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1725570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1726730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1727840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1728950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/naming.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1730040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1731370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:06.1732290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:06.1733420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:06.1734620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:06.1735690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx/pattern_conversion 2025-07-24T03:55:06.1736830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1737960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/onnx 2025-07-24T03:55:06.1739090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_mutation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1740360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-07-24T03:55:06.1741170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/dbr_quantization 2025-07-24T03:55:06.1742270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1743430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1744600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/batch_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1745710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_concat_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1746760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/constant_pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1747900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1749110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1750300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1751440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fuse_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1752520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/annotate_warns.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1753760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/specialize_autogradzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1754870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_linear_folding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1755970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/prepack_folding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1757130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_conv_folding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1758210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/constant_propagation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1759360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1760470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/insert_guards.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1761850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:06.1762580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/optimization_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:06.1763690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/memory_dag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:06.1764890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:06.1765940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/op_registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:06.1767160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/utils 2025-07-24T03:55:06.1768180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/variadic_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1769370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/refine_tuple_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1770390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inliner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1771640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lower_grad_of.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1772980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1773780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1774970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/quantization_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1776060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/insert_observers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1777190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1778350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1779790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/finalize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1781010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1782060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1783320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes/quantization 2025-07-24T03:55:06.1784500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/normalize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1785520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/device_type_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1786680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/vulkan_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1787760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/erase_number_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1789000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/integer_value_refinement.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1790070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fold_linear_bn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1791180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1792330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/graph_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1793400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fold_conv_bn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1794660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1795810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inline_forked_closures.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1796970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1798400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1799310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1800410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/add_if_then_else.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1801590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/decompose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1802640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/peephole_non_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1803860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_inplace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1805090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inline_fork_wait.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1806150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/check_strict_fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1807330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/concat_opt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1808530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1809710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/eliminate_no_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1810850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/requires_grad_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1812000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/dead_code_elimination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1813290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/clear_profiling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1814560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/create_functional_graphs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1815790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/bailout_graph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1816850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lower_tuples.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1818020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1819100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1820400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/canonicalize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1821350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1822840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1823770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/loop_unrolling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1824660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/shape_analysis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1825750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1826840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/remove_exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1827960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1829150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/inplace_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1830140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1831340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1832390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/pass_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1833510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/onnx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1834640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1835750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lift_closures.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1836890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/autocast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1838080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1839210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/passes/lower_graph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/passes 2025-07-24T03:55:06.1840400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen 2025-07-24T03:55:06.1841410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-07-24T03:55:06.1842120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/cuda/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/cuda 2025-07-24T03:55:06.1843390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1844130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1845240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/operator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1846390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1847560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1848850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1849830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1851010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1852070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1853320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1854420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1855560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/onednn 2025-07-24T03:55:06.1856930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1857680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1858800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1860000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/compiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1861020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1862290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-24T03:55:06.1863050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-24T03:55:06.1864290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-24T03:55:06.1865520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cpu 2025-07-24T03:55:06.1866690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-24T03:55:06.1867490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-24T03:55:06.1868760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser/cuda 2025-07-24T03:55:06.1869840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1870920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1872060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1873300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1874460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1875550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/codegen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1876650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1877720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/codegen/fuser 2025-07-24T03:55:06.1879300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-07-24T03:55:06.1879970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing/catch_utils.hpp -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-07-24T03:55:06.1880880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing/file_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-07-24T03:55:06.1882060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/testing/hooks_for_testing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/testing 2025-07-24T03:55:06.1883000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/jit_log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-07-24T03:55:06.1884370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1885320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:06.1886160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/backport.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:06.1887350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:06.1888490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:06.1889610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/compatibility 2025-07-24T03:55:06.1891070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:06.1891840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:06.1892950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:06.1894150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:06.1895230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:06.1896400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:06.1897640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:06.1898830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/model_tracer 2025-07-24T03:55:06.1899860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1901170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/parse_operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1902210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1903470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/upgrader_mobile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1904700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1905750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/quantization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1906860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/profiler_edge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1907980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/code.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1909300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-07-24T03:55:06.1910030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc/context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-07-24T03:55:06.1911350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc/registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-07-24T03:55:06.1912420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/nnc 2025-07-24T03:55:06.1913520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/interpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1914690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/frame.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1915800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/method.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1916870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/debug_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1918040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1919200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/prim_ops_registery.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1920340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/parse_bytecode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1921670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-07-24T03:55:06.1922590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/sequential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-07-24T03:55:06.1923590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/export_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-07-24T03:55:06.1924740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train/optim 2025-07-24T03:55:06.1925560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/optim/sgd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train/optim 2025-07-24T03:55:06.1926600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/train/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile/train 2025-07-24T03:55:06.1927680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/import_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1928910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/import_export_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1929950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/type_parser.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1931080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/import.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1932160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1933270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1934300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/mobile/file_format.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/mobile 2025-07-24T03:55:06.1935760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:06.1936510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:06.1937600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/version_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:06.1938740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/upgraders.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:06.1939990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/operator_upgraders 2025-07-24T03:55:06.1940980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/resource_guard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit 2025-07-24T03:55:06.1942190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-24T03:55:06.1943200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/function_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-24T03:55:06.1944460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/method.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-24T03:55:06.1945720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/compilation_unit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-24T03:55:06.1946940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/object.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-24T03:55:06.1948130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/jit/api/module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/jit/api 2025-07-24T03:55:06.1949420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Storage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1950530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/itt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.1952040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy 2025-07-24T03:55:06.1952960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-07-24T03:55:06.1953800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-07-24T03:55:06.1955060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-07-24T03:55:06.1956190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/generated/LazyIr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/generated 2025-07-24T03:55:06.1959620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1960250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/debug_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1961220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/tensor_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1962340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1963610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-07-24T03:55:06.1964350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/internal_ops 2025-07-24T03:55:06.1965530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/multi_wait.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1971200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1972080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/permutation_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1972970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/lazy_graph_executor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1973840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1974690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/tensor_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1975540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/shape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1976420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/thread_pool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1977340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/unique.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1978200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/shape_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1979050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1979870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1980500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-07-24T03:55:06.1981160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-07-24T03:55:06.1982070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core/ops 2025-07-24T03:55:06.1982990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/metrics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1983840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_dump_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1984730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/dynamic_ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1985680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_builder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1986840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1988040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/trie.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1989200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1990320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/hash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1991530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/core/ir_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/core 2025-07-24T03:55:06.1992930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-07-24T03:55:06.1993630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python/python_util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-07-24T03:55:06.1994850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/python 2025-07-24T03:55:06.1996130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.1996880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.1998090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.1999290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.2000370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.2001570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.2002670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.2003910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-24T03:55:06.2004690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops/generic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-24T03:55:06.2005760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-24T03:55:06.2006900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend/ops 2025-07-24T03:55:06.2008140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.2009260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ts_node.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.2010430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/ir_builder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.2011650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/ts_backend 2025-07-24T03:55:06.2012930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:06.2013720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/backend_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:06.2014950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/backend_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:06.2016080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/lowering_context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:06.2017210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/lazy/backend/backend_device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/lazy/backend 2025-07-24T03:55:06.2018500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia 2025-07-24T03:55:06.2019440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia/profiler 2025-07-24T03:55:06.2020510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia/profiler 2025-07-24T03:55:06.2021440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/mtia/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/mtia 2025-07-24T03:55:06.2022540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api 2025-07-24T03:55:06.2023440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include 2025-07-24T03:55:06.2024390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2025180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/fft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2026300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nested.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2027460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2028570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/version.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2029860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2030790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2031660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2032950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2034060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2035250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2036550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2037810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2038950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/vision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2040150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2041340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2042570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2043800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2044960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2046420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2047990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/transformer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2049310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2050710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2051900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2053070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2054170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2055430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2056550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options/loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/options 2025-07-24T03:55:06.2057860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2059210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-07-24T03:55:06.2060170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/parallel 2025-07-24T03:55:06.2061270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2062600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-24T03:55:06.2063370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-24T03:55:06.2064640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-24T03:55:06.2065810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/utils 2025-07-24T03:55:06.2066960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2068070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2069150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2070310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/pimpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2071480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2073160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2074030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2075230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2076420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2077580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2078730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2079850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2081090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2082320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2083540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2084880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2086030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2087370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2088640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2089910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2091140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2092390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2093640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2094890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2096120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2097360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules/container 2025-07-24T03:55:06.2098560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2099640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2100740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2101840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2102930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2104020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2105130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2106240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2107350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2108500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2109600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2110670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2111770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2112860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/modules/loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/modules 2025-07-24T03:55:06.2113950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2114930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/cloneable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn 2025-07-24T03:55:06.2116070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2116990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2118200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2119340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2120580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2121720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2122860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/vision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2123990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2125120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2126300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2127450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/fold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2128630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2129860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2131130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2132310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2133510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2134690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn/functional/loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/nn/functional 2025-07-24T03:55:06.2136100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/python 2025-07-24T03:55:06.2136900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/python 2025-07-24T03:55:06.2137890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/enum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2138970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2140080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/all.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2141180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2142290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/arg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2143530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/xpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2144800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:06.2145570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/rmsprop.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:06.2146740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/lbfgs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:06.2147940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/optimizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:06.2148990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/adagrad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:06.2150090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/sgd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:06.2151260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/serialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:06.2152290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/adamw.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:06.2153870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-24T03:55:06.2154780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-24T03:55:06.2156020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-24T03:55:06.2157180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim/schedulers 2025-07-24T03:55:06.2158310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim/adam.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/optim 2025-07-24T03:55:06.2159140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:06.2160030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/archive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:06.2161240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/input-archive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:06.2162350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/output-archive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:06.2163430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/serialize 2025-07-24T03:55:06.2164430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/torch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2165620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/optim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2166700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/jit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2168360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-07-24T03:55:06.2169150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail/static.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-07-24T03:55:06.2170260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/detail 2025-07-24T03:55:06.2171320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/nn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2172580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/imethod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2173570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/ordered_dict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2174690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/cuda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2175850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2177000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/special.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2178410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2179500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2180610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/python.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2181760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/serialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2183020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:06.2183870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/example.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:06.2185040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader_options.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:06.2186260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:06.2187070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:06.2188200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/shared.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:06.2189300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:06.2190400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:06.2191630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:06.2192750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:06.2193930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/datasets 2025-07-24T03:55:06.2195120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/worker_exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:06.2196290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:06.2197370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-24T03:55:06.2198200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-24T03:55:06.2199330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-24T03:55:06.2200470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/detail/queue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/detail 2025-07-24T03:55:06.2202040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:06.2202850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:06.2203700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:06.2204850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:06.2205990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/collate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:06.2207140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:06.2208270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/transforms 2025-07-24T03:55:06.2209330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:06.2210170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:06.2211370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:06.2212530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:06.2213720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:06.2214900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:06.2216050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:06.2217170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/samplers/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/samplers 2025-07-24T03:55:06.2218240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/datasets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:06.2219270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/transforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:06.2220310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data 2025-07-24T03:55:06.2221500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-24T03:55:06.2222440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-24T03:55:06.2223620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-24T03:55:06.2224790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/data/dataloader/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch/data/dataloader 2025-07-24T03:55:06.2225900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/api/include/torch/expanding_array.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/api/include/torch 2025-07-24T03:55:06.2227050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/MemoryFormat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2228050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/StorageSharing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2229350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2230190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-07-24T03:55:06.2230940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/stubs/base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/stubs 2025-07-24T03:55:06.2232120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/combined_traceback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2233390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:06.2234140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:06.2235200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/nvtx_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:06.2236330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/itt_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:06.2237430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/standalone 2025-07-24T03:55:06.2238630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-07-24T03:55:06.2239360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-07-24T03:55:06.2240530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python/combined_traceback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-07-24T03:55:06.2241590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/python/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/python 2025-07-24T03:55:06.2242660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/events.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2243810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/kineto_shim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2244920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2246090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/kineto_client_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2247160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/util.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2248760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-07-24T03:55:06.2249520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration/vulkan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-07-24T03:55:06.2250530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration/observer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-07-24T03:55:06.2251580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/orchestration/python_tracer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/orchestration 2025-07-24T03:55:06.2253190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2253880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/unwinder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2254840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/dwarf_enums.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2255940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/unwind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2257130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/sections.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2258350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/unwind_error.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2259480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2260580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/debug_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2261680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/action.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2262860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/mem_file.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2264000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2265140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/fde.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2266430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/communicate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2267500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/lexer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2268710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/line_number_program.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2269890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2271090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/unwind/range_table.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler/unwind 2025-07-24T03:55:06.2272160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/containers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2273370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/collection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2274700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/perf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2275820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/data_flow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2277010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/profiler/perf-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/profiler 2025-07-24T03:55:06.2278180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/tensor 2025-07-24T03:55:06.2278940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/tensor/python_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/tensor 2025-07-24T03:55:06.2280040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/PyInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2285620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Dtype.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2286200Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-24T03:55:06.2286860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/pt2_archive_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-24T03:55:06.2287710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/pybind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-24T03:55:06.2288560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/example_upgraders.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-24T03:55:06.2289400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/export/upgrader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/export 2025-07-24T03:55:06.2290170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Module.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2290920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/python_dimname.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2291690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/CudaIPCTypes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2292330Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functorch 2025-07-24T03:55:06.2292940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/functorch/init.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc/functorch 2025-07-24T03:55:06.2293820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/Generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2294800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/TypeInfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2296000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/csrc/StorageMethods.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch/csrc 2025-07-24T03:55:06.2297110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/script.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-24T03:55:06.2298450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/library.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-24T03:55:06.2299990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/custom_class_detail.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-24T03:55:06.2301030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/custom_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-24T03:55:06.2302400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/torch/extension.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/torch 2025-07-24T03:55:06.2303570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/nnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.2305270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2306000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ClientInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2307140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/GenericTraceActivity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2308260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/IActivityProfiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2309420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/Config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2310580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/TraceSpan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2311810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/LoggingAPI.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2312860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ITraceActivity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2313960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ActivityProfilerInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2315090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ActivityTraceInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2316270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/output_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2317390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ThreadUtil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2318500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ActivityType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2319570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/libkineto.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2320750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/time_since_epoch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2321880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/ILoggerObserver.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2322980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kineto/AbstractConfig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kineto 2025-07-24T03:55:06.2324040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/xnnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.2326510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.2327420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.2328490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/qnnpack_func.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.2329910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai 2025-07-24T03:55:06.2330600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/kai_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai 2025-07-24T03:55:06.2332210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels 2025-07-24T03:55:06.2333040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul 2025-07-24T03:55:06.2334130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2335150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2336590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2338110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2339570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2341000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2342420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2343800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2345230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2346670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2348100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2349530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2350960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2351960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2352960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2354380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2355770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2357220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2358620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp 2025-07-24T03:55:06.2359590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-24T03:55:06.2360480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-24T03:55:06.2361740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-24T03:55:06.2363050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p 2025-07-24T03:55:06.2364000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:06.2365000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:06.2366300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:06.2367600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:06.2368890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p 2025-07-24T03:55:06.2369830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:06.2370860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:06.2372310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:06.2373720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:06.2375190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:06.2376680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:06.2378120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:06.2379640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:06.2381110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p 2025-07-24T03:55:06.2382160Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-24T03:55:06.2383160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-24T03:55:06.2384620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-24T03:55:06.2386030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p 2025-07-24T03:55:06.2386920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2387640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2388680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2389730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2390750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2391210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2391690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2392250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2392730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2393480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2394620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2395760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2396960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2398210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2399330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2400490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2401860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2403040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2404130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2405270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2406530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2407780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2408940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2410060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2411380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2412660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2413780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2414980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2416180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2417430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2418630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2419830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2420970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2422150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2423430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2424550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2425750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2426920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2428190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2429490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2430660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2431980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/pack 2025-07-24T03:55:06.2433260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2434270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2435490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2436680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2437850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2439120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2440330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2441540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2442730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2443960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2445320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2446650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2447800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p 2025-07-24T03:55:06.2448960Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-24T03:55:06.2449940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-24T03:55:06.2451200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp 2025-07-24T03:55:06.2452430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:06.2453420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:06.2454680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:06.2455790Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2456920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2458570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2459800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2461000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2462140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2463610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2464410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2465730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2466950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2468200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2469500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp 2025-07-24T03:55:06.2470740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-24T03:55:06.2471720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-24T03:55:06.2472930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-24T03:55:06.2474150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p 2025-07-24T03:55:06.2475520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-24T03:55:06.2476520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-24T03:55:06.2477810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-24T03:55:06.2479010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p 2025-07-24T03:55:06.2480190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-24T03:55:06.2481200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-24T03:55:06.2482420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p 2025-07-24T03:55:06.2483630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-24T03:55:06.2484540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-24T03:55:06.2485850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p 2025-07-24T03:55:06.2487060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-24T03:55:06.2488000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-24T03:55:06.2489200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p 2025-07-24T03:55:06.2490480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:06.2491390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:06.2492730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp 2025-07-24T03:55:06.2493830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-24T03:55:06.2494850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-24T03:55:06.2496070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p 2025-07-24T03:55:06.2497240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-24T03:55:06.2498170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-24T03:55:06.2499450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p 2025-07-24T03:55:06.2500450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-24T03:55:06.2501330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-24T03:55:06.2502560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p 2025-07-24T03:55:06.2503440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/pthreadpool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.2505080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/clog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.2506170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/omp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:06.2508490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2508920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Formatting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2510120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NestedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2511200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2512360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyBatchedFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2513370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CollapseDims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2514650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2515540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MetaFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2516640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2517720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2518820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DeviceAccelerator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2519850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2520940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MemoryOverlap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2522090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorSubclassLikeUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2523150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyVmapMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2524230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/InitialTensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2525230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Version.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2526340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DLConvertor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2527390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2528480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FuncTorchTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2530430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2530790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Dict_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2531900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Formatting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2532990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TensorBody.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2535930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/GeneratorForPrivateuseone.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2536770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-24T03:55:06.2537480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/adaption.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-24T03:55:06.2538670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/op_allowlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-24T03:55:06.2539790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/op_registration.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-24T03:55:06.2540980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/op_registration/infer_schema.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/op_registration 2025-07-24T03:55:06.2541990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/jit_type_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2543230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/typeid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2544350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/rref_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2545450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2546620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/interned_strings_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2547730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/operator_name.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2548870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2549880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/symbol.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2550990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Backtrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2552090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TransformationHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2553130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/blob.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2554260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/function_schema.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2555510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/type_factory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2556830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-24T03:55:06.2557540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/OperatorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-24T03:55:06.2558710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/RegistrationHandleRAII.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-24T03:55:06.2559850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/ObservedOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-24T03:55:06.2560990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/DispatchKeyExtractor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-24T03:55:06.2562030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/Dispatcher.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-24T03:55:06.2563480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/CppSignature.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-24T03:55:06.2564660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dispatch/OperatorEntry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/dispatch 2025-07-24T03:55:06.2565760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/MT19937RNGEngine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2566800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ivalue_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2567910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/aten_interned_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2569370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/dynamic_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2570420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/class_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2571560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/LegacyTypeDispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2572620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/function_schema_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2573790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/NestedIntSymNodeImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2574960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/qualified_name.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2576030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/UndefinedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2577140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/NamedTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2578180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2579350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/CachingHostAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2580600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2581720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DeprecatedTypeProperties.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2582780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/interned_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2583970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/List.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2585090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATenOpList.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2586260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Dict.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2587300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/type_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2588470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/grad_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2589650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DistributionsHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2590820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/VariableHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2591980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/CheckMemoryFormat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2593110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2594160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Array.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2595230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATen_fwd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2596390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2597570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATenGeneral.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2598700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/custom_class.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2599820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/IListRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2601330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/UnsafeFromTH.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2602250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/PythonOpRegistrationTrampoline.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2603330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TensorBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2604710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ATen_pch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2605830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/QuantizerBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2606950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/enum_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2607990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/alias_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2609050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/List_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2610130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TorchDispatchUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2611280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/enum_tag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2612420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/jit_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2614090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/IListRef_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2615180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ivalue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2616580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Dimname.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2617680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Vitals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2618820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/PythonFallbackKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2620150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-24T03:55:06.2621020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:06.2621860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:06.2623550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/boxing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:06.2624420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/test_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:06.2625470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:06.2626630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing/impl 2025-07-24T03:55:06.2627700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/KernelFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-24T03:55:06.2628870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/OperatorKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-24T03:55:06.2629950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/KernelFunction_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-24T03:55:06.2631100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/BoxedKernel_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-24T03:55:06.2632260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/boxing/BoxedKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core/boxing 2025-07-24T03:55:06.2633370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/builtin_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2634450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/DimVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2635540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Reduction.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2636640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2637730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2638840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2639930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/PhiloxRNGEngine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2641020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/TensorAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2642180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/ivalue_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2643960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/core/Variadic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/core 2025-07-24T03:55:06.2645150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2646190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/jiterator_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2647350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Operators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2648870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.2650410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2651110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSProfiler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2652350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2653390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2654650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2655680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2656760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2657860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSDevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2658940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSStream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2660100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/IndexKernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2661230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSAllocatorInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2662380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/mps/MPSGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/mps 2025-07-24T03:55:06.2664390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2664920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CompositeRandomAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2666240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/MathBitsFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2667490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorTransformations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2668470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ComplexHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2669570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ConvUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2670750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Normalization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2671860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReductionType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2672920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Repeat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2673970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/layer_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2675090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/GridSampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2676220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TriangularOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2677360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/UnfoldBackward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2678410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2679510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Unfold3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2680590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2681980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse 2025-07-24T03:55:06.2682810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized 2025-07-24T03:55:06.2683640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-24T03:55:06.2684450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-24T03:55:06.2685840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-24T03:55:06.2686650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/ao_sparse/quantized/cpu 2025-07-24T03:55:06.2687670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/LinearAlgebra.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2688790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/RangeFactories.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2689820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/RNN.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2691200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/IndexKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2691990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Pool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2693060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/RangeUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2694190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Cross.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2695260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/im2col.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2696390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TransposeType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2697480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/DispatchStub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2698640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Unfold2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2699810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2700880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FunctionOfAMatrixUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2702320Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-24T03:55:06.2703180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MetalShaderLibrary.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-24T03:55:06.2704730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-07-24T03:55:06.2705390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/UpSample.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-07-24T03:55:06.2706590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/kernels/Pooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/kernels 2025-07-24T03:55:06.2707870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-24T03:55:06.2708820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-24T03:55:06.2709970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-24T03:55:06.2711130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/BinaryKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-24T03:55:06.2712250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-24T03:55:06.2713510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-24T03:55:06.2714750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/operations/MultiTensorApply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps/operations 2025-07-24T03:55:06.2715870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/TensorFactory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-24T03:55:06.2716940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MPSGraphSonomaOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-24T03:55:06.2718040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MPSGraphVenturaOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-24T03:55:06.2719270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/MPSGraphSequoiaOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-24T03:55:06.2720270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/OperationUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-24T03:55:06.2721580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mps/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mps 2025-07-24T03:55:06.2722820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Distributions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2724080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/MaxPooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2725140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Gelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2726340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SparseTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2727530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CPUFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2729110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2729790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalConvParams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2731040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalTensorImplStorage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2732240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2733400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2734560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2735790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalNeuronType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2736950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalShaders.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2739010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2739500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2740610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2741870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-07-24T03:55:06.2742720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-07-24T03:55:06.2743770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn/tests 2025-07-24T03:55:06.2744920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2746070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2747230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2748330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2749450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2750730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2751990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/mpscnn 2025-07-24T03:55:06.2753500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-07-24T03:55:06.2753920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops/MetalCopy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-07-24T03:55:06.2755150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/ops/MetalConvolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal/ops 2025-07-24T03:55:06.2756540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalPrepackOpContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2757330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalCommandBuffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2758380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/metal/MetalDevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/metal 2025-07-24T03:55:06.2759820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2760480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/IsContiguous.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2761780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/zmath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2763020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/ReduceUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2764100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/mixed_data_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2765330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2766540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2767740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/int_mm_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2768930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SampledAddmmKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2770070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Gelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2771230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/moments_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2772440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/ChannelShuffleKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2773640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SpmmReduceKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2774760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/GridSamplerKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2775820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SerialStackImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2776980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2778190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/LogAddExp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2779380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/WeightNormKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2780510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/MaxUnpoolKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2781550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/SoftmaxKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2782690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/AtomicAddFloat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2783880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Elu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2784950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2786140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/CatKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2787240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/StackKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2788390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2789490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/DepthwiseConvKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2790620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/DistributionTemplates.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2791930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/PixelShuffleKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2793170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2794670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/IndexKernelUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2795750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/avx_mathfun.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2797020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/CopyKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2798160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cpu/Loops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cpu 2025-07-24T03:55:06.2799430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FusedAdagrad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2805320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/GridSamplerUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2805750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TopKImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2806170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorAdvancedIndexingUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2806570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/DilatedConvolutionUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2806930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ForeachUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2807310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SobolEngineOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2808150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReduceAllOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2810110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2810740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CompositeRandomAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2812000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Normalization.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2813720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortingRadixSelect.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2814720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/MiscUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2815940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/block_reduce.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2817180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GridSampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2818380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/TensorModeKernel.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2819370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/MemoryAccess.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2820610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CuFFTPlanCache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2821880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/RowwiseScaledMM.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2822970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CUDAJitLoops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2824160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/im2col.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2825340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/cutlass_common.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2826450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ScanKernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2827600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/IndexKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2828770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2829920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ScaledGroupMM.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2831160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/DeviceSqrt.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2832260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Distributions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2833280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/UpSample.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2834260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Randperm.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2835370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/vol2col.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2836560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Pow.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2837570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/BinaryInternal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2838650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/reduction_template.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2839860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GroupMM.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2841000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adamw_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2842490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Math.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2843830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CuFFTUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2844840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ReduceOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2846220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortingCommon.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2847230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/TensorTopK.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2848210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ScanUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2849450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/TensorModeKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2850510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/MultiTensorApply.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2851680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2852780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/thread_constants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2853810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2854870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Sorting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2856040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2857110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adam_utils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2858230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GroupMMCommon.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2859270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2860360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/JitLoops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2861430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/KernelUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2862470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ForeachFunctors.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2863740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2864820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Loops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2865900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Sort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2867020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/UniqueCub.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2868160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/CUDALoops.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2869460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/DistributionTemplates.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2870690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/GridSampler.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2871800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/PersistentSoftmax.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2873090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Reduce.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2874530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/IndexKernelUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2875580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/jit_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2876880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2877960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/SortStable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2879090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/LaunchUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2880140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/fused_adam_impl.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2881210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/cuda/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/cuda 2025-07-24T03:55:06.2883250Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-24T03:55:06.2883790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/ConvUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-24T03:55:06.2885040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/AffineQuantizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-24T03:55:06.2886170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/IndexKernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-24T03:55:06.2887210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/library.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-24T03:55:06.2888650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2889620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/XnnpackUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2890700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/fbgemm_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2891890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/init_qnnpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2892910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/ACLUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2894250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/conv_serialization.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2895570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qlinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2896800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2897910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qembeddingbag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2899290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/QnnpackUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2900710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2901770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/OnednnUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2902870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/QuantUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2903990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/RuyUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2905100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/qconv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2906500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/BinaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2907570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cpu/QuantizedOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cpu 2025-07-24T03:55:06.2908660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/AffineQuantizerBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-24T03:55:06.2910010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/FakeQuantAffine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-24T03:55:06.2911180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/PackedParams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-24T03:55:06.2912280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized 2025-07-24T03:55:06.2913660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cudnn 2025-07-24T03:55:06.2914460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/quantized/cudnn/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/quantized/cudnn 2025-07-24T03:55:06.2915650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Lerp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2916730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReduceOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2917970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorAdvancedIndexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2919100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/UnaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2920140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SortingUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2921440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/MathBitFallThroughLists.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2922620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/StridedRandomAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2923830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorShape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2924950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/IndexingUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2926080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/UpSample.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2927540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-07-24T03:55:06.2928290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils/ParamUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-07-24T03:55:06.2929430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils/ParamsHash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-07-24T03:55:06.2930610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/utils/Factory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/utils 2025-07-24T03:55:06.2931690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ResizeCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2932780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SharedReduceOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2933840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2934990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SpectralOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2936330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Sorting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2937330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/NonSymbolicBC.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2938340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorProperties.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2939640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-07-24T03:55:06.2940410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/sdp_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-07-24T03:55:06.2941540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-07-24T03:55:06.2942780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda 2025-07-24T03:55:06.2943500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/sdp_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda 2025-07-24T03:55:06.2944890Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:06.2945770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-24T03:55:06.2946670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-24T03:55:06.2948400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels 2025-07-24T03:55:06.2949710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:06.2951040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:06.2951750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:06.2952950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:06.2954140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:06.2955420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:06.2956930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:06.2958070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:06.2959410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm 2025-07-24T03:55:06.2960680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-24T03:55:06.2961630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-24T03:55:06.2962800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-24T03:55:06.2964050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue 2025-07-24T03:55:06.2965440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:06.2966640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:06.2968170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:06.2969360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-07-24T03:55:06.2970230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform 2025-07-24T03:55:06.2971450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:06.2972280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:06.2973530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:06.2975120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:06.2976380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:06.2977580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:06.2978730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:06.2980050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators 2025-07-24T03:55:06.2981460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/mem_eff_attention 2025-07-24T03:55:06.2983460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-24T03:55:06.2984030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-24T03:55:06.2985090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/cuda/flash_attn 2025-07-24T03:55:06.2986500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/sdp_utils_cpp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers 2025-07-24T03:55:06.2987590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-07-24T03:55:06.2988380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/aotriton_adapter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip 2025-07-24T03:55:06.2989750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn 2025-07-24T03:55:06.2990570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-07-24T03:55:06.2991440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn/ck 2025-07-24T03:55:06.2992570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/transformers/hip/flash_attn 2025-07-24T03:55:06.2993810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/BucketizationUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2994870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/vol2col.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2996180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/LossMulti.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2997240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/NonEmptyUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2998600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorDimApply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.2999870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-24T03:55:06.3000560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-24T03:55:06.3001790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_bgemm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-24T03:55:06.3003040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_gemm_template.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-24T03:55:06.3004430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-07-24T03:55:06.3005500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-07-24T03:55:06.3006440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip/bgemm_kernels 2025-07-24T03:55:06.3007380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/hip/ck_gemm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/hip 2025-07-24T03:55:06.3008480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/verbose_wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3009700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/AdaptivePooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3010870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mtia 2025-07-24T03:55:06.3011590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mtia/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mtia 2025-07-24T03:55:06.3012710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ConvolutionMM3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3013910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/group_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3015150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Histogram.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3016450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-07-24T03:55:06.3017200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai/kai_pack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-07-24T03:55:06.3018410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai/kai_ukernel_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-07-24T03:55:06.3019530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/kleidiai/kai_kernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/kleidiai 2025-07-24T03:55:06.3020660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3021750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3024060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FusedAdam.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3024720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ScatterGatherChecks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3025850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CPUBlas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3027060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CompositeRandomAccessorCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3028170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/BatchLinearAlgebra.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3029260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/AmpKernels.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3030300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/DistributionTemplates.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3031630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorIterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3032760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorConversions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3033970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-24T03:55:06.3034690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-24T03:55:06.3036040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorTransformerUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-24T03:55:06.3037160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-24T03:55:06.3038410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorBinaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-24T03:55:06.3039610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/nested 2025-07-24T03:55:06.3040640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FractionalMaxPooling.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3041910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/ReduceOpsUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3043250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorFactories.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3044840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn 2025-07-24T03:55:06.3045290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-07-24T03:55:06.3046080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/FusionUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-07-24T03:55:06.3047260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:06.3048030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:06.3049360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/Attr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:06.3050500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:06.3051600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:06.3052830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:06.3054050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu/detail 2025-07-24T03:55:06.3055140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/mkldnn/xpu/Conv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native/mkldnn/xpu 2025-07-24T03:55:06.3056270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/PointwiseOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3057400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/BinaryOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3058410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Pow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3059600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/EmbeddingBag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3060680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/im2col_shape_check.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3061770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/SegmentReduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3062830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/FusedSGD.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3063980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Padding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3065200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorCompare.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3066310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/PixelShuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3067480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/LinearAlgebraUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3068670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TypeProperties.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3069860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/Copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3071130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/CanUse32BitIndexMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3072320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/native/TensorIteratorDynamicCasting.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/native 2025-07-24T03:55:06.3073310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ceil_div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3074440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3075610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NativeMetaFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3077160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/dlpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3078200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3079340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ThreadLocalPythonObjects.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3080550Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/metal 2025-07-24T03:55:06.3081300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/metal/Context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/metal 2025-07-24T03:55:06.3082440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Backtrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3083730Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-07-24T03:55:06.3084400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-07-24T03:55:06.3085460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/FlushDenormal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-07-24T03:55:06.3086610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vml.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu 2025-07-24T03:55:06.3088100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3088810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_quant.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3089940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3091480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:06.3092130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:06.3093330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:06.3094470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:06.3095770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:06.3097050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:06.3098370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec128 2025-07-24T03:55:06.3099720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3101070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3101950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3103120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3104760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3105860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3107100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_qint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3108560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3109820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3111230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3112170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3113240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3114380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3115880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-07-24T03:55:06.3116720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/zarch 2025-07-24T03:55:06.3118520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3119670Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3120380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3121620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3122920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3124130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3125260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3126570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3128150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3129410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3130590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3131930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3133070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3134490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3135910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256/vsx 2025-07-24T03:55:06.3137150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3138620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec256 2025-07-24T03:55:06.3139770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3141250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3142140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/intrinsics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3143300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/functional_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3144530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/functional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3146030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3146820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3148350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_convert.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3149410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3150920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3152330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_float8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3153660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3154830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3156260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3157400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_qint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3159070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3160460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec512/vec512.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/vec512 2025-07-24T03:55:06.3161850Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:06.3162480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_bfloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:06.3163810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_qint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:06.3165040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:06.3166310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:06.3167600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_common_sve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:06.3168720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/sve_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:06.3169830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/sve/vec_int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec/sve 2025-07-24T03:55:06.3171100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_n.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3172240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/functional_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3173320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpu/vec/vec_base.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cpu/vec 2025-07-24T03:55:06.3174800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3176120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TracerMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3177240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/BlasBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3178250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Backend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3179370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/RegistrationDeclarations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3185150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3185770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/PTThreadPool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3186770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/OpaqueTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3187830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MapAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3189290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3189930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDADevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3191050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3192220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDABlas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3193320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3194420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/AsmUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3195590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub-RadixSortPairs.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3196590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/Sleep.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3198050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PinnedMemoryAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3198870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/DeviceUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3200060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/jiterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3201110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub_definitions.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3202230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDASparseDescriptors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3203390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/EmptyTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3204600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ApplyGridUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3205650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PeerToPeerAccess.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3206650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3207830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PhiloxUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3208930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3210040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/Exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3211190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ScanUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3213120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/NumericLimits.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3213500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDATensorMethods.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3214550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3215840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGraphsUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3216900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CachingHostAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3217940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDADataType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3219010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/cub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3220160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAContextLight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3221220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAGraph.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3222310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDAApplyUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3223740Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3224520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/TensorInfo.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3225680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/CUDAHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3226920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/KernelUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3228110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/IntegerDivider.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3229340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/LazyNVRTC.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3230570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3231760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/DeviceThreadHandles.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3232790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/OffsetCalculator.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3233830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/IndexUtils.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3234940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/detail/UnpackRaw.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/detail 2025-07-24T03:55:06.3236090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ThrustAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3237270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/Atomic.cuh -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3238500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/llvm_jit_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3239530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDASparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3240690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/PhiloxCudaState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3241740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/jiterator_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3243010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-24T03:55:06.3243730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/TunableOp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-24T03:55:06.3244900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/StreamTimer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-24T03:55:06.3246010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/TunableGemm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-24T03:55:06.3247080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/GemmCommon.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-24T03:55:06.3248290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/GemmHipblaslt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-24T03:55:06.3249530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/GemmRocblas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-24T03:55:06.3250560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/tunable/Tunable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda/tunable 2025-07-24T03:55:06.3251650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/ATenCUDAGeneral.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3252690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cuda/CUDASparseBlas.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cuda 2025-07-24T03:55:06.3254060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-07-24T03:55:06.3254670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized/QTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-07-24T03:55:06.3255810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/quantized/Quantizer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/quantized 2025-07-24T03:55:06.3256910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/record_function.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3258120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/WrapDimUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3259640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-24T03:55:06.3260210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-24T03:55:06.3261410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUDevice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-24T03:55:06.3262530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/PinnedMemoryAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-24T03:55:06.3263660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/CachingHostAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-24T03:55:06.3264990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu/detail 2025-07-24T03:55:06.3265740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/detail/XPUHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu/detail 2025-07-24T03:55:06.3266940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-24T03:55:06.3267960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/xpu/XPUContext.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/xpu 2025-07-24T03:55:06.3269280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-24T03:55:06.3270000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-24T03:55:06.3271190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-24T03:55:06.3272370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Descriptors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-24T03:55:06.3273530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/miopen-wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-24T03:55:06.3274540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Exceptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-24T03:55:06.3275580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/miopen/Handle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/miopen 2025-07-24T03:55:06.3276790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/RedispatchFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3288430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Context.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3289720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3290810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3291920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/div_rtn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3293100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ExpandUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3294280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MPSFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3295520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TypeDefault.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3296620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MPSFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3297790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/VmapGeneratedPlumbing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3307240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MethodOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3308350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUFixedAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3309500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NamedTensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3310610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3311790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorIteratorInternal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3312880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LinalgBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3314050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyBatchedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3315210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3316340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SequenceNumber.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3317450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FunctionalStorageImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3318530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ExpandBase.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3319570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Parallel-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3320610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MatrixRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3321770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CUDAFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3323090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3324250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/FunctionalTensorWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3325490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseCsrTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3326610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NumericUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3327680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ATen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3328860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorNames.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3329920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorMeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3331050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorIndexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3332280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Layout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3333510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SparseTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3334500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SavedTensorHooks.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3335880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3336650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/PrivateUse1HooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3337790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/AcceleratorHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3338860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/CUDAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3339940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/MAIAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3341040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/XPUHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3342130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/FunctionTraits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3343210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/HIPHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3344350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/MPSHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3345590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/MTIAHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3346440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/HPUHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3347520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/detail/IPUHooksInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/detail 2025-07-24T03:55:06.3348690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3349910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/StorageUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3350970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/WrapDimUtilsMulti.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3352060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/code_template.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3353170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3354270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CUDAFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3355690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip 2025-07-24T03:55:06.3356340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-24T03:55:06.3357130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-24T03:55:06.3358330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-24T03:55:06.3359470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-24T03:55:06.3360580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/hip/impl 2025-07-24T03:55:06.3361580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3362740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cpp_custom_type_hack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3363930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Dispatch_v2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3365400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Storage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3366460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DeviceGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3367530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ParallelNative.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3368640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/OpMathType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3369700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/PythonTorchFunctionTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3370720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/PadNd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3371740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3373050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUGeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3374180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ParallelFuture.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3375210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:06.3410390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3410850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3412980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3413540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3414680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3415900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3416970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3418040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3419200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3420350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3421460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3422650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3423760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3424840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3425960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3427080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3428220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3429430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3430700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3431750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3432840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3434150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3435110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3436220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3437370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3438520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3439700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3440670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3441930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3442950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3444100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3445310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3446470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3447530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3448690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3449860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3450900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3452110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3453260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3454340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3455420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3456550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3457730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3458840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3460020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3461000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3462110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3463290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3464400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3465460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3466610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3467670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3468840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3474690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3475090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3475420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3475770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3476170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3476720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3477180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3478040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3479230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3480270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3481450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3482760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3483920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3484960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3486080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3487260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3488410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3489500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3490570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3491640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3492740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3494050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3495250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3496330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3497490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3498530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3499650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3500700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3501950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3503040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3504090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3505140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3506260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3507350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3508430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3509500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3510740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3511870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3512970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3514070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3515130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3516260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3517280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3518510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3519780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3520700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3521840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3522940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3524100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3525190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3526270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3527370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3528450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3529610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3530850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3531900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3533160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3534220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3535480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3536590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3537730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3538860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3540080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3541230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3542350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3543570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3544620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3545730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3546860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3547920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3549070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3550220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3551330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3552380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3553540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3554620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3555750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3556920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3558100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3559170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3560390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3561510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3562730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3563790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3565000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3566130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3567190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3568360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3569420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3570440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3571640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3572660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3573830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3574900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3576030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3577190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3578270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3579560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3580600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3581840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3582970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3584080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3585200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3586290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3587550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3588650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3589760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3590880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3592050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3593250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3594290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3595560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3596610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3597800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3598940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3600040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3601180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3602340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3603410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3604530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3605750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3606880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3607940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3609180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3610230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3611390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3612660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3613880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3614880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3616060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3617120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3618280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3619410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3620550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_max_seqlen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3621880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3623000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3624140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3625340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3626600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3627690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3628840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3630040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3631220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3632310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3633600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3634610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3635700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3636950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3638070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3639180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3640250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3641390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3642730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3643710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3644970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3646130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3647420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3648690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3649830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3650970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3652180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3653400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3654560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3655650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3656800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3658040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3659250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3660420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3661500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3662690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3663750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3664940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3666070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3667300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3668480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3669630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3670790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3671950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3673020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3674100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3675360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3676530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3677800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3678940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3679890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3680990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3682410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3683670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3684910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3686230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3687180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3688370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3689560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3690640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3692030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3693250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3694300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3695550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3696740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3697990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3699150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3700310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3701820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3702900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3704040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3705170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3706400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3707470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3708690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3709730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3710950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3712190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3713400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3714600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3715890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3716860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3718230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3719560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3720670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3721810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3723220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3724540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3725620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3726900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3728140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3729320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3730650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3731830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3732980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3734150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3735170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3736440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3737480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3738700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3740210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3740990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3742080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3743440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3744550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3745790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3746920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3748130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3749270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3750470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3751920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3752980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3754150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3755470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3756530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3757570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3758680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3759820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3761010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3762040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3763130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3764390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3765360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3766630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3767840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3768990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3770130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3771330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3772740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3773770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3774830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3775860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3776930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3778020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3779120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3780340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3781370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3782490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3783510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3784740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3785900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3786790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3787810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3789010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3790080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3791220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3792330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3793430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3794510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3795540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3796820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3797820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3798930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3800010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3801080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3802180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3803350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3804510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3805670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3806710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3807830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3808950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3809970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3811200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3812400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3813410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3814530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3815700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3816800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3817940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3819150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3820380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3821480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3822600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3823860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3824980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3826090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3827280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3828600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3829920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3831160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3832210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3833300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3834450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3835480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3837030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3838050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3839250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3840310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3841350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3842610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3843820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3844990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3846010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3847150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3848340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3849570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3850620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3851760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3852860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3853940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3855210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3856200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3857310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3858400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3859550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3860830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3861860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3862970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3864190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3865330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3866480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3867540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3868810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3869970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3871100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3872210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3873340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3874460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3875670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3876860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3877890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3879160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3880200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3881460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3882480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3883590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3884780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3886360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3887160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3888270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3889470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3890600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3891590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3892700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3893760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3894860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3896030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3897100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3898430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3899460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3900680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3901560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3902680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3903740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3904870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3906050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3907200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3908300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3909450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3910720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3911820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3912870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3913950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3915020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3916090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3917250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3918410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3919560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_min_seqlen_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3920810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3921900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3923040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3924260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3925300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3926480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3927560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3928800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3929900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3931220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3932140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3933220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3934310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3935370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3936480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3937500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3938720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.3939830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_lengths_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4104810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4538640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4540430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4541900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4543610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4544990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4546620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4548170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4549600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4551260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4553170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4554480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4556130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4557610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4567880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4639190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4645350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4647240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4648850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4654810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4660450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4662170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4663950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4665720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4667530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4669080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4670650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4672250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4673890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4675630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4677360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4683070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4684580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4686230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4687940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4689620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4691220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4693020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4694580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4696060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4697590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4699160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4700610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4702110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4703770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4705120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4706530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4707990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4709600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4710920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4712480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4713990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4715370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4716920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4718300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4719920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4721250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4722740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4724200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4725720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4727120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4728510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4730040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4731490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4733000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4734380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4735650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4737060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4738340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4739760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4744950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4746200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4751660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4753160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4754480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4755940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4757370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4758890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4760260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4761740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4763200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4764600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4766010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4767500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4768870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4770440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4771840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4773200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4774610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4776040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4777620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4779130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4780470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4781880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4787330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4793350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4794630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4795950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4801930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4807350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4808580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4809930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4811450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4812830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4818730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4824350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4825750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4827390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4837190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4838510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4843910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4845050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4850350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4855350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4860750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4866170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4867430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4868710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4877760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4878210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4879680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4880880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4886670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4887770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4888910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4890290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4891490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4896620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4897720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4898850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4900220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4901490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4902800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4912790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4913780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4915130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4916460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4917720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4918830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4920290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4921480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4922700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4923870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4925100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4926330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4927760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4928830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4930250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4931520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4932920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4934050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4935260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4936830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4942530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4943340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4944620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4945820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4947010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4948200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4949410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4950840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4952260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4953250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4954600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4955850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4957160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4958460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4959730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4960910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4962190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4963800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4964890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4966080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4967370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4968600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4969790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4970980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4972130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4973440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4974820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4976080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4977420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4978620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4979810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4985660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4986530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4987780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4989050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4990150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4991320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4992560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4994150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4995440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4996620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4997960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.4999300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5000340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5001560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5002690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5003950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5005250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5006180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5007450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5008660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5009930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5010960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5012490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5013320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5014780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5015900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5017110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5018330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5019530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5020630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5021760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5023110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5024180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5025390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5026660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5027850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5029110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5030160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5031370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5032610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5033880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5035110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5036390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5037520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5038780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5039970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5041170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5042400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5043620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5044880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5046240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5047480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5048690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5049930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5051220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5052380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5053640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5054790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5056080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5057240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5058500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5059730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5060880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5062120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5063450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5064790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5065920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5067220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5068620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5069970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5071030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5072320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5073700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5075040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5076200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5077360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5078600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_scale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5079770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5080910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5082210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5083400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5084700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5085870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5087290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5088470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5089670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5091070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5092250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5093530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5094850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5096080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5097280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5098490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5099690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5100970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5102270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5103510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5104880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5106050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5107280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5108950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5109790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5111090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5112450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5113720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5114900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5116190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5117420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5118630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5120070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5121190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5122470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5124060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5124960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5126250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5127470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5128760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5130060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5131200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5132390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5133640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5134990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5136350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5137820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5139180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5140350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5142020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5143520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5144780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5146260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5147450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5149240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5150230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5151550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5152820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5154450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5155350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5156720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5157990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5159130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5160480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5161690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5163000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5164390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5165640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5166840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5168260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5169420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5170600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5171800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5172930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5174230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5175470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5176820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5177840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5179040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5180250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5181360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5182890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5183790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5185000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5186340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5187610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5188760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5189890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5191260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5192380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5193610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5194720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5195880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5197140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5198130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5199290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5200550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5201700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5202840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5204230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5205230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5206290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5207420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5208640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5209730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5211000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5212120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5213320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5214550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5215700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5216920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5218240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5219340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5220470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5221650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5222790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5223990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5225090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5226370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5227460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5228560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5229940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5230920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5232150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5233340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5234490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5235570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5236760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5237910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5239350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5240410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5241720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5242850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5244220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5245150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5246250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5247360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5248580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5249760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5250970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5252100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5253280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5254450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5255610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5256880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5258140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5259230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5260500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5261600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5262820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5264070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5265160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5266350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5267530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5268760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5269910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5271090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5272240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5273960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5274620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5276110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5277190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5278370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5279560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5280680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5281890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5283050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5284490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5285590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5286770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5287920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5289300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5290440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5291670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5292950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5294040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5295260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5296270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5297520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5298940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5300130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5301230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5302470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5303750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5304980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5306180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5307300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5308520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5309770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5311340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5312670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5313880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5315060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5316320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5317560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5318700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5319920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5321170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5322320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5323520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5324730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5326180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5327140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5328420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5329690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5330760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5331940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5333140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5334300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5335630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5336740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5337880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5338980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5340140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5341380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5342520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5343630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5344710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5346050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5347290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5348500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5349720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5350820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5352060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5353200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5354390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5355580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5356750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5357940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5359170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5360530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5361410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5362560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5363830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5365010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5366130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5367350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5368520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5369680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5370960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5372250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5373440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5374520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5375680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5376910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5378070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5379300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5380550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5381790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5382910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5384310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5385340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5386550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5387690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5388860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5390060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5391370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5392580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5393810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5394900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5396210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5397330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5398550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5399720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5400960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5402250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5403680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5404870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5406070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5407440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5408520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5409740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5411150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5412430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5413510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5414720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5415930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5417230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5418410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5419580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5420850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5422020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5423350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5424400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spsolve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5425830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5427040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5428260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5429550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5430620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5431940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5433070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5434160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5435310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5436500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5437620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5439000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5440140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5441420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5442710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5443830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5444970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5446170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5447410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5448580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5450040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5451080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5452170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5453350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5454490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5455710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5456890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5458080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5459260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5460630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5461700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5463020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5464200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5465370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5466820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5467620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5468800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5469970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5471170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5472370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5473530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5474660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5475830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5477160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5478210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5479620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5480780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5482020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5483210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5484310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5485550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5486750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5488080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5489140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5490390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5491630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5492810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5494220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5495190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5496520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5497750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5499070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5500370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5501550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5502870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5503630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hspmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5504910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5505970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5507130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5508360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5509580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5510730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5511950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5513030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5514140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5515300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5516450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5517560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5518740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5519770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5521250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5522230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5523280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5524440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5525500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5526610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5527860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5528970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5530050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5531200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5532320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5533470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5534540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5535690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5536840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5538110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5539160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5540360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5541670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5542870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5544100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5545300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5546430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5551240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5551710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5552230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5552570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5552930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5553780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5554860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5556120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5557360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5558450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5559540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5560990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5561960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5567610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5568420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5569550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5570670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5571810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5572940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5574070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5575200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5576350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5577550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5578620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5579840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5580970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5582130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5583330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5584700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5586040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5587120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5588220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5589530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5590870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5591970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5593120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5594300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5595510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5596830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5597920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5599120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5600340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5605620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5606810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5608170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5609260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5610390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_lengths_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5611620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5612760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5613960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5615120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5616250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5617350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5618560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5619780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5621010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5622220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5623940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5624620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5625760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5626970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5628170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5629280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5630430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5631830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5632870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5634010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5635180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5636310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5637620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5638760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5639930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5641100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5642320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5643430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5644640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5645870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5646980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5648220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5649300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5650480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5651610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5652700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5654060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5655150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5656310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5657450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5658630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5659820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5661000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5662140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5663250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5664550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5665750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5666910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5668140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5669430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5670710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5671880Z 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-07-24T03:55:06.5673100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5674390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5675550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5676650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5677760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5679000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5680140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5681350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5682430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5683660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5684920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5686100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5687230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5688530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5689620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5690770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5691920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5693190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5694330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5695480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5696660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5697790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5699010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5700270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5701490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5702580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5703770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5704980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5706160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5707310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5708400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5709570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5710700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5711960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5713130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5714450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5715620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5716820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5717960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5719040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5720140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5721400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5722550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5723680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5724890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5725970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5727160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5728310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5729440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5730670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5731730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5732960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5734130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5735320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5736520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5737620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5738800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5739870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5741250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5742350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5743530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5744780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5745900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5747040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5748200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5749340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5750450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5751730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5752840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5754160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5755410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5756610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5757610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5758780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5759900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5761160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5762350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5763480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5764760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5765890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5767160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5768370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5769500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slogdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5770660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5771810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5773020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5774110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5775230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5776550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5777630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5778880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5780150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5781240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5782470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5783670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5784780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5786190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5787150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5788380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5789470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5790580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5791730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5792940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5794040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5795310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5796440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5797620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5798750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5799870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5801210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5802350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5803550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5804860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5806170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5807170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5808370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5809550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5810630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5811940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5812950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5814210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5815340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5816480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5817580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5818750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5819920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5821100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5822250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5823570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5824790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5825970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5827130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5828270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5829450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5830510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5831720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5832860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5833940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5835150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5836280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5837530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5838570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5839760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5840980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5842060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5843240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5844290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5845540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5846600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5847850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5848970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5850060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5851260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5852350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5853500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5854750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5855950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5857410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5858360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5859590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5860730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5861840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5862960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5864010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5865290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5866440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5867640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5868800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5869920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5871130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5872400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5873560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5874690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5875910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5877060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5881890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5882890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5884220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5885370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5886550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5887670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5888840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5890130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5891280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5892530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5893610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5894980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5896070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5897230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5898600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5899630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5900830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5902080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5903180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5904350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5905640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5906750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5912970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5914080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5915220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5916610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5917800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5919040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5920150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5921520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5922710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5923860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5925280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5926440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5927740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5928980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5930170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5931390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5932630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5933960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5935230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5936510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5937730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5938850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5940190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5941060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5942240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5943350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5944610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5945910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5947120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5948290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5949520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5950850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5952060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5953260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5954410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5955750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5956880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5958120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5959240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5960540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5961940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5963010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5964270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5965430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5966650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5967770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5969000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5970180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5971270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5972460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5973790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5974990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5976050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5977190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5978430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5979900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5981130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5981980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5983410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5984570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5985650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5986780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5988060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5989300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5990620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5991830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5992970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5994230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5995540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5996740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5997960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.5999310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6000400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6001650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6002810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6003920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6005060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6006200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6007330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6008550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6009650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6010750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6012050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6013090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6014160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6015330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6016440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6017610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6018680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6019900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6020960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6022180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6023360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6024450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6025570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6026810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6028000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6029120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6030210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6031310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6032690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6033920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6034870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6035990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6037230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6038340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6039490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6041040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6042420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6043680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6044820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6045990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6047170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6048380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6049560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6050750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6051870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6053040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6054270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6055430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6056610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6057730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6058880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6060130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6061470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6062520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6063750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6064910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6066070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6067190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6068460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6069770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6070990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6072110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6073320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6074500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6075560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6076720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6077790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6079150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6080520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6081650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6082680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6083780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6084950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6086230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6087370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6088600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6089790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6090940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6092050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6093240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6094480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6095820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6096770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6098200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6099180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6100410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6101600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6102790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6103910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6105050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6106320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6107520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6108680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6109770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6111130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6112250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6113480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6114630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6115820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mixed_dtypes_linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6117010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6118270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6119450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6120610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6122100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6122890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6124230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6125270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6126510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6127710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6128900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6130200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6131310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6132510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6133790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6134980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6136090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6137250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6138510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6139750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6140990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6142170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6143300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6144510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6145630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6146870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6148000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6149450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6150450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6151780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6152840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6154160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6155360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6156460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6157670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6158780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6160050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6161200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6162590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6163400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6164650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6165660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6166910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6168080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6169250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6170460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6171680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6172680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6173830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6174950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6176200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6177330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6178460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6179530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6180730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6182060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6183330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6184560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6185730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6186870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6187990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6189200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6190400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6191700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6195700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6196080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6196430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6196740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6197200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6198440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6199660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6200660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6201820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6203050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6204440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6205250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6206450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6207640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6208790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6209870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6211190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6212380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6213550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6214820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6216110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6217160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6218360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6219620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6220780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6222050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6223220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6224440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6225620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6227020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6227900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6229260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6230460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6231600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6232730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6233860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6235120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6236330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6237510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6238700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6239880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6241060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6242180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6243380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6244550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6245710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6246820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6248020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6249260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6250350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6251610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6252810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6254850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6255210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6256390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6257670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6258880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6259990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6261120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6262370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6263540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6264760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6265970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6267020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6268160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6269350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6270520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6271640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6272960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6274120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6275750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6276510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spsolve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6277610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6278810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6280010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6281350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6282420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6284110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6284820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6285910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6287180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6288280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6289570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6290740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6291960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6293050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6294290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6295550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6296710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6297880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6299030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6300310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6301410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6302530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6303790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6304770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6306030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6307150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6308460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6309560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6310850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6312050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6313330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6314410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6315570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6316820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6317890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6319190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6320240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6321460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6322580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6323720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6324890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6326020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6327370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6328510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6329570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6330980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6331940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6333110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6334360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6335360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6336500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6337760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6338860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6340130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6341280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6342390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6343610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6345050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6345990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6347140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6348230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6349540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6350550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6351650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6352800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6353920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6355260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6356520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6357600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6358800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6359910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6361110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6362300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6363490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6364800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6365930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6367080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6368230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6369500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6370600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6371890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6373120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6374240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6375470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6376540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6377770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6378870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6380170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6381420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6382690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6383730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6385100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6386260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6387970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6389380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6390690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6391950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6393090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6394300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6395480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6396830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6398120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6399430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6400710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6401800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6403010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6404050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6405290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6406490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6407700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6409040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6410190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6411390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6412580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6413730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6414960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6416210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6417360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6418470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6419670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6420790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6422090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6423180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6424370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6425520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6426710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6427810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6429170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6430220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6431430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6432590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6433730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6439600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6440900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6442040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6443220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6444340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6445540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6446770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6453340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6454530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6455610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6456920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6458040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6459170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6460260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6461620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6462860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6463910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6465010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6466290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6467290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6468550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6469600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6470670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6471870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6472990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6474170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6475240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6476360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6477490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6478690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6479830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6481040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6482090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6483310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6484450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6485750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6486780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6487880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6489070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6490220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6491390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6492660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6493730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6494980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6496010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6497140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6498290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6499500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6500660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6501700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6502880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6504080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6505210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6506300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6507550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6508700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6509980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6510980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6512140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6513300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6520240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6521600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6523030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6524190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6525310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6526500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6527670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6528960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6530110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6531270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6532350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6533520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6534720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6535900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6537060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6538180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6539340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6540480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6541740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6542780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6543970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6545130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6546330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6547330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6548580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6549830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6551060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6552200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6553330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6554590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6555950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6557090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6558170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6559320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6560550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6561880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6563260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6564360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6565530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6566760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6567910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6569000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6570180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6571380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6572490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6573610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6574790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6576030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6577220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6578310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6579530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6580690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6581830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6582980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6584040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6585160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6586510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6587690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6589000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6590120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6591370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6592400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6593570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6594810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6595970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6597220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6598400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6599600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6600780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6602060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6603220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6604340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6605590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6606660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6607860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6609130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6610230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6611520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6612360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6613500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6614670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6615830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6616990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6618110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6619210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6620480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6621530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6622810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6624010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6625110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6626270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6627440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6628610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6629820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6630960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6632040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6633170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6634300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6635440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6636670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6637740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6638870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6640030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6641130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6642330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6643530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6644700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6645830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6646900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6648050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6649250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6650380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6651590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6652580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6653820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6654960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6656070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6657210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6658420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6659670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6660790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6661870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6662970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6664150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6665380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6666500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6667620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6668800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6669890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6671050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_sampled_addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6672160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6673380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6674640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6675650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6676880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6678080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6679310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6680320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_sum_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6681380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6682530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6683710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6684890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6686010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6687150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6688240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6689470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6690530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6691820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6692840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6693970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6695180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6696350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6697510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6698680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6699960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6701090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6702390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6703580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6704730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6705830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_scale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6707050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6708220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6709280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6710480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6711670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6713050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6714330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6715580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6716850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6717980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6719500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6720670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6721840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6723000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6724230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6725300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6726450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6727660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6728870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6730190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6731170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6732270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6733510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6734710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6735840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6737030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6738270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6739440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6740570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6741790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6743030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6744090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6745270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6746800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6747680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6748820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_rank_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6749890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6751010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6752170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6753370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6754510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6755700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6756780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6758020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6759140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6760380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6761490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6762560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6763670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6764780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6766460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6767930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6769090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6770080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6771170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6772290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6773450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6774630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6775710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6776900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6778120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6779140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6780270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6781460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6782640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6783810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multinomial_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6784880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6786030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6787240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6788480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6789720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6790800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6791980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6793110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6794380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6795440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6796570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6797750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6798940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6800160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6801280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6802570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6803940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6805220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6806380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6807450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6808550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6809840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6810960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6812080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6813310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6814440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6815640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6816700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6817890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6818960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6820110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6821230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6822350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6823570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6824780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6825930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6827070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6828260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6829350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6830640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6836090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6836520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6836930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6837290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6837780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6839250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6840720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6842390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6844140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6845570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6846860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6848370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6850020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6851190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6852630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6854130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6855720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6856990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6858320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6859600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6861150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6862010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6863100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6864240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6865460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6866860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6868040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6869320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6870400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6871610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6872730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6873820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6875020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6876130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6877250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6878420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6879510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6880760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6881890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6883070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6884230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6885400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6886790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6887680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6888960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6890060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6891430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6892480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6893720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6894870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6896200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6897450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6898460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6899580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6900850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6901970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6903170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6904440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6905500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6906710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6907850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6909200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6910260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6911510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6912620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6913730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6914840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6915960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6917180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6918220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6919360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6920540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6921750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6922880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alpha_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6923960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6925150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6926260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6927480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6928550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6929790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6930990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6932050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6933250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6934380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6935660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6936790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6938010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6939160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6940340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6941490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6942560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6943850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6945010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6946260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6947310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6948750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6949830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6951100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6952170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6953260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6954390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6955570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6956690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6957990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6959120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6960200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6961570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6962630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6964070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6965120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6966390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6967530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6968660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6969820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6971000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6972190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6973370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6974480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6975670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6976900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6978110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6979370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6980700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6981730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6982930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6984030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6985270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6986400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6987660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6988680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6989930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6990990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6992160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6993360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6994520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6995770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6996870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6998140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.6999400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7000570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7001710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7003040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7004180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7005240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_zero_point.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7006490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7007630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7008870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7010040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7011280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7012350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7013640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7014710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7016000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7017080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7018250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7019520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7020660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7021930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7023030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7024200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7025500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7026570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7027810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7028960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7030270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7031330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7032530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7033600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7034850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7036080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_max_seqlen_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7037180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7038330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7039580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7040630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7041800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7042920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7044280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7045310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7046490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7047630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7048850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7050070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7051260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7052340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7053550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7054960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7055860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7056980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7058250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7059470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7060670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7061770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7062920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7063970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7065130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7066390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7067530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7068640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7069840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7070990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7072210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7073380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7074500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7075690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7076800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7077980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7079440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7080320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7081390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7082550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7083750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7084980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7086330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7087440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7088640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7090040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7091060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7092270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7093440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7094640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7095860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7097060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7098140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7099410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7100570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7101720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7102990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7104150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7105350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7106470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7107630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7108730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7109880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qscheme_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7111350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7112240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7113530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7114690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7115880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7117110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7118520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7119600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7120800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7122030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7123280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7124530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7125720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7126870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7128130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7129390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7130530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7131790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7132810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7134100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7135220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7136400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7137620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7138740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7140000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7141260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7142370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7143660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7144780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7150390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7151300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7152110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7152940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7153800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7154590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7155330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7156040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7156790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7157530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7158260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7159050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7159950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7161080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7162320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7163320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7164460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7165580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7166900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7168270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7169600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7170850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7172340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_sum_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7173650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7175000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7176390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7177640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7178890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_nonzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7180040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7181200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7182410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7183530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7184740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7186010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7187240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7188380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7189630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_compressed_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7190810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7191930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7193090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7194240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7195630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7196730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7197950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7199330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7200560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7201500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7202710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7203780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7205130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7206290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7207430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7208560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7209810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7210890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7212100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7213280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7214600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7215930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7217170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7218330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7219490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7220730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7221840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_lstm_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7223120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7224230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7225510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7226680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7227920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7229200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7230350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7231470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7232720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7233800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7234990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7236090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7237270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7238390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7239490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7240760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7241870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7243050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7244280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7245440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7246560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7247750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7248820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7250000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7251200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7252350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7253720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7254690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7255770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7257060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7258160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7259330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7260370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7261480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7262750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7263840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7264880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7266010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7267180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7268370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7269630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7270830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_min_seqlen_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7271980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7273170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7274480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7275670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7276740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7277850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7279120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7280190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7281300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7282420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7283700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7284870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7285890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7287080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7288200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7289420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7290620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7291750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7293540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7294800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7295990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7297400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7298620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7299810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7301080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7302170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7303450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7304540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7305810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7306950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7308350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7309500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7310840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7311950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7313120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7314420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7315590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7316760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7317860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7319040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7320330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7321520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7322930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7324010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7325110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7326320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7327430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7328730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7329810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7330870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7332030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7333160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7334400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7335500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7336560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7337710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7338970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7347010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7347800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7348860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7350120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7351280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7352470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7353500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7354740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7355890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7357030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7358130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7359470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7360570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7361700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7362830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7364200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7365370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7366530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7367610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7368750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7369940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7371110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7372380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7373460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7374620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7375830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7377030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7378100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7379450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7380800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7381990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7383240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7384480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7385830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7386910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7388040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7389200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7390300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7391580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7392860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7394110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7395310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7396480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7397680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7398820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7399910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7401160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7402310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7403590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7404730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7405920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7407090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7473200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7474040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7475210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7476410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7477510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7478650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7479820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7481170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7482350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7483550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_reshape_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7484780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7485890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7487090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7488270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7489490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7490690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7491740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7492950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7494110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7495210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7496400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7497680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7498890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7500080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7501210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7502290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7503580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7504810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7505890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7507050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7508180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7509350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7510500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7511740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7512820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7514080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7515290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7516450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7517580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7518840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7519920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7521060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7522190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7523550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7524520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_maximum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7525720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7526830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7528070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7529320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7530450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7531590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7532700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7533930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7535020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7536140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7537320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7538550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7539640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7540780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7541950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7543050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7544150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7545280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_offsets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7546590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7547600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7548800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7549840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7551030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7552330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7553310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7554490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7555520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7556700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7557740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7558870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7560030Z 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-07-24T03:55:06.7561380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7562400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7563490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7564650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7565910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7566980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7568280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7569410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7570410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7571730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7572930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7573950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7575180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7576230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7581410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7581900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7582390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7585510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pinverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7586510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7587890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7593900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7594850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7601180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7602580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7604060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7610650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7611560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7619140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7620110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7621340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7626550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7628030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7634640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7635620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7637020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7642550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7643510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7649970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7651180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7657750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7658960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7660250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7667240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7675650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7676480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7677770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7683420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7685070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7690970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7692230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7694100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7699890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7700700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7702980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7709670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7711400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7717000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7718240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7720840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7726930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7727840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7734090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7735420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7742130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7743230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7744390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7749820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7750710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7756630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7758340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7764250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7765030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7766410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7772390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7773170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7779880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7781130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7787910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7788650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7789820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_floor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7797040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7797840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7805020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7805800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7813370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7814420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7815470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7821450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7822220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7829090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7830030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7831010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7839420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7844110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7845720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7846830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7853380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7854100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7860750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7861580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7868730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7870150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7871040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7877310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7878040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7885070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7886080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7887260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7892470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7893660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7901190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7901810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7909230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7909970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7911080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7916510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7918470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7924830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7925860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7926920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7933210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7934210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7943200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7944140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7950480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7951310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7952520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7958430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_sum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7959270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7960650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7967110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7968030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7970920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7976810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7978240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7979600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/choose_qparams_optimized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7985970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7987080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7993550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.7994290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8001450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8002270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8010420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8011370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8019030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8019680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8027040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8028070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8029350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8034910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8035920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8040970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8041780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8042960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8046700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8050700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8055720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8058110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8063080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8063870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8065630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8071970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8074350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8079790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8080560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8083410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8089250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8092330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8096610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8097490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8101510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8105830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8109550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8110350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8115660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8117340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8123710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsr_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8124550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8126790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8132930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8134810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8140080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8140860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8144290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8149330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8150230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8157200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8158170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8164870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8165960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8172340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8173130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8179870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8181090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8186940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8188190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8189380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8195900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8197040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8203830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8204730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8209340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8212370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8213290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8218630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8221040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8226280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8227180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8229030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8236240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8237860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8244540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8245510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8246690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8252720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8253550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8260230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8262420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8267850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8268810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8270640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8275510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8276430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8281110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8284740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8290050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8291640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8292920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8299610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8300310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8306720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8307730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8315100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8316020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8317140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8322190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8323880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8329860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8330730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8339280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8340010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8346640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8347740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8353690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8355130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8356170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8362660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8363910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8369550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8371460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8375080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8377950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8379270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8384180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8387230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8393460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8394430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8401300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8402430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8403600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8408880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8410230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8416690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8418030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8424930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8425700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8426830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8432620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8433780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8439810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8441110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8447580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8448480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8449670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8456280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8457240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8465040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8465990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8473310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8474280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8475520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8481960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8482830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8490590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8491550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8492700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8497920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8505650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8506520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8507590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8513580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8514710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8521360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8522150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8523210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8529030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8530070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8537070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8538300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_sum_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8542380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8545930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8546790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8551310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8554250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8558710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8559590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8563460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8568520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8572220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8575990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8576870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8581810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8584930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8589350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8590230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8594130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8598330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8602610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8830280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8830720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8831100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8831490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8831830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8832270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8833500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8834550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8835740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8836880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8838120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8839140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8840340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8841450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8842560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8843710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8844920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8846040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8847120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8848350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8849460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8850560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8851730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8852910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8854080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8855160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigvals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8856260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qscheme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8857420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8858480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8859730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8860870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8861980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8863280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8864410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8865560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8866640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_sampled_addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8867700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8868980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8870130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8871330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8872630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8873960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8875120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_max_seqlen_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8876390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8877660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8878940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8880210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8881410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8882620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8883780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8884950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8886010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8887180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8888340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8889460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8890610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8891760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8892900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8894020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8895170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8896340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8897490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8898740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8899830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8900910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8902150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8903260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8904320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8905440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8906540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8909090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8912820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8913660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8914770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8916000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8917130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8918290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8919480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8920640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_sym_constrain_range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8921920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8923060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8924220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8928990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8929850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8930920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8937790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8938820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8939980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8945600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8946980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8954160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8955290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8963260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8964120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8965250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8971840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8972740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8974060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8979440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8980420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8986930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8988030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8995560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.8996430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9002880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9003900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9011170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9011870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9018460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9019350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9020520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9026570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9028030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9034270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9035090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9036380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9044250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9045130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9052140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9052980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_min_seqlen.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9059700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9060600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9061780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9067670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9068940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9075470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9076270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9077510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9083500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nested_to_padded_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9084620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9090480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9091640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9097660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9098860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9100070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9107500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9108500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9116240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9117170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9118260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9123240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9124610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9131480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_lengths.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9132280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9133410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9139470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9140400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9146610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9148290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9154180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9155060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9156550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9162760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9163740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9170230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9171650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9178620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9180520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9186540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9187380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9194660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9195540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9200910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9202010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9203290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9209120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9210160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9216720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9218170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9224340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9225300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9226510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9232000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9233420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9239590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9241040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9247560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9248260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9250050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9256130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9257190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9264140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9265030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9271820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9272670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9273900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9279580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9280750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9287050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9288070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9289370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9296760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9297450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9304620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9305360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9312440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9313310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9314480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9320050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9320820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9328330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9329190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9330200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9335560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9338060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9345530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9346440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9353630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9354410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9361060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9361950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9368250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9369170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9370390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9376180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9377230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9382660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9384800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9392860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9393810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9400140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9401440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9407780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9408710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9413620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9416540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9417640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9424600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9425380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9432700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9433440Z 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-07-24T03:55:06.9434680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9440260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9441130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9447490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9448620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9449840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9457280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9458240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9465000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9465870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9473770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9474750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9475990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9481620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9482730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9489870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9490650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9491880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9497060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9505970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9507140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9507900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9513560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9514340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9521010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapaxes_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9522050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9529490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9530200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9531320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9537780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9539140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9546920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9547630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_blob.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9548830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9555030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9556020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9557200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9562750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9563900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9570230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9571400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9577510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9578390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9579610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9586780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9587720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9592500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9596160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9599820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9605340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9609630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9613920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9615310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9619110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9623520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9624440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9628040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9632600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9635370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9636310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9641470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9643870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9648890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9650170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9656640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9657850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9665160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9666220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9673140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9674050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9680930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9682110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9683230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9690720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9691690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9698740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9699390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9700650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9705300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9707320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9713010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9713780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9715770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9722490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_numel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9724000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9730000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9730800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9733120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9739280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9740120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9746380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9748820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9754470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9755260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9757090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9762620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9763650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9771540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9772360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9778360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9779380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9780450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9785770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9786910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9793990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9794760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9801580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9802460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9803600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9807710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9810950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9819470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9820500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9826470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9827280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9833660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9841440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9842150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9843510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9848930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9850200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9856530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9857890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9864340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9865300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9866240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9871760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9873290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9879520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9880400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9886880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9889260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9894840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9895790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9897640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9902980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9903860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9906650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9912850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9913840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9920280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9921890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9929170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9930090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9931260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9936680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9938070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9939320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9946640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9947510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9954460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9955340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9962310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9963290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9964420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9970090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9971610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9977990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9979000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9980410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9985250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9986870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9993120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:06.9994390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0001660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0002500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0009370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0010350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0016790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0018130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0022860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0025150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0031950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0033800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0038960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0040830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0044220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0047900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0049290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0055170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0056590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0063120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0064650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0071530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0072330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0073440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0079520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0080340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0087300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0088710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0094990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0095940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0096880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0102470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0103220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0110610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0111890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0118430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0119420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0120550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0125920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0126770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0133400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0134680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0141430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0142310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0143420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0149950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0151100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0157690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0158780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0165080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0167300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0172560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0173390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0180970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0181760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0189500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0190290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0191480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0197600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0198400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0205880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0206510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0207650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0210760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0214630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0220130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0222650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0223500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0229800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0230740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0235140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0238880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0245320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0247850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0253050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0253830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0255560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0262580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0263840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0270430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0271430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0272510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0280130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0281270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0287500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0288930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0295680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0296680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0297800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0303280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0303920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0310760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0312070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0319160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0319900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0321100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0327000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0327990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0335920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0336750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0343430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0344520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0351450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0352230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0353410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0359530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0360470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0367320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0368480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0374700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0375760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0377000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0382690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0383610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0390960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0391800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0398960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0400000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0401150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0407360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0408150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0414970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0416050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0417300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0422870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0423950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0430570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0431570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0432850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0440770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0441710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0446030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0449490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0453730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0454550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0462810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0463520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0470730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0472130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0478880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0479760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0481090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0487220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0488060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0495480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0496260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0503410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0504750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0510670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0513240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0514020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0519650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0520940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0527580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ger.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0528510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0529930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0535320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0536870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0542340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0544720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0549990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0551450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0553170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0558920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0559840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0566970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0568250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0575080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0575980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0577220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0582560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0583820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0590240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0591110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0592560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0600040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0600910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0607170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0608250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0615010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0615740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanquantile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0617160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0622330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0623220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0630240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0631650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0638720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0639630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0640720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0646130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0647220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0651790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0655460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0656290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0660750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0662050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0668980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0677010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0678050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0684130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0684960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0687030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0693250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0694190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0701380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0702320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0709320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0710150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0711250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0717120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0718610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0725500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0726190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0727270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0733610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0734340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0741210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0742010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0749210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0750100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0751210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0757140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0759660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0764950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0766190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0767490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0772970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0773740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0781070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0781890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/output_nr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0788760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0789600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0790790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0795970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0797900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0803710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0804660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0806800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0812690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0813480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0819650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0821460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0827380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0828140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0829550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0836570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0844320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0845430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0850760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0852600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0853650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0860790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0861500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0868380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0869320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0876390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0877100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0878270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0884180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0885360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0892270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0893760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0895040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0900220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0901290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0908020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0909150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0910590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0915150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0917520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0923270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0924220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0930280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0931600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0938800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0939600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0940750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0946860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0947730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0954920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0955790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0956980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0962310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0963860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0969690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0970890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0972640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0979680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0980680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0987490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0988670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0995770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.0996340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1003250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1004300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1010730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1011610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1012800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1019850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1020770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1028290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vdot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1029240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grouped_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1036000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1036840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1038140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1041490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1045540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1047380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1048640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1054260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1056110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1063860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1064740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1071310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1072040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1079460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1080230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1081510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1087160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1088280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1095060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1095780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1096890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1103890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1104990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1111780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1112950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1119650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1120740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1121940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1127850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1128790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1135950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1137180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1138200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1143810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1144970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1151600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1152410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1153570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1159160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1160260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1166950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1168300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1176210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1176960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1182230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1183720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1191150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1191950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1199210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1200440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1201310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1206840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1208140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1215100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1215930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1217330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1222960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1224130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1230860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1236660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1237260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1240990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1242110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1246040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1249830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1250750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1256060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1257710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1263320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1264090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1267300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1272450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1275260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1280170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1281130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1284770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1289070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1292090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1293090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1298840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1300000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1511290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1512250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1513540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1534480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1535440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1536650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1537730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/corrcoef_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1538880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1540130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1541310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1542400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1543520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1544650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1545790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1546990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1548170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1549250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1550380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1551690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1552760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1553870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1554970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_ragged_idx_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1556260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1557410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1558450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1559570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1560650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hspmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1561880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1563040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1564220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1565320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1566460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1567600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1568830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1569930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1571070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1572330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1573370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1574610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1575760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1576870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1578050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1579190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1580280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1581410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1582530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1583650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1584930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1585950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1587110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1588200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1589330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1590460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1591510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1592670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1593800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1594950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1596130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1597310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1598360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1599530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1600690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1601830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1602950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1604150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1605280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1606390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1607590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1608620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1609710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimI_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1610890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1612000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1613170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1614320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1615520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1616630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1617930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1619160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1620260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1621380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1622620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1623700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1625080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1626130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1627220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1628510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1629580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1816090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1816960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1818200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1819580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1820900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1822050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1823190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1824430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1825690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1827010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1827960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1829100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1830290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1831540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1832690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1833800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1835060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1836170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1837400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1838490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.1839770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2322900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2323810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2324540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2325230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2325990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2326840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2327700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2328470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2329210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2329970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2330840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2331650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2332400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2333100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2333900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2334680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2335390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hamming_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2336180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2337020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2337870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2338630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2339430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2340370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2341170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2341990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2342890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2343640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2344420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2345250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2346100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2346950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2347670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2348470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2349280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2349980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2350830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2351690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2352540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2353410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2354230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2354960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2355710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2356430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2357130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2358020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2358790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2359680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2360560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2361360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2362150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2362870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2363590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2364310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2365190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2366110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2367060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2367900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2368820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2369730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2370480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2371200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2371940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2372680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2373400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2374190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2374980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2375780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2376590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2377410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2378290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2379160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2379910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2380730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2381680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2382610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2383350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2384080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frobenius_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2384850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2385650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2386330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2387060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2387720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2388550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2389460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2390320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2391160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2391940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2392880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2393670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2394370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2395110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2395880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2396650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2397530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2398350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2399100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2399860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2400610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2401290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2402050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2402960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2403850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2404630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2405450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2406210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2406940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2407690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2408460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2409390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2410230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2411040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2411850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2412740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2413680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2414590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2415410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2416150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2416880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2417610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2418430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2419170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2420040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2420940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2421820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2422620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2423310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2423980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2424630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2425290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2426070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2426920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2427660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2428430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2429180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2429950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2430750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2431600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2432390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2433140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2433850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2434610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2435420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2436240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2437170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2438110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2439060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2439870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2440630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2441410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2442170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2442930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2443720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2444420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2445170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2445930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2446690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2447440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2448210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2448970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2449730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2450440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2451270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_ambiguous_defaults.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2452110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2452900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2453750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2454650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2455500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2456370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2457210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2457950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2458850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2459720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2460560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2461240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimV.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2461960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2462760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2463600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2464410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2465130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2465930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2466820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retain_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2467560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2468390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2469240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2470040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int8pack_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2470950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2476060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2476970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2477870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2478740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2479570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2480320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2481020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2481850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2482680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2483430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2484290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2485150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2485930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2486700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2487470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2488200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2488870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2489750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2490680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2491450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ldexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2492320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2493400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2494280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2494990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2495660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2496440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2497450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2498450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2499450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2500210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2500970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2501680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2502360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2503090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2503810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2504560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2505360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2506110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2506920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csr_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2507790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2508660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2509580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2510410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2511220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2511950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2515700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2516640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2517830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2523400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2525300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2531050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2532210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2533950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2540000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2541230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2542700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2549520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2550940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bartlett_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2557450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2558350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2559590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2566390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_chunk.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2567490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2574620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2575590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2583070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2584070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2585220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2590680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2592670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2614760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2618900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2620660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2637970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2638800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2640270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2641500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2642760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2643800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2644940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2646160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2647390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2648450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2649590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2650810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2651950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2653070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2654320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2655800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2656970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2662010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2663410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2670240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2675890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2676780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2683330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2684190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2690580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2691480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2692650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2699580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2700530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2707080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2707960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2714650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2715850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2716680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Char_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2722930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2723730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2731000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2731890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2738150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2738960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2740370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2745250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2746870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2753070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2754050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2760810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2762100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2763350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2770600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2771670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2778630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hstack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2779670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2787390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2788200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2789440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2794940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2795770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2796880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2802440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2804340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_svd_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2807250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2810940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_axis.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2811980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2813160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2819410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2820210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2826570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2828570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2834220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2837240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2843800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2844700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2851550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2852610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_div_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2859200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2860270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2861140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2866310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2867820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2874380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2875260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2876420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2882540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2884080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2890400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2891800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2893040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2900220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2901090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2908210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2909230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2910260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2915670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2917130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2924010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2924880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2931710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2932790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2933890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2940360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2941340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2948000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_int_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2948940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2950850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2957020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2957940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2964020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2965370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2966750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2973370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2974340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2981250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2982120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2989580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2990480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2991400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.2996780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3001440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3004910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3005850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3007030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3010430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3014350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3019370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spsolve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3022380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3023220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3029480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3031390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3034590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3038740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3039560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3043610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3048090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3052540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3055570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3056290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3062240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3064180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3069830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3071110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3073070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3079030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3079980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/qscheme_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3086840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3087590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3093880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3095280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3096570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3104020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3104840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3111660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3112460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3119150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3120090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3121280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3126010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3128100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3133550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3134460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3137390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3143440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3144290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3151140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3151920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3158750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3159780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3160820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3166190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3167510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3173930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3175970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3183400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3184260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3191130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3191960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3200120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3201110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3202350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3208540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimI_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3209260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3216160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3217140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3218050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3223360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3224600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3232020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3232810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3233900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3239890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3240820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3248570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3249420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3255800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3256750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3257880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3263550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3264540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3271090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3272310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3273380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3280420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3281310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3288150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3289070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3295930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3296680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftfreq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3297810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3303590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3308860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3310930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3312260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3313990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3319390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3320440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3324120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3329370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vsplit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3333140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3337450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3341850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3345750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3349870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3350700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3354890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3358710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3363430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_jvp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3364360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3368830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3372280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3376100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3377270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3381730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3384770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3388400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3389270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3392510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3396620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3401430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3405230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3408730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3409770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3414880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3417900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3422500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3423250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_bag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3426720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3431360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3435080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3438900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3439680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3444460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3447570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3452590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3453470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3460960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3461920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3469490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3470250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3471520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3476760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3479070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3484600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3485660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3486780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3492960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3493830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3501180Z 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-07-24T03:55:07.3509280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3510150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3511220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3516640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3518110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3524720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3525510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3526670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3532130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3533140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3539800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3541290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3545290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3548140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3550300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3553590Z 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-07-24T03:55:07.3557360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3563570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3564960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3571860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3572680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3573890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3579960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3580760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3587960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3588860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3596320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3597190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3598340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3604080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3605500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3611700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3612570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3613570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3620000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3620850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3627710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3628670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3629800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3635430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3637770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3643510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3644430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3645970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3653190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3654030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3660070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3661890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3667930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3670420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3676650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_atan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3677500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3684060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3685360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3692490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3693140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3694290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3699240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3700500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3708430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3709390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3710390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3715740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3716990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3723700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3726120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3731500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3732830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3734080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3738820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3740030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3744760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3748940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3751800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3752740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3758660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3760510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3766400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3767530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3774840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3775790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3777040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3782160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3784810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3789530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3790740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3792100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3798570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3799570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3807140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3807820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3814040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3815280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3816560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3823710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3824500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3830760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3838730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3839550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3840740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3846310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3847080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3853800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3854930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3862320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3863280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3864460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3869430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3870840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3875220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3877850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3878880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3884710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3886190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3893140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3893970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3900440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3901770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3907790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3909080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3910550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3915820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3917580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3924410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3925450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3932820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3933730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3935030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3940910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3941800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cdist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3948500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3949380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3950450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3956040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3957520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3963810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3965310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3966930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3973090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3973890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3981030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3981990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3988870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3990090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3991290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.3996950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4006620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4007190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4007770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4012430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4014170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4020200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4021450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4023320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4029490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4030610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4036630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4038470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4044370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4045520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4047120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4053100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4054060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4060730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4062720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4068690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4069840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4071020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4076300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4078260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4084420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4085220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4086460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4092800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4093610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4100200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4101380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4107660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4108790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4109960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4117180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4118220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4124480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4125430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4133170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4134100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4135300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4141350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4142240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4149100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rename.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4150120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4151420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4157390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4158260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4164560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4166150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4172370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4173400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4177510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4182760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4186280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4187420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4192560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4195160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4200070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4200950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4205090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4206750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4212250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4213630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4219730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4221170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4227130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4228490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4229670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4236610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4237560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4244110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4245410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4251950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4252930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4254050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4259730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4260580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4267370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4268660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4270030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4277190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4278080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4284950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4285850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4292560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4293550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4294690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4300000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4302470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4307900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4308770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4310390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4316110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4317080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4323130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4326020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4332740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4334110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4339460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4340210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4345170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4348470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_packed_sequence_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4352520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4353400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4358130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4361110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4366980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4367690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4370690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4375990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4376780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4383530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4384430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4391090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4391950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4398980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4400210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4402070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4407330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4408570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4414910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4416210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4417370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4422560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4424040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4431220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4431810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4433070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4439470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4440740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4448030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4449300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4456410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4457200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4458510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4462620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4466500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4471020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_layer_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4472260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4474380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4478490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4479330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4484660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4488260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4492350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_scalar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4493170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4497730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/where.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4506080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4507030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4513640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4515450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4521300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4522130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4523570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4528720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4529680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4535530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4536930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4543020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4544530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4550130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4551540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4552670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_static_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4559950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_initialize_state.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4560750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4567450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4568850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4574970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4575830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4577070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4583130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4584560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4590680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4592230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4593430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4600690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4601540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4608360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4610680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4616460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4617300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4618390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4624500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4625430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4632470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4633410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4634530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4640750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4641590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4648220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4649330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4650470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4656290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sdp_choice_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4657100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4664160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4672020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4672860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4673990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4680270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4680960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4687760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4688780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4695720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4696610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4697690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4703210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4704170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4711470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4712430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4718770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4719790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4721000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4726670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4729100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4735480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4736380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_tensor_metadata_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4737610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4742800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4744100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4750350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4752220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4758750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chalf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4759920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4761170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4766800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4767550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4774990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4775910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4777860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4782010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4782800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4787800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4791540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dim_arange_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4795850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4796630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4800500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4804660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4809570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4812660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4813610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4818710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4821970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4826160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4827120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4830570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4838680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4842970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4843760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4848010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4851590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4855430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4860650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4861250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4864360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4868710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4869510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4873730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4878150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4882610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4885700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4886570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4892070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4893290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4899470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4900210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4907380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4908250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4915090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4915810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4916980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4922580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4923830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4931330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4932250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4938470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4939750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4940990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4946710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4947570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4954720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4955660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4963060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_inverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4964000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4965260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4971020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4972870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4977230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4978930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4980240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4986930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4987730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4994370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.4995530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5001980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5003030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5010490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5011650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5018510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5019410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5020710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5026060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5027340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5034290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5035590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5036570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5043860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5044760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5051400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5052750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5059370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5060380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5061590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5067080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5068660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5075220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5075960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5077140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5082860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5083990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5090580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5091850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5099490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5100320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5101380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5107340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5108720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5115410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5116290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5117360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5123910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_slogdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5124830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5131820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5132620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5133650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5139210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5140430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5147090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5148270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5155590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5156670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5157920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5163570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5164590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5171110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5172490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5175200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5179410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5180450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5184660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5188220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5192570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5193900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5198150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5202060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5206250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5207190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5208400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5215690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5223410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5224360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hspmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5225680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5231170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5232080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5239830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5249230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5250400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5256650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5257690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5258890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5265270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5266120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5267190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5272820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5274170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5280680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5281520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5282690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_grid_sampler_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5289340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5290130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5297310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5297970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5304920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5305780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5306890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5313400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_diagonal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5314290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_digamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5321100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5323040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5328530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5329270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5330580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5337540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5344380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5345770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5351510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5352600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5353860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5359740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5360720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5367020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5369810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5370670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5376610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5377470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5384100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5385150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5391260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5392030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5399490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5400410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5401580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5407100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimV_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5409070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5414970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5415610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5417350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5422490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5423380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5430560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5431390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5438650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5439310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5440590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5443170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5448100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5455810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kron.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5456870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5461630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5463690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_check_errors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5469840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triplet_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5470760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5477820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5478500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5485340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5486230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5487270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5703050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5704160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5705530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5706830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5708140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5709280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5710380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5711510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5712640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5713790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_stride_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5714870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5716100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5717180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5718320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5719480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5720770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5721810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5722960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5724190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5725360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5726460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5727560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5728910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5729910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5731000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5732140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5733250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_ff.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5734480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5735520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5736780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5737900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5739030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5740220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5741450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5742500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5743630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/roll_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5744820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5745900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5747080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5748190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5749350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5750560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5751660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transform_bias_rescale_qkv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5753000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5753980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5755130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5756270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5757480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5758550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5759800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5760850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5761980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5763120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5764260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_jagged_dummy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5765360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/record_stream_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5766520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5767550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5768700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5769910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5771000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5772190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5773410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5774580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5775810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5777080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5778200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5779240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_circular_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5780420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5781470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5782740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5783920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5784920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5786030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5787240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5788300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_psi.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5789460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5790590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5791740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5792890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5794230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_multigammaln_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5795250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5796400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5797500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5798690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5799760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/type_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5800930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5803110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5805120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5810750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5811930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5813120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5820400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5821100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5828010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5828990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5835070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hann_window_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5836080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5843660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5844430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5851070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5852380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5853520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5859360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5861580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5867480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5868730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5870070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_channel_shuffle_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5876820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_equal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5877620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5885110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5885910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5892540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5893380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5894730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5900600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5901470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5908480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5909280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5910330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5916110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5916850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5920960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5925860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5928690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5933900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5934660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5938770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5942580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5945990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5947070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5951930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5955600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5959970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_sampled_addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5961130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5963750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5969100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5969980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5977360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5978780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5984920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5985830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5987050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5992980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.5993880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6000530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6007810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6009000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6010290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6016340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6017220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6024030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6025070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6031610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6032500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6033500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6037310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6040640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_gather_sparse_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6044990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6048140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6053180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6054240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6057610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6062560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6065610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6066460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6072820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6073590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6081040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6081910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6088570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6089470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6090610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6096390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6098740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6104310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6105590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6106820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_round.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6113890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6114970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6121660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/margin_ranking_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6122430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6129580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6130360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6131690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6137030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6138010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6144450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6145810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6146880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/maximum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6152360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6153090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6159920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6161740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6168260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6170750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6176750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6177680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6185070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6186160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6192850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6193880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6195010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6200670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_signed_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6201730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6208440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6209780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6211230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6216750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6217970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6224180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6225790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6232020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/round_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6233120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6234290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6239940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6241110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6247720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6249330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6256020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6257030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6258100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6261960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6264750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6269950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6270970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6274570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6279610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6282420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6283940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6289220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6290310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6297440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6298340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6305500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6306440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6307400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_sparse_mm_search.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6313460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6314350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6321720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6322780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6323950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6329460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6337200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6338910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6340190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6347060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6347980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6354380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6355280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6362020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6363280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6364180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6369340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6370720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6377260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6379020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6380930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6387270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6388190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6394780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6395880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6402990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6404100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6405070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argsort_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6410900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/column_stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6412640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6418690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6419740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6420810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6427110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6427970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6430590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6436290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6437470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6445070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6446100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6452650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6453790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6454900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6458350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6461970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6466370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_exp_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6467670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6471540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6475880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6479250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6479960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conv_depthwise2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6485310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6486740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6493190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6494180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6502620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6510270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6511160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6512320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6518210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6519350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6520570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6526010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6527120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6533390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6534550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6540860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6542090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6543290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6550280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6551300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6557770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfftfreq_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6558550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6565920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6566760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6567960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6573930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6574850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6581720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6583310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6584890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6589970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6591050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_expm1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6597320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fftshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6599000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6600520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6607600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6608580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6615990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6617300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6623090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Short_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6624160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linspace_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6625260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6631390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6632110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6639550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6640650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6641730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6649690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6650680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6657090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6657800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6658990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6663790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6665850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6673230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6674190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6681070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6681790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6693770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6694450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6694790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hypot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6697370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6698430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6705070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6705780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6706850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6713090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6713960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6720900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6722410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6723610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6730060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6731000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6737820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6740870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6745340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6746530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6747380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimV_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6753990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6754810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mvlgamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6761730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6762780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6763650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6769330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_normal_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6770810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6776930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6778370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6779540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6786520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6787400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6794070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6795780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6802240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6803370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6804510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6809950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6810840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6817450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6818440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6825830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_rowwise_prune_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6826750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6827980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6833260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6840620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6841970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6848650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6849310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6850470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6855630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6856530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6862890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asinh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6864360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6870930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6871710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6872850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6879790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6880930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6887220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6888470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6894630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6895430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6896600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6901800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6903330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6909640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6911080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6917490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6918380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6919480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6927110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6928010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6934930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_constrain_range_for_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6935960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6942700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isinf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6943640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6944780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6950440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6952600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6958030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6958820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6961060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6966700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6967640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6969590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6976200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6979050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6984320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6985170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6987570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6992670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6995000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.6996320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7002750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7010290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7011230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7018230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7019110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7020120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7026070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7026940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logspace_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7033900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7035350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7042090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7043220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7044290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7047980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/or_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7051000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7056130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7057390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7060420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7066150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7069520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7074050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7075100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7078280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7081930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7085820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/item_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7086760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7091130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7094520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7099180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7100200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7107410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7109090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7115070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7115920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7117060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7123080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7124170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7127530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7132900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7135780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7140570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7141480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7144580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaln.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7148980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7150030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fill_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7154440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7158710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7162980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7166460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7172130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7173940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7179840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7180660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7182910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7188970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7190650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7196540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7197540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7199020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7206080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arccos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7207110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7213800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7214550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_frac_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7216120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_strided_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7223040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7223900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_mask.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7230930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7231800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7238840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7239650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7240760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7244840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7246900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7248040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7254780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adjoint_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7255640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7257900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7263810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7264730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7267680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7272800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7273850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7277780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7282890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7286530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7290640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7291660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7293800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7299510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_as.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7300370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7307290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7308010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7315830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7316640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7317980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7323190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7325060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7326270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7332810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7340260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7341160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7347480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7348710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7355760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7356700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7358040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7363100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7364220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7371330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7372260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7373880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7379010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7379850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7386560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7387430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_select_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7394450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7395360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7402280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7403310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7404490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7409460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7410710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7417170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7418380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pad_enum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7419610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inverse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7426560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_safe_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7427580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7435690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7436620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7440000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7442430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7443530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7448440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7449910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7456420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7457400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7464440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7465650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7471750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7473190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7474290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7479530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pack_padded_sequence_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7480750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7487490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7488500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7489720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7496190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7504200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7505150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7511080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7512120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7513100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7520750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7521620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7529540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rand_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7530450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7537680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapezoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7538570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7539720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7545810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_jagged_dummy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7546580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7547710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unpack_dual_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7554140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7555030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7563020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7563780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7564930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7571560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7572440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7579370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7580300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7581450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7589000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7589780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bucketize_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7596690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7597640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7598780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7603490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7604860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7606240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7613780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7614560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7621700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7622830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7629560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7630730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7631740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eye_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7636950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7638600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7642020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7642950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7648130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7649580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7655230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7656670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7662450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7664620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7670210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7671080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7673220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7679370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7685740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7687100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/im2col_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7692740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7694140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7695370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7702250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7703050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7709950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7711380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7717440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7718520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/promote_types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7719690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7726450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7727450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7734650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7735370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7742310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7743130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7744300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7750170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7751740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7757750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/negative_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7758600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7759770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7765960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7766820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7773300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7775020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7781330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7782190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7783510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7789820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7790740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7797980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7798830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7806170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7807140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7808290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7814060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_sparse_csr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7814820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/median_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7822060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7822970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7824010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7829040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7830710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7837210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7840310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7846520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7848610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7853890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7854870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7856760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7862490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7863370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7870450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7871400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7878390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7879210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7880250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7883260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/eq_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7887610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/put_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7896510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hinge_embedding_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7900890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7901810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7904130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7908840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7912490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vstack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7916770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7917710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7920920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7925210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7928810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7929650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7935020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/topk_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7937850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7943030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7943910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_values_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7947210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7952790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7956280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7960080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7960910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7965340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7968430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7973280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7974130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7978330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7981630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7985470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7986560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7991870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7994010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.7999010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8004460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8008540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8013130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8015640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8016880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8022360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8025200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8030490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammainc_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8031240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8033260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8039490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8041530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8042710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8047480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8050660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8056110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8058140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8063710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8064580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8067570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8072590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8073530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8081260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8082170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_debug_has_internal_overlap_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8089550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8090560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8091650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8093300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8099150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8106700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8107480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8110480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8322720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8323810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8324900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/int_repr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8326380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8327850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8329190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8330550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8331880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8333320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8334730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8336090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8337500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8338750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8340140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8341470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8342660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/coalesce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8344070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8345480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8346710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8348400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8349280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8350350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8351580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8352740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8353820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8355010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8356080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8357370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8358390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/real_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8359570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8360870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8361860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8363070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8364230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8365340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8366540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8460840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8461800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8462990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8464100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8465240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8466810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8467990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8469190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8470430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8471520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8472620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8473850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8474930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8476220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8477410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8478590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8479660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8480750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8481970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8483150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_affine_quantized_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8484260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8485350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8486780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8488040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_compatible_shallow_copy_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8489220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8490490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8491670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8492730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8493910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8495160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8496180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8497390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8498480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8499660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8500720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8501950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8503140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8504370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8505610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8506800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Int_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8508010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8509180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8510380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8511460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8512620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_with_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8513720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8514790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8515890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8517210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8518460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8519530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8520730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_ones_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8521730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8522980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8524120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8525430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8526500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8527660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8528990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8530060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8531320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8532370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8533650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8534760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8535910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_scales_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8537160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8538130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8539290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8540490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8541620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8542830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8543920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8545110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8546250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8547560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8548670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8550000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8551100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8552250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8553440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8554690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8555880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ihfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8557170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8558280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8559420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8560550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8561800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8564190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8569010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8572850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8573710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8578560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8581540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8586070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mps_convolution_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8586980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8590860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8595350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8596320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8600070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8604450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8608780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8612060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8612920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8618520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8620920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8625640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8631230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cauchy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8631730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8635110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_trunc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8638170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8642410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8643430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8647550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8651300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_weights.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8655840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8656700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mul_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8660520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8664930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8672840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8673790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8678300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8681490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_and_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8685860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8686660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8690700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8695080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8699440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/normal_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8702750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8703610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8708420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8710680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8715710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8716580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8723290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8724770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8727840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8732940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8737350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8741760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8746010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8749220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8750150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8755750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8758090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8763410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8764470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8767140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8772050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8773040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8780040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8787710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8789400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8796430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8797280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8804550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8805330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8812450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8813420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8814450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nan_to_num.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8820320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_zero_point_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8821240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8828760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8829710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_and_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8836450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8837650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8843980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8845120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lerp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8846240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8853780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8854550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8860800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8862280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8868810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8869570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8870780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8872890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flatten_dense_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8877100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8882920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8884210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8890580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8891310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8893320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8899910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8900880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8908090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8909220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8915790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8916760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8917960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8923610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8926040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8931430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8932490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8933490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8935220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/baddbmm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8945050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8948090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8953170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8953970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8957600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8962810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8966360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8970810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8971780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8975290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8978950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8983390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8984360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8988060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8992580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8996570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.8997520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9001660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9005370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9006170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9011540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9014430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9018800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9019610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9023800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9028190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9031920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9035660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9036530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_diagonal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9041780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9044320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9049550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9050430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9057470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9058860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chain_matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9065090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9066020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9067180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9073020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9073950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9080780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9081510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnz_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9088430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cummaxmin_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9089190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_rfft2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9090320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9096560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9097490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cartesian_prod_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9104280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_attention_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9105590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9106750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9113580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9114510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9121270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_real_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9122220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9129510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9130220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9131450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9137090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9139150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9140380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9147260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9153900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9154810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9161250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9162180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9163320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9170690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9178250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9179120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9185820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9186560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/istft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9187690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9191930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9197140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9199680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9200550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9208160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/searchsorted_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9215660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9216540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erfc_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9223190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9223920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9231400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9232300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9239080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9239990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9241140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9247660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9248640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9256200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9257270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9258620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/erf_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9264570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_as_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9265360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9271880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9272730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9273840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mT.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9280180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9281110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_dense_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9287220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9288720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9289870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9297030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/range_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9297970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9304900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9306180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9312670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9313610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9314840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9320340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9321790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9328810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9329620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9336700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9337920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9344150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9345370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9346270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9350650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9353870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/can_cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9361290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9366800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atanh_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9367720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9370360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9376430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9379150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9381800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9383650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9388810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9389870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9396340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_bsc_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9397570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i0e_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9403950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9405010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9406430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9413330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9414070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ceil_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9421210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9421950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9429770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9430610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9431790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9438230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9438990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9445970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9446650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9447700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9453930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9454720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9461650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9462470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu6_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9463580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9469280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9470400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9477700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_hfft2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9478370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rad2deg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9485740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9486560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9487810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9493790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9494870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9501380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9503040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9509840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_tanh_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9510680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9518320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9519320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sigmoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9526170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9526970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9528220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bilinear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9534240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rms_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9535110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9539460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9542270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9543110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9547840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9550980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9556050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9556740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9560030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9561200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9577740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9578660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9579780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9585610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9586450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9587530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9593580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9594590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9600990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9602450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9603880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9608430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nansum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9609970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9616220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9617640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9624290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9625240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9626320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_except_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9633080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft2_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9633890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9640740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9641830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9649130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9650100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log1p_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9651310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9657400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9658190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9664860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9666410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9672530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9673860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9680460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9681770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9682960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9690470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9691380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9698270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9699140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9706920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clip_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9707720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9708790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_solve_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9714930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9715740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_mkldnn_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9722260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9723110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9724230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9729660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9731000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_overrideable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9737760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9738500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9739770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9747080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9747910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/i0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9755050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9755910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/requires_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9762980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9763690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9764840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9770920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9771830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9775770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_xor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9776690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlogy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9784950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9788670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9793100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9794050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9798040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_update_scale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9801940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expm1_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9805590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9806540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9810820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9814540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9819520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9822150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9822920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_fp16_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9829000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9829750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_power_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9837790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9844550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9845440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9846570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lstm_mps_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9852240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9853790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9860200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9861700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9868150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9868940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9870020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9875540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9877240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9883210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9884660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9890660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9892110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9893380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9899940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9900690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_legendre_polynomial_p_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9908080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9908970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9910150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9915690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_reciprocal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9917180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9923930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_inference_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9924690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9926130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9932670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/abs_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9933730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9940350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9941760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9947690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9949070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9950210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9955180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9956610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9963050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9964790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9969660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_group_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9972080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9972760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9978450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9980230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reshape_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9987180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9987970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9992650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_serialization_subcmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:07.9996520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0006710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0007580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0014230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0014980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0016190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0022760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softmax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0023680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0030710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0031800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0039040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0039780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/vander_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0041060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0042160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0047280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0050990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0055280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matrix_H_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0058410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_resize_output.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0059390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0065050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0067310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0072090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_polygamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0073450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0079670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0081210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0087510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0088870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0089930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/smm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0096280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0097080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_addmm_activation.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0104310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ormqr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0105290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0112030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0112770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0113930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_spdiags_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0119990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/float_power_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0121330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0126950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0128230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_pow_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0129560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0135800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0136670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0143430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0144240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0151580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0152200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0153280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0159060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0160370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0166600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0175160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_as_complex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0176260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0177090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0182870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0184250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0190110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0191660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0192730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0199960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_i1e_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0200750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0204140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0209090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prelu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0216680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_along_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0217540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0224120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0225580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0232420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unsafe_index_put_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0233200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0234340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0240240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0241060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0248440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0249260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_det_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0250470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0255890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_forward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0257320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0264410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0265190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0266460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0273650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cdist_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0274440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multi_margin_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0281120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0282080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/group_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0283360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfcx_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0290730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_minimum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0291760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0298740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0299590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0305890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0307000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0308200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_ragged_idx.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0314010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0315390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0322150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0323070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eigvalsh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0324200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0329900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0337450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dsplit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0338620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0339830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0347240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igammac.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0348130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0354630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0355620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0362190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_min_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0363170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0364280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0371140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/celu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0372210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0375830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0378510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0379990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0385590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0387070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0393210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_chunk_cat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0394630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0401120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0401950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0403100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0408900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0410140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0416960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0418290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0421190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_fill_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0425600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_max_pool3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0430390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0434960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arange_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0439430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nnpack_spatial_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0553710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0554560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_depthwise3d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.0555740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4219490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4220490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4221420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4222470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_impl_index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4223830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4225030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4226060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sub_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4227200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sub_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4228430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_semi_structured_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4229660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4230860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4232610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/signbit_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4233380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4234430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_neg_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4235690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/numpy_T_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4236940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4238180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4239530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4241100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4242240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_floating_point_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4243500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4244790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4245920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_strides.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4247070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4248410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4249520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4250810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4252030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4253130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4254260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4255380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4256570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_flash_attention_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4257760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4258880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4259930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/chunk_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4261060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4262320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4263380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nextafter_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4265110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4267420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4268540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4269750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_prod.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4270970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cholesky_solve_helper_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4272020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4273090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/alias_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4274360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4276270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4277660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isclose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4284430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4285740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4287110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4301150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4303040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4310210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4317360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4318690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_string_default_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4324830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_logcumsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4326020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4327360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4332490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_unique_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4333290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_draw.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4340540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4341880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4348360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4349380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4356670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4359440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4371110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4380040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_wrapped_linear_prepack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4387440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4392570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/combinations_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4399730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4404380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4410610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4415880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/swapdims_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4422600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4427530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4432580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4437560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isreal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4442480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addcmul_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4447490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4449370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumulative_trapezoid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4450430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4451570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4452780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4454080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4455210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4456380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad1d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4457420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4458590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4459790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4460950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4462080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4463260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_t.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4464350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4465410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_rnn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4487420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_mm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4496480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4502730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4510840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4511730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4519760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4520760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4522000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4527200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4528320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4534800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4535640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4536710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mH.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4543100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4544020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmax_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4546870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4552520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4560890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4561760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trace_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4565780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4568750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addbmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4569640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_strided_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4575540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4577070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4579550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor_split.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4584270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4588540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4591920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4596140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_alpha_dropout_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4597000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softshrink.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4601610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4605180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4609200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4610200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4614780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4617780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4622280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4623130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4627860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4631640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4635370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4639180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4640100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cosh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4645160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4648230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_interleave_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4652560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4653490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4866430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4872750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4878830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4890600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4891880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool1d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4898370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4904700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4905870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4918780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4925400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unbind_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4926640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frac_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4928060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4929480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4941090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4948190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_inverse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4955270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4962240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ravel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4963450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_select_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4971140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4978140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4979390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4987590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.4995560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5002920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5004230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5012090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5025110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bernoulli_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5026290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5027670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/from_file_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5029070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/layer_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5030610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5041110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5042480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5051530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5052960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5062580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5070840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/allclose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5078820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j0.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5080090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensordot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5081450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5082760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5084110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/thnn_conv2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5085480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5087050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5109320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5110390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_lu_with_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5116920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bincount_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5118180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5119530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5127500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5135550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5136710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/positive_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5137970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5139350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/remainder_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5140600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5141850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_euclidean_dist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5143100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5144380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5145660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5146830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_xor_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5148310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5149420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5150690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resize_as_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5151910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5153260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/clamp_max_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5154490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/einsum_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5155780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5157150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5158290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mode_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5159530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5160750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rnn_tanh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5162090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5163250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_set_to_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5164440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_householder_product_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5165800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5167060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5168390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_rnn_relu_cell_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5169650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5231870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5232980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5234180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5235420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dstack_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5236870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5237920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5239130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5240340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_distributed.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5241610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5242850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5244120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_segment_reduce_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5245460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5246580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5248020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5249230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5250460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5251870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5253110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5254340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_offsets_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5255490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5304410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gru_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5305390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5306650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5307840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/one_hot_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5309110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5310240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/as_strided_scatter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5328770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5329790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5330990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5332060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_zeros_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5333500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5334720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5335860Z 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-07-24T03:55:08.5337050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5338200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5339480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_solve.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5340790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantized_batch_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5347060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sgn_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5347910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5348780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_functorch_fallback_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5349530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5350400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5351330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_reduce_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5352100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfftn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5352880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addmm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5353740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5354660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/blackman_window_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5355510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5356320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5357100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5357840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/transpose.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5359030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5360070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amin_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5361350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acosh_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5362610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5363770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5365030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_mean_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5366250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5367410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/align_tensors_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5368640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5369850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5371270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5372400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5373590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5374900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5376050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5377440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triangular_solve_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5378590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5379840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5381250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/amax_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5382520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5383820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5385200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftn_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5386090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5387410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pow_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5388670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_bin_edges_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5389880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_scale.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5391270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5392560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5393860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rot90_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5395060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_eig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5396360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5397490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5398670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5399830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5401230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stride_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5402260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_is_acceptable.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5403380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5404550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5406020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/renorm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5407180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5408410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_coalesced_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5409650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5411010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_view_from_buffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5412150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5413310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_solve_ex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5414690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5415860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogram_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5417030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5418250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5419550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5420910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_nll_loss_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5421980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5423230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5424580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5425740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5427060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5428280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5429580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_right_shift_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5430850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5432160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_fill_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5433370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5434740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5435850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Byte_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5437200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5438330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/any.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5439680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5440970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5442230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5443510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5444710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5445990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5448080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact2d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5453020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_forward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5455940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5456840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vector_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5463010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5463960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/contiguous_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5470390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5471330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_overrideable_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5478290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5479250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5480650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5486030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5486960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/angle_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5493930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cross_entropy_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5495710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_gammaincc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5502210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/subtract_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5503560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5504490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/poisson_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5509980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/floor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5510970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/retains_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5518170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5519100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5520200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5525540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5526940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scatter_add_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5535100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5536050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/narrow_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5543770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/flip_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5544820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5545990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_not_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5553850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_grouped_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5554870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5556030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5561420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5563250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_linear_backward_input.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5564520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logsumexp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5569060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_avg_pool1d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5570050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5578890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5584510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5585250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5586490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5593230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log2_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5594250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5600380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_masked_scale_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5601690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5607900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reciprocal_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5608690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lcm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5609880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/frexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5616210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5617230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5624370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5625300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5631990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5632950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mean_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5634330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5639190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/le_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5639970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5646880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/stack_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5648070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5654690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5655570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/var_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5656770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsqrt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5661880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_double_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5663680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5669370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5670310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_make_dual_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5677090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5678160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/meshgrid_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5684300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5685560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5686760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5693380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5694500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5701220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_logit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5702350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/affine_grid_generator_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5709260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/full_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5710110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5711280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5717340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5718260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5724840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5725990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_put_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5727170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5732460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5733480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5740010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5748650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5749510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5750720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5756750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/permute_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5757560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dense_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5765450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5766320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5773120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_inv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5773950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5775280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5778750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5781200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5786860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_min.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5787750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5790840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tanh_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5796200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5798670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5803710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5804460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5808420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/msort_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5812190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/refine_names_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5813050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5818770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isneginf_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5821720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5827910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5828910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5832680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mask_projection_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5835980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5836980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5842060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy_sparse_to_sparse.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5844900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5849700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_log_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5850630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5853790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logaddexp2_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5858640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5862070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/softplus_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5865060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5865880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5871080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5873570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5879750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5880800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arcsin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5887210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_update_stats.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5888090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5889290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_embedding_loss.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5896800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sparse_matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5897710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool2d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5904050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5905230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col_indices_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5911430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lgamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5912690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5914210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pin_memory_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5919500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_addcdiv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5920400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_factor_ex_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5926900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5928740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/div_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5934410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_copy_from_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5935300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5936700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/concat_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5942650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5943540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5950260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5957920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5958960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5960330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5966160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/igamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5967050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_offsets_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5973920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5975190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5981700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/zero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5982620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.5983980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6198130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6198980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_clamp_max_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6200190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_unshuffle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6214270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6215300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6216510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logcumsumexp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6217700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6219010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6220300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6221590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6222820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6223930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6225070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6226240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6227410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_tensorinv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6228530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6230100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6230900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6232050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gt_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6233260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_det_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6234390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_select_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6235610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6237000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6238110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cudnn_convolution_transpose_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6239340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6240570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6241870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_sqrt_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6243040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atleast_1d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6244240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isin_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6245470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6246530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6247700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sinc_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6248900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6250240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6251160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardtanh_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6252380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6253590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copysign_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6254880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6256090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6257230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6258370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_reshape_alias_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6259570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6260690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histogramdd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6261830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6263020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_reduce_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6264170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_get_ragged_idx_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6265280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/leaky_relu_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6266410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6267510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_irfft_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6268700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/digamma_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6269920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6271300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6272500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_addmm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6273660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gather_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6274840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6275980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dimI.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6277180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exponential_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6278320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6279590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6280910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6281990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_ceil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6283240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_weight_to_int4pack.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6284610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6285700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/matmul_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6286900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6288120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_dense_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6289420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6290700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nanmedian_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6291840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantize_per_channel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6297640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6298170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad3d_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6298520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ctc_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6298850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/argwhere.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6299260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6299590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/asin_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6300070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6301290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6302420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_or.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6303670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6304930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6306100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diff_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6307220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fix.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6308720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_grad_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6309970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expit_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6311240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rsub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6312610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6313850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6315090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6316250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/std.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6317520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_all_true_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6318770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6321470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6326620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/polygamma_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6328270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6329670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6336300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_floatlist.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6337180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6343080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_forward_only.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6344900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6350820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/aminmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6351630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_log_softmax_backward_data_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6353280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6359370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6360380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6367310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6368380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmod_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6374790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randint_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6375710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_norm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6586460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6587740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6588770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6589980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_expm1.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6591170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_erfinv_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6592290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6593440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_qr_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6594560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6595720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardswish.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6596940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geqrf_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6598220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6599310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6600420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logit_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6601590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6602810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_optional_filled_intlist_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6603980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/split_with_sizes_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6605290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_warn_in_autograd_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6606440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6607620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isfinite.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6608980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6610070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_axis_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6611200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6612390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_batch_norm_no_update.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6613710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6614820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6616000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6617340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6618460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6619560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6620690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_zerotensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6621790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/xlogy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6622920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_conj_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6624100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log10_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6625300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_standard_gamma_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6626480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv2d_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6627660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/dequantize_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6628860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6630170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6631270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pin_memory.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6632460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6633580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gcd_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6634780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convolution_mode_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6635970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/convolution_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6637150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6638320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_shape_as_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6639580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6640780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6641930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/conv_transpose3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6643130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_mask_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6644350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6645570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unflatten_dense_tensors_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6646780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_version_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6647910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6649170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6650240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/empty_like_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6651360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/uniform.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6652570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/grid_sampler_3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6653820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/masked_scatter_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6655020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6656250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6657380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6658550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mse_loss_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6659700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6660910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6662070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/avg_pool2d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6663430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6664500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6665710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6666820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bmm_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6667970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/detach_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6669110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/set.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6670440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6671520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6672610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6673730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/silu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6674890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6676120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6677270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_relu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6678540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6679710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6680810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6682080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6683120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6684400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6685500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/exp_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6686680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_k0_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6687800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6688950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_add_batch_dim.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6693030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6694400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6701180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tanh_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6701920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_vander.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6703160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sigmoid_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6710170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mish_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6711340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6718420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6719300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6726010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6726890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Double_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6728070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6734000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6734840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6742020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_full_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6742800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6743940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/new_empty_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6750010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6751040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/triu_indices_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6757680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6758840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_round.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6760140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6765890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_has_same_storage_numel_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6767710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/quantile_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6774320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6775120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/index_select_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6782940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_dyn_quant_matmul_4bit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6784080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pad_sequence_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6791160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6792000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_no_training.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6797990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/elu_backward_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6798780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6805740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6806580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6813070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fw_primal_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6814180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sym_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6820940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_attention_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6822070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6823360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/hardsigmoid_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6829850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6830700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6838120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/row_indices_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6838950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_backward_elemt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6845890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6846660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6847830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_bessel_j1_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6853100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/t_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6854260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/det_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6861270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_bsr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6862180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/randperm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6863250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_copy_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6869960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fft_c2r.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6871120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sqrt_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6877890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosine_similarity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6878620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6885820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6886850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6887980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_csc_tensor_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6894230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6895150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6902200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_per_channel_axis_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6902990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logdet_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6904170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/take_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6909410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_rnn_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6910630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/minimum_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6917210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6918340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/greater_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6919650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6927010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_resize_and_clear_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6927870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/prod_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6935440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tril_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6936260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/miopen_depthwise_convolution.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6942770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_functional_assert_async_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6944120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6944970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_is_any_true_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6951280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6959010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_adam_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6960280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_unpool3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6961440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_pinv_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6967170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cast_Half_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6968380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6969770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/native_batch_norm_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6977480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/unique_dim_consecutive_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6978430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6986100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/col2im_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6987190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/replication_pad2d_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6994260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6995150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/crow_indices_copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.6996160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cosh_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7001800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7002930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/threshold_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7004160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_semi_structured_tile_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7007770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7017180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_exp_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7018380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7025460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7026450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_softmax_backward_data_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7027730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/log_softmax_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7032820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_modified_bessel_i0_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7033980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7247240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_sparse_csr_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7248460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7249570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lu_unpack_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7250710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7251980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7253320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_pinned_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7254700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7255800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isposinf_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7257120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7258280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cslt_compress_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7259450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/slow_conv_dilated3d_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7260530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_abs.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7261910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7263110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7264180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/histc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7265290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_trilinear3d.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7266390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_sum_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7267640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7268790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/relu_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7270000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7271090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_matrix_exp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7272240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_index_put_impl_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7273560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7274650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_mm_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7275890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_weight_norm_interface_backward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7277030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/trapz_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7278190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/block_diag_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7279430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/logical_or_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7280620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/copy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7282020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7283190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7284290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cumsum_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7285460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_entr_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7286760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fft_ifftshift.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7287830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/batch_norm_elemt_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7288950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_assert_async.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7290130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/q_zero_point_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7291350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_zeta_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7292520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_values_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7293790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/is_same_size.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7294950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/atan2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7296310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7297400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/diagonal_scatter_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7298560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7299760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7300970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/isnan_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7302180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7303310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/bitwise_left_shift_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7304440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/l1_loss_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7305600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7306930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7308110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cholesky_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7309280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nuclear_norm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7310410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/lift_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7311850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7313140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7314390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7315540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7316620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/and_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7317750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/select.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7319000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7320170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/true_divide.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7321360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7322530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7323760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7324970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nonzero_numpy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7326080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_sinc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7327370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7328550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_foreach_cos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7329930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7331060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7332250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_pdist_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7333470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7334660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7335800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/tan_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7336950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ones_like_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7338200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_conj_physical_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7339410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/nll_loss2d_forward_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7340720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7341800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_to_copy_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7342960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cos_cpu_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7344320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7345430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/mkldnn_convolution_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7346610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_fused_rms_norm_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7347760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_linalg_eigh.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7348930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_print_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7350080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7351440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7352560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/cat_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7353850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/ne_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7363520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/expand_as_native.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7366780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7367710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/complex_mps_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7368710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/linalg_ldl_solve_meta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7375600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/ops 2025-07-24T03:55:08.7377670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ParallelOpenMP.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7382970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/jit_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7383890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CPUApplyUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7390610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ThreadLocalState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7391960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ScalarOps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7393180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7399320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DynamicLibrary.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7400130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorGeometry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7406880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorIterator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7408170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/NamedTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7414750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Dimname.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7415640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/ROCmFABackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7416870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7422470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/autocast_mode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7423940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Parallel.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7431260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/DimVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7432020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/MetaFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7433160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/InferSize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7438720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/LegacyVmapTransforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7440630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SmallVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7446080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Tensor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7448150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7448950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchedFallback.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7453810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/FunctionalizeInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7454920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/ADInterpreters.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7456070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/Interpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7467600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/TensorWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7470710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchRulesHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7472090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/PlumbingHelper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7478710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/VmapInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7479950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7481010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchingMetaprogramming.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7486390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/BatchedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7487260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/LegacyVmapTransforms.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7494450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/functorch/DynamicLayer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/functorch 2025-07-24T03:55:08.7495210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/Generator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7502550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/AccumulateType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7503260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/TensorAccessor.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7504430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/SDPBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7510810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-24T03:55:08.7511420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Handles.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-24T03:55:08.7512610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-24T03:55:08.7518250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Types.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-24T03:55:08.7519520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Descriptors.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-24T03:55:08.7520740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/Handle.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-24T03:55:08.7525570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/cudnn/cudnn-wrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen/cudnn 2025-07-24T03:55:08.7527410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/ATen/CachedTensorUtils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/ATen 2025-07-24T03:55:08.7533540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10 2025-07-24T03:55:08.7534500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7535230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/RefcountedDeleter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7536840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7537610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/InlineStreamGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7538790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/SizesAndStrides.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7543440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/InlineDeviceGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7546310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/GPUTrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7551360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/COWDeleter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7552230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/LocalDispatchKeySet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7553440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/alloc_cpu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7721520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/VirtualGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7722390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/HermeticPyObjectTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7723540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PyObjectSlot.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7724680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/TorchDispatchModeTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7726140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PyInterpreter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7726990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/PythonDispatcherTLS.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7728080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/COW.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7729240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/InlineEvent.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7730440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/DeviceGuardImplInterface.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7731560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/impl/FakeGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core/impl 2025-07-24T03:55:08.7732670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/QEngine.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7733790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/TensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7780870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymFloat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7781710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/GradMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7782800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Device.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7783960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CPUAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7785050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DefaultDtype.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7786360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DefaultTensorOptions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7787560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/alignment.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7788730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Event.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7789800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Backend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7791030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CompileTimeFunctionPointer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7792160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DeviceArray.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7793240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/PyHandleCache.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7794380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/ConstantSymNodeImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7795470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/WrapDimMinimal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7796580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/QScheme.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7797710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SafePyObject.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7798810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Stream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7799890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/UndefinedTensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7800960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Scalar.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7802100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/AutogradState.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7803200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymIntArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7804340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/thread_pool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7805420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CopyBytes.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7806560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymNodeImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7807610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/StreamGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7808710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DynamicCast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7809820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Layout.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7810920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/GeneratorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7812030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DispatchKeySet.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7813360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Allocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7814460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/TensorImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7816200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Contiguity.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7817250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/ScalarType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7818550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/Storage.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7819670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DeviceType.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7820780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DeviceGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7821860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/StorageImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7822990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymbolicShapeMeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7824170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/MemoryFormat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7825200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymBool.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7826280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/DispatchKey.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7827560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/ScalarTypeToTypeMeta.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7828840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/InferenceMode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7829900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/SymInt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7831000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/OptionalRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7832130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/core/CachingDeviceAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/core 2025-07-24T03:55:08.7833490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test 2025-07-24T03:55:08.7834360Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-07-24T03:55:08.7835100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util/complex_test_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-07-24T03:55:08.7836400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util/complex_math_test_common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-07-24T03:55:08.7837660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/test/util/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/test/util 2025-07-24T03:55:08.7839460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7840120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7841370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/order_preserving_flat_hash_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7842850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fn-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7843910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/quint4x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7845060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/FbcodeMaps.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7846210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Semaphore.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7847350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/signal_handler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7848520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/error.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7849780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/safe_numerics.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7850950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Half.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7852100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/flat_hash_map.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7853570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/env.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7854790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/llvmMathExtras.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7856180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Gauge.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7857450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/WaitCounterDynamicBackend.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7858550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e8m0fnu-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7859650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Synchronized.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7860850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Bitset.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7862040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/typeid.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7864030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fnuz-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7864800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeSafeSignMath.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7865870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/intrusive_ptr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7867390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/string_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7868530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/IntrusiveList.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7869750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/win32-headers.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7870880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/AlignOf.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7872120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/static_tracepoint.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7873470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ssize.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7874380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Enumerate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7875510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/numa.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7876680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/qint32.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7877880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float4_e2m1fn_x2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7879020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/CallOnce.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7880260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7881400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/MaybeOwned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7882480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Half-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7883560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeTraits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7884790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/DeadlockDetection.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7885910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/FunctionRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7886990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Backtrace.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7888150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/overflows.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7889310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ExclusivelyOwned.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7890300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Load.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7891500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/BFloat16-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7897230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/static_tracepoint_elfx86.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7898170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ConstexprCrc.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7901260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ThreadLocal.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7906370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/IdWrapper.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7909090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Flags.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7910150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/overloaded.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7916330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fnuz.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7918120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/quint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7924450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7925240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/StringUtil.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7926280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Logging.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7933440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/MathConstants.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7934430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Registry.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7941300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Optional.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7942590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7948700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/tempfile.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7949770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/copysign.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7950990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7952100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/thread_name.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7954210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/strides.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7957000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Unicode.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7959290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e8m0fnu.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7960570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeCast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.7961900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/sparse_bitset.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8134060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/OptionalArrayRef.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8134870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/BFloat16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8135920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeList.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8137130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/TypeIndex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8138320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/NetworkFlow.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8139450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Array.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8140650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/logging_is_google_glog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8141770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Metaprogramming.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8142880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/WaitCounter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8144080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/quint2x4.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8145360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/floating_point_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8146680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ParallelGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8147920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/BFloat16-math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8149230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/int128.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8150500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Lazy.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8151720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Deprecated.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8152980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/irange.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8154170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/SmallBuffer.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8155420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ScopeExit.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8156640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Unroll.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8157860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/LeftRight.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8158960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/bit_cast.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8160130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/qint8.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8161300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/complex_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8162480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/logging_is_not_google_glog.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8163540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/DynamicCounter.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8164660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Exception.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8165970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/UniqueVoidPtr.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8167160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ThreadLocalDebugInfo.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8168260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e4m3fn.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8169390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/AbortHandler.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8170540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/DimVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8171640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/accumulate.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8172780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/C++17.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8173910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/strong_type.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8175270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ApproximateClock.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8176380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/SmallVector.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8177830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_e5m2fnuz-inl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8178910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/hash.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8180180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/python_stub.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8181250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/complex.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8182510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/bits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8183590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/string_view.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8184840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/Float8_fnuz_cvt.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8186010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/complex_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8187290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/ExclusivelyOwnedTensorTraits.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8188420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/util/generic_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/util 2025-07-24T03:55:08.8189900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-24T03:55:08.8190520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-24T03:55:08.8191680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/special_math.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-24T03:55:08.8193160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/reduction_utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-24T03:55:08.8194250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/expm1f.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-24T03:55:08.8195400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/common.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-24T03:55:08.8196500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/indexing.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-24T03:55:08.8197820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/random.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-24T03:55:08.8199020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/metal/atomic.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/metal 2025-07-24T03:55:08.8200400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8201220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-07-24T03:55:08.8201910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl/CUDATest.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-07-24T03:55:08.8203100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/impl/CUDAGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda/impl 2025-07-24T03:55:08.8204300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDADeviceAssertion.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8205430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/driver_api.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8206570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAMathCompat.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8207710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAAlgorithm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8208890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAStream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8210050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAGuard.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8211230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAMiscFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8212390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAGraphsC10Utils.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8213510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAMacros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8214750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAAllocatorConfig.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8215950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8217100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDAException.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8218240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDACachingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8219620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/cuda/CUDADeviceAssertionHost.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/cuda 2025-07-24T03:55:08.8220930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-24T03:55:08.8221870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/impl 2025-07-24T03:55:08.8222840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/impl/XPUGuardImpl.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/impl 2025-07-24T03:55:08.8223760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test 2025-07-24T03:55:08.8224610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test/impl 2025-07-24T03:55:08.8225310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/test/impl/XPUTest.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu/test/impl 2025-07-24T03:55:08.8226430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUStream.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-24T03:55:08.8227580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUDeviceProp.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-24T03:55:08.8228770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUCachingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-24T03:55:08.8229840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUMacros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-24T03:55:08.8231010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUException.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-24T03:55:08.8232110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/xpu/XPUFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/xpu 2025-07-24T03:55:08.8233470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-07-24T03:55:08.8234170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros/cmake_macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-07-24T03:55:08.8235320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros/Export.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-07-24T03:55:08.8236500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/macros/Macros.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/macros 2025-07-24T03:55:08.8237950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-07-24T03:55:08.8238550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile/CPUCachingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-07-24T03:55:08.8239720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/c10/mobile/CPUProfilingAllocator.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/c10/mobile 2025-07-24T03:55:08.8240730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/psimd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:08.8242280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/experiments-config.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:08.8243340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fxdiv.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include 2025-07-24T03:55:08.8244720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-07-24T03:55:08.8245440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16/fp16.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-07-24T03:55:08.8246710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16/psimd.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-07-24T03:55:08.8248120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/include/fp16/bitcasts.h -> build/bdist.macosx-14.0-arm64/wheel/torch/include/fp16 2025-07-24T03:55:08.8249560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/torch_version.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.8251210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-07-24T03:55:08.8252110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/opt_einsum 2025-07-24T03:55:08.8252810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/opt_einsum/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/opt_einsum 2025-07-24T03:55:08.8254120Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mha 2025-07-24T03:55:08.8254820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mha/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mha 2025-07-24T03:55:08.8256290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/nnpack 2025-07-24T03:55:08.8256990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/nnpack/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/nnpack 2025-07-24T03:55:08.8258300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mps 2025-07-24T03:55:08.8258930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mps/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mps 2025-07-24T03:55:08.8260300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cpu 2025-07-24T03:55:08.8260910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cpu 2025-07-24T03:55:08.8262210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-07-24T03:55:08.8262910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml/preprocess.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-07-24T03:55:08.8263950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_coreml/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_coreml 2025-07-24T03:55:08.8264970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cuda 2025-07-24T03:55:08.8265780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cuda 2025-07-24T03:55:08.8267240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/quantized 2025-07-24T03:55:08.8273950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/quantized 2025-07-24T03:55:08.8274640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends 2025-07-24T03:55:08.8275130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkl 2025-07-24T03:55:08.8275620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkl/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkl 2025-07-24T03:55:08.8276110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xnnpack 2025-07-24T03:55:08.8276630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xnnpack/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/xnnpack 2025-07-24T03:55:08.8277270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/kleidiai 2025-07-24T03:55:08.8277930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/kleidiai/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/kleidiai 2025-07-24T03:55:08.8278650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cusparselt 2025-07-24T03:55:08.8279330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cusparselt/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cusparselt 2025-07-24T03:55:08.8280820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkldnn 2025-07-24T03:55:08.8281440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/mkldnn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/mkldnn 2025-07-24T03:55:08.8282940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-07-24T03:55:08.8283780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-07-24T03:55:08.8284800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/xeon/run_cpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/xeon 2025-07-24T03:55:08.8289070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-07-24T03:55:08.8289590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-07-24T03:55:08.8290300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi/serializer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-07-24T03:55:08.8443550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/_nnapi/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/_nnapi 2025-07-24T03:55:08.8444760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/openmp 2025-07-24T03:55:08.8445500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/openmp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/openmp 2025-07-24T03:55:08.8446880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-07-24T03:55:08.8447560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-07-24T03:55:08.8448900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/backends/cudnn/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/backends/cudnn 2025-07-24T03:55:08.8450110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-24T03:55:08.8450830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions_for_jvp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-24T03:55:08.8452210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-24T03:55:08.8453950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-24T03:55:08.8455400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_decomp/decompositions_for_rng.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_decomp 2025-07-24T03:55:08.8456240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.8457600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-24T03:55:08.8458260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/streams.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-24T03:55:08.8459450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-24T03:55:08.8460510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-24T03:55:08.8461770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_gpu_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-24T03:55:08.8462860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-24T03:55:08.8463930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/xpu/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/xpu 2025-07-24T03:55:08.8465100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_streambase.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.8466860Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-07-24T03:55:08.8467340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-07-24T03:55:08.8468860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-07-24T03:55:08.8470000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked 2025-07-24T03:55:08.8471650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-24T03:55:08.8472400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/binary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-24T03:55:08.8473540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/creation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-24T03:55:08.8474620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/_ops_refs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-24T03:55:08.8475870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-24T03:55:08.8476990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-24T03:55:08.8478130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/unary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-24T03:55:08.8479290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/reductions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-24T03:55:08.8480360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/masked/maskedtensor/passthrough.py -> build/bdist.macosx-14.0-arm64/wheel/torch/masked/maskedtensor 2025-07-24T03:55:08.8481380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_docs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.8483920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8484390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lr_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8486120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rmsprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8487070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_adafactor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8488360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sparse_adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8489540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/rprop.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8490810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/sgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8492110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8493510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamax.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8494530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adagrad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8496040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-07-24T03:55:08.8496800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-07-24T03:55:08.8497910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_multi_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim/_multi_tensor 2025-07-24T03:55:08.8499000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adamw.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8500070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/swa_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8501450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/lbfgs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8502670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/radam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8503930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8505280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8506660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/nadam.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8508000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/asgd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8509150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/_functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8510310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/optim/adadelta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/optim 2025-07-24T03:55:08.8511800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_weights_only_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.8512750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.8515210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8515650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dtype_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8516900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_trees.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8518700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/select_algorithm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8520240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ops_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8521530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8522760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codecache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8524870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mock_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8525730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/optimize_indexing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8526820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8527960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8529080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cpp_builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8530570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cpu_vec_isa.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8531650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8533750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-07-24T03:55:08.8534200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis/device_info.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-07-24T03:55:08.8535170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-07-24T03:55:08.8536050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analysis/profile_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/analysis 2025-07-24T03:55:08.8537280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx_ext.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8538540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8540020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8541250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8542660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/async_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8543970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8545900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/quantized_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8546600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/triton_bundler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8547660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/aoti_eager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8548780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8550900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8553380Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8553790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/cache_dir_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8554960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/triton_heuristics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8556720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/runtime_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8557850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/halide_helpers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8559010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/coordinate_descent_tuner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8560090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/triton_compat.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8561230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8562110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/compile_tasks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8563350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/triton_helpers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8564630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/autotune_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8565840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/hints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8566980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/static_cuda_launcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8568120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/runtime/benchmarking.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/runtime 2025-07-24T03:55:08.8569280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/jagged_lowerings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8570350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_operators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8571450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8572550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8574280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/cudagraph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8575340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/sizevars.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8576630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8579720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/analyze_preserves_zero_mask.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8580550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx_async.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8581660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/index_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8582720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/constant_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8584630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8585140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_grouped_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8586220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_gpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8587510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8589840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mps_device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8590490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8591630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8594020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_bmm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8599030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/mps.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8600320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_hipify_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8601450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/simd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8608190Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8608760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8610360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8616650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8617550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8619240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8620100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_presets.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8621230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_python_evt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8622630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-24T03:55:08.8623540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-24T03:55:08.8624890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-24T03:55:08.8625860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda/cutlass_lib_extensions 2025-07-24T03:55:08.8626940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8628050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_env.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8629300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8630890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cutlass_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8632000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda/cuda_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/cuda 2025-07-24T03:55:08.8633440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-07-24T03:55:08.8634100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-07-24T03:55:08.8635010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/xpu/device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/xpu 2025-07-24T03:55:08.8636320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton_combo_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8637800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/memory_planning.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8639400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8640410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_flex_attention_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8641940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/wrapper_fxir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8647010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_micro_gemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8648270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8650720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_cpu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8655930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/block_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8657060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-07-24T03:55:08.8657880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/aoti_runtime/interface.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/aoti_runtime 2025-07-24T03:55:08.8658950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8660640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_mps.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8661770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_template_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8663010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8664630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpu_device_op_overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8669660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8672510Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8672940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_tile_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8674280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8675670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8680250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8681220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8682160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/compile_command.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8683670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8684680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_conv_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8689690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_template_buffer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8693000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_universal_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8694120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8699150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/rocm_benchmark_request.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8701930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen/rocm 2025-07-24T03:55:08.8704700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/triton_split_scan.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8707800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/halide.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8710870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_template.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8714050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cuda_combined_scheduling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8717950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/multi_kernel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8721740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/subgraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8727380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/cpp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8729960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8731350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/codegen/simd_kernel_features.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/codegen 2025-07-24T03:55:08.8737310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/inductor_prims.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8738210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/virtualized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8741120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8746720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/script.ld -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8747630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autotune_process.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8754210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/standalone_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8755350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-24T03:55:08.8756160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/tracked_process_pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-24T03:55:08.8757370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-24T03:55:08.8758240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-24T03:55:08.8759430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/subproc_pool.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-24T03:55:08.8760570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_worker/__main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/compile_worker 2025-07-24T03:55:08.8761790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8763000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8764670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8766110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/__autotune_main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8767290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8769240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8769920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/decomposition.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8771630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-24T03:55:08.8772450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:55:08.8773260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:55:08.8774550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_PadMMA100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:55:08.8775800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:55:08.8777060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:55:08.8777980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:55:08.8779350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic/artifacts 2025-07-24T03:55:08.8780580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/autoheuristic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-24T03:55:08.8781770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/autoheuristic_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-24T03:55:08.8782870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/learned_heuristic_controller.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-24T03:55:08.8784020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-24T03:55:08.8785030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/autoheuristic/learnedheuristic_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/autoheuristic 2025-07-24T03:55:08.8786780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8787280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/post_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8788770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8789950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/replace_random.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8791220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/ddp_fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8792550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/numeric_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8793730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/decompose_mem_bound_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8794890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/reinplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8796120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8798230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/split_cat.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8799930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/dedupe_symint_uses.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8801200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/efficient_conv_bn_eval.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8802220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8803180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/group_batch_fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8804850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/pre_grad.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8806390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/binary_folding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8807460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/fuse_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8808720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/micro_pipeline_tp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8811260Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8811940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8814960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8818080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8819970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8825150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8828080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8833350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8834230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8837580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8842580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8845480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8944230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8945110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8946220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8947380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8948560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8949730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8951040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8952290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8953410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8954620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8955710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8971300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8972190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8973360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8974580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8975770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8976890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes/serialized_patterns 2025-07-24T03:55:08.8977920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/joint_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8979720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/bucketing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8980860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/b2b_gemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8982160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/mkldnn_fusion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8983540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/pad_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8984870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/freezing_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8986050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_passes/misc_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/fx_passes 2025-07-24T03:55:08.8987120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/fx_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8988240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compile_fx_subproc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8989350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8991820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/mkldnn_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8992780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/wrapper_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8993920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/choices.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8995200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/remote_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8996350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/comm_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8997480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/compiler_bisector.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8998740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/extern_node_serializer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.8999820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/bounds.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.9000920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/output_code.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.9002170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/custom_graph_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.9003320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/freezing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.9004430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.9005670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/tiling_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.9007600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9007980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9009090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex_decoding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9010320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm_grouped.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9011540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9012590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9013920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/bmm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9015030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9016290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/mm_plus_mm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9017350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/kernel/flex_attention.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/kernel 2025-07-24T03:55:08.9019570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-07-24T03:55:08.9019900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package/package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-07-24T03:55:08.9021120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package/build_package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-07-24T03:55:08.9022200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/package/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor/package 2025-07-24T03:55:08.9023360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/loop_body.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.9024650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/subgraph_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.9025740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_inductor/template_heuristics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_inductor 2025-07-24T03:55:08.9028030Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9028300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9030530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark 2025-07-24T03:55:08.9030990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark 2025-07-24T03:55:08.9032150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-24T03:55:08.9033120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/binary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-24T03:55:08.9034200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/sparse_binary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-24T03:55:08.9035300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/sparse_unary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-24T03:55:08.9036550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-24T03:55:08.9037520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/spectral.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-24T03:55:08.9038680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/op_fuzzers/unary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/op_fuzzers 2025-07-24T03:55:08.9040100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9041110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/timer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9042310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9043270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/sparse_fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9044560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9045720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9046910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9048210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/timeit_template.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9050170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:08.9050720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:08.9052030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:08.9055810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:08.9056500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:08.9057450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:08.9058890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils/valgrind_wrapper 2025-07-24T03:55:08.9059950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/cpp_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9061180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/compare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9062210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/utils/_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/utils 2025-07-24T03:55:08.9063620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-24T03:55:08.9064360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/op_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-24T03:55:08.9065470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-24T03:55:08.9066380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/simple_timeit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-24T03:55:08.9067590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/fuzzer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-24T03:55:08.9068800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/spectral_ops_fuzz_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-24T03:55:08.9069960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/benchmark/examples/compare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/benchmark/examples 2025-07-24T03:55:08.9071090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_appending_byte_serializer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9072300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_foreach_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9073510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9074690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_traceback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9075900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cpp_extension_versioner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9077050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_mode_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9078280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/checkpoint.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9079840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/show_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9081220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/deterministic.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9082360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/file_baton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9083430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_freeze.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9084620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backend_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9086110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/module_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9087260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_zoo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9088370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_zip.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9089520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/collect_env.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9090890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/throughput_benchmark.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9092070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/dlpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9093500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9094240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9095730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9096670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/symbol.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9097910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/numbers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9099050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/reference.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9100230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/singleton_int.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9101430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/value_ranges.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9102870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/printers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9104190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/solve.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9105260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_sympy/interp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_sympy 2025-07-24T03:55:08.9106640Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-07-24T03:55:08.9107380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-07-24T03:55:08.9108570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/serialization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/serialization 2025-07-24T03:55:08.9109900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/backcompat 2025-07-24T03:55:08.9110620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/backcompat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/backcompat 2025-07-24T03:55:08.9111680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cxx_pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9113120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9114340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_functools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9115420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_import_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9116630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_cpp_embed_headers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9118000Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-24T03:55:08.9118670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/version.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-24T03:55:08.9119830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/cuda_to_hip_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-24T03:55:08.9123130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-24T03:55:08.9123860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-24T03:55:08.9125060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/hipify/hipify_python.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/hipify 2025-07-24T03:55:08.9126310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_dtype_abbrs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9127500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_typing.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9128740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bundled_inputs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9130470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-07-24T03:55:08.9130970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-07-24T03:55:08.9131970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/bottleneck/__main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/bottleneck 2025-07-24T03:55:08.9133020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_helion.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9134160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mkldnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9135500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-07-24T03:55:08.9136140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-07-24T03:55:08.9137020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/viz/_cycles.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/viz 2025-07-24T03:55:08.9138290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_backtrace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9139400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_contextlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9140770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-07-24T03:55:08.9141390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-07-24T03:55:08.9142350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/jit/log_extract.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/jit 2025-07-24T03:55:08.9143400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_python_dispatch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9144920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9145570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_pytorch_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9146750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_proto_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9147820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9148940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_embedding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9150050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_onnx_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9151180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/summary.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9152570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_convert_np.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9153780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/writer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9155080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/tensorboard/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/tensorboard 2025-07-24T03:55:08.9156150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_exposed_in.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9157330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_filelock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9158460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_thunk.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9159560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_config_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9160770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_device.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9161890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/flop_counter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9163130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_typing_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9164250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_stats.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9165690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-24T03:55:08.9166320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/code.js -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-24T03:55:08.9167580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/preact.mjs -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-24T03:55:08.9168700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/skeleton.html -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-24T03:55:08.9169860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/htm.mjs -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-24T03:55:08.9171010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-24T03:55:08.9172230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/model_dump/__main__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/model_dump 2025-07-24T03:55:08.9173420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/cpp_extension.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9175560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_backport_slots.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9176290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_get_clean_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9177390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9178450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_content_store.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9179870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-24T03:55:08.9180840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-24T03:55:08.9181790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/fetch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-24T03:55:08.9182660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/worker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-24T03:55:08.9183810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/collate.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-24T03:55:08.9184980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/pin_memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-24T03:55:08.9186040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-24T03:55:08.9187220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/_utils/signal_handling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/_utils 2025-07-24T03:55:08.9188350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/graph_settings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-24T03:55:08.9189490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-24T03:55:08.9190640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-24T03:55:08.9191710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/dataset.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-24T03:55:08.9192970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-24T03:55:08.9194190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/backward_compatibility.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-24T03:55:08.9195290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/dataloader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-24T03:55:08.9196790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/sampler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data 2025-07-24T03:55:08.9198150Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-24T03:55:08.9198930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/_decorator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-24T03:55:08.9200540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-24T03:55:08.9201300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-24T03:55:08.9202600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/datapipes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-24T03:55:08.9203800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/dataframe_wrapper.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-24T03:55:08.9211160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/structures.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-24T03:55:08.9211620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/dataframe/dataframes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/dataframe 2025-07-24T03:55:08.9211780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9212170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/fileopener.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9212560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/callable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9212940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/sharding.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9213310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/grouping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9213680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9214460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/selecting.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9215630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/combining.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9216930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/filelister.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9218090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9219370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/combinatorics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9220460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/streamreader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9221660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/iter/routeddecoder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/iter 2025-07-24T03:55:08.9222740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/_typing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-24T03:55:08.9223890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/_hook_iterator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-24T03:55:08.9225090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/datapipe.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-24T03:55:08.9226420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-24T03:55:08.9227710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-24T03:55:08.9228430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/decoder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-24T03:55:08.9229560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-24T03:55:08.9230430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-24T03:55:08.9231740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/utils/snapshot.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/utils 2025-07-24T03:55:08.9232840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/datapipe.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-24T03:55:08.9234280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-24T03:55:08.9235050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/callable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-24T03:55:08.9236240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/grouping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-24T03:55:08.9237420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-24T03:55:08.9238530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/combining.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-24T03:55:08.9239760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-24T03:55:08.9241010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/map/combinatorics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes/map 2025-07-24T03:55:08.9242180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/data/datapipes/gen_pyi.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/data/datapipes 2025-07-24T03:55:08.9243590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-07-24T03:55:08.9244330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight/cli_function_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-07-24T03:55:08.9245430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_strobelight/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils/_strobelight 2025-07-24T03:55:08.9246230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/_ordered_set.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9247440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/weak.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9248800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/utils/mobile_optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/utils 2025-07-24T03:55:08.9249990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/overrides.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9252180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_namedtensor_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9253080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/return_types.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9254420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9255730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_linalg_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9256910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__config__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9258140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9260300Z creating build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-07-24T03:55:08.9260730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-07-24T03:55:08.9261750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/contrib/_tensorboard_vis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/contrib 2025-07-24T03:55:08.9262810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/random.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9263890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/hub.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9265710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9266160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9267430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fuse_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9268590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantization_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9269820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9271240Z creating build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9271950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9273280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/fusion_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9274440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/_equalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9275740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/quantization_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9277010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9278320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9279210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9280370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/pattern_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9281570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/fuse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9282840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/match_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9284200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9285360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fx/quantization_patterns.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization/fx 2025-07-24T03:55:08.9286590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_numeric_suite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9287680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9288960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/qconfig.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9290180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9291450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_quantized_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9292670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9293900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9295080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/fuser_method_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9296230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9297410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quant_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9298490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/quantize_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9299730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/quantization/_numeric_suite_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/quantization 2025-07-24T03:55:08.9300850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_tensor_str.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9302100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_sources.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9304110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-07-24T03:55:08.9304450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/special/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/special 2025-07-24T03:55:08.9306480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9306950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_profiler.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9307790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_onnx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9308890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_c10d.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9310120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9311420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_monitor.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9312500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_itt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9313810Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-07-24T03:55:08.9314480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-07-24T03:55:08.9315600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_export/pt2_archive_constants.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_export 2025-07-24T03:55:08.9316660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_lazy.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9317820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9325890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nvtx.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9326610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cpu.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9327690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_nn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9328890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cusparselt.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9329990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_instruction_counter.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9331080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_jit_tree_views.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9332180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_lazy_ts_backend.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9333410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functorch.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9334690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_VariableFunctions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9341410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_rpc.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9342420Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-24T03:55:08.9343030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-24T03:55:08.9344220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/compiled_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-24T03:55:08.9345340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/guards.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-24T03:55:08.9346440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_dynamo/eval_frame.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C/_dynamo 2025-07-24T03:55:08.9347490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_verbose.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9353690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_aoti.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9354600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_functions.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9361790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_rpc_testing.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9362850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_cudnn.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9364020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C/_distributed_autograd.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C 2025-07-24T03:55:08.9365520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-24T03:55:08.9366610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9367490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-07-24T03:55:08.9368260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-07-24T03:55:08.9369150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/generated/annotated_fn_args.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/generated 2025-07-24T03:55:08.9373460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-24T03:55:08.9373920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-24T03:55:08.9375120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/core.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-24T03:55:08.9377410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-24T03:55:08.9377920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/refs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo 2025-07-24T03:55:08.9379340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:08.9380080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/signal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:08.9381230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:08.9382410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/_masked.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:08.9389560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/linalg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:08.9390970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:08.9392290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:08.9393570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/special.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:08.9394930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/opinfo/definitions/nested.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/opinfo/definitions 2025-07-24T03:55:08.9396260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_dtype.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9397510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_pruning.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9398870Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-07-24T03:55:08.9399620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-07-24T03:55:08.9400600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module/future_div.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-07-24T03:55:08.9401780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/test_module/no_future_div.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/test_module 2025-07-24T03:55:08.9402960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/fake_config_module3.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9403930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/hop_db.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9405100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/triton_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9406480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/static_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9407670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/subclasses.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9408870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_nn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9411350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/custom_op_db.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9412310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/fake_config_module2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9413510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/autocast_test_lists.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9414880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_fsdp.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9416390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/two_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9417620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/torchbind_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9419440Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9419880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-07-24T03:55:08.9420610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-07-24T03:55:08.9421580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_tensor/common_dtensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_tensor 2025-07-24T03:55:08.9422950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9424410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn 2025-07-24T03:55:08.9425150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn 2025-07-24T03:55:08.9426140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-07-24T03:55:08.9426900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-07-24T03:55:08.9427880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/nn/api/remote_module_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/nn/api 2025-07-24T03:55:08.9429240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/fake_pg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9430630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9431710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-07-24T03:55:08.9432580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/test_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-07-24T03:55:08.9433940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-24T03:55:08.9434720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-24T03:55:08.9436030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-24T03:55:08.9437220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard/sharded_tensor 2025-07-24T03:55:08.9438310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/_shard/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/_shard 2025-07-24T03:55:08.9439450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/checkpoint_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9440630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/distributed_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9442100Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:08.9442740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:08.9443990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:08.9445110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:08.9446120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/dist_autograd_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:08.9447770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:08.9449730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:08.9451350Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:08.9452100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:08.9453120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:08.9454360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:08.9455920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/jit 2025-07-24T03:55:08.9457410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-07-24T03:55:08.9458160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-07-24T03:55:08.9459240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-07-24T03:55:08.9460340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc/examples 2025-07-24T03:55:08.9461490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/rpc_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:08.9464130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc/dist_optimizer_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed/rpc 2025-07-24T03:55:08.9465060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/distributed_test.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9468770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/multi_threaded_pg.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9469950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/common_state_dict.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9471160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/distributed/rpc_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/distributed 2025-07-24T03:55:08.9472340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_optimizers.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9474010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_device_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9475510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/autograd_function_db.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9477420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_mkldnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9478190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/inductor_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9479420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9480880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9481950Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-24T03:55:08.9482770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-24T03:55:08.9483990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/fake_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-24T03:55:08.9485180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/aot_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-24T03:55:08.9486330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/make_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-24T03:55:08.9487490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/generate_tests.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-24T03:55:08.9488960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/optests/autograd_registration.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/optests 2025-07-24T03:55:08.9490180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_methods_invocations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9497330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/custom_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9498220Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/codegen 2025-07-24T03:55:08.9498920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/codegen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/codegen 2025-07-24T03:55:08.9500080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/logging_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9501270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/hypothesis_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9502480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_cuda.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9503690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9505900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9508070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9508780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_mps.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9510260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/jit_metaprogramming_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9511710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/dynamo_test_failures.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9512860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/check_kernel_launches.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9514090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9516690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/quantization_torch_package_models.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9517920Z creating build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-07-24T03:55:08.9518650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data/network1.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-07-24T03:55:08.9519800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-07-24T03:55:08.9520970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/data/network2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal/data 2025-07-24T03:55:08.9522120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_quantized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9523410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_dist_composable.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9524510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/common_subclass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9525680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/composite_compliance.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9527080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/logging_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9528140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/dist_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9529310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/fake_config_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9530480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_internal/jit_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing/_internal 2025-07-24T03:55:08.9531850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_creation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-24T03:55:08.9533040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-24T03:55:08.9534200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_comparison.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-24T03:55:08.9535810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/testing/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/testing 2025-07-24T03:55:08.9536960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_vmap_internals.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9538410Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9539050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/triton.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9540290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_profile.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9541440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/infer_schema.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9542600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/simple_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9543700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9545080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9546090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_impl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9547190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9548340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9555980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_library/fake_class_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_library 2025-07-24T03:55:08.9556980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9559080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lowrank.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9559900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_appdirs.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9561880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-07-24T03:55:08.9562260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-07-24T03:55:08.9563370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/accelerator/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/accelerator 2025-07-24T03:55:08.9564630Z creating build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-07-24T03:55:08.9565400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/autocast_mode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-07-24T03:55:08.9566770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/grad_scaler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-07-24T03:55:08.9568080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/amp/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/amp 2025-07-24T03:55:08.9569520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9570120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_ir_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9571410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_monkeytype_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9572530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decompositions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9573700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_recursive.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9575040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9576330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9577480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/quantized.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9578680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9580320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_script.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9581340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_shape_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9582870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_decomposition_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9583900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_freeze.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9585140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_pickle.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9586220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_check.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9587490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/unsupported_tensor_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9588590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/frontend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9589970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/supported_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9591100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9592190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_fuser.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9593500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_builtins.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9594590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_dataclass_impls.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9595710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9597880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-07-24T03:55:08.9598220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes/_property_propagation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-07-24T03:55:08.9599300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit/_passes 2025-07-24T03:55:08.9600180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/generate_bytecode.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9601340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_state.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9602830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/jit/mobile 2025-07-24T03:55:08.9603400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/mobile/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit/mobile 2025-07-24T03:55:08.9604630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_async.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9605840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/annotations.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9607200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/jit/_await.py -> build/bdist.macosx-14.0-arm64/wheel/torch/jit 2025-07-24T03:55:08.9609140Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9609490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9610820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/cache_size.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9612040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/callback.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9613160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/comptime.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9614320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/logging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9615530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/_trace_wrapped_higher_order_op.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9616590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/hooks.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9617760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/precompile_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9618930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_break_hints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9620040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9621290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9623600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_minifier_common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9624450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/create_parameter_op.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9625630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_region_tracker.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9626830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/device_interface.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9628540Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9629190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9630360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9631280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/debugging.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9632420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9633650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/common.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9634850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/inductor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9636020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/onnxrt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9637220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/tvm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9638300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/cudagraphs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9639390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/tensorrt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9640570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/backends/torchxla.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/backends 2025-07-24T03:55:08.9641820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9642980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9644200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/mutation_guard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9645480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9646590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/metrics_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9647730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_analysis.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9648790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/tensor_version_op.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9649850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/external_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9650970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_case.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9652070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9653200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/resume_execution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9654530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/output_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9656720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/compiled_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9657690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/exc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9658930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9661650Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9661990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9663510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/iter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9664790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/misc.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9666300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/lists.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9667870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/script_object.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9669150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/torch_function.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9670600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9671830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/user_defined.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9673480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/nn_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9675010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/builder.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9677510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9678800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/higher_order_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9680880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/sdpa.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9681620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/distributed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9682710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/optimizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9683970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/builtin.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9685670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/constant.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9686690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9687830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/torch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9689410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/ctx_manager.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9690710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/dicts.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9692070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/variables/base.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/variables 2025-07-24T03:55:08.9693290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_break_registry.json -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9695460Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-24T03:55:08.9695780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/after_dynamo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-24T03:55:08.9697170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-24T03:55:08.9698010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/after_aot.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-24T03:55:08.9699290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/repro/aoti.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/repro 2025-07-24T03:55:08.9700660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/test_dont_skip_tracing_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9701740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/replay_record.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9702900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/side_effects.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9705060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9705430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/functools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9706370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/builtins.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9707500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/operator.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9708570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/os.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9709810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9710860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9711800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/loader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9712910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9714110Z 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-07-24T03:55:08.9715150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/sys.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9716290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/pytree.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9717450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/polyfills/itertools.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo/polyfills 2025-07-24T03:55:08.9718560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/trace_rules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9720730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/bytecode_transformation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9722110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/convert_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9723220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/funcname_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9724300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/testing.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9725450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/pgo.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9726760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9727860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/symbolic_convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9730080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/codegen.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9731000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/source.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9732340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/eval_frame.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9734220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/code_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9735100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/graph_deduplication.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9736380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/current_scope_id.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9737540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/debug_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9738830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_dynamo/decorators.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_dynamo 2025-07-24T03:55:08.9740230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_environment.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9741750Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9742310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/metrics.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9743470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9744650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9745860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/tensor_factory_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9746940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/debug.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9748100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/extract_compiled_graph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9749310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ir_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9750520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/ts_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9752140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/computation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9753180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/closure.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9754420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lazy/device_context.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_lazy 2025-07-24T03:55:08.9755550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/storage.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9757100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:08.9759280Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-07-24T03:55:08.9759690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn 2025-07-24T03:55:08.9760560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat 2025-07-24T03:55:08.9761520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic 2025-07-24T03:55:08.9762200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic 2025-07-24T03:55:08.9763680Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-07-24T03:55:08.9764480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-07-24T03:55:08.9765600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/dynamic/modules 2025-07-24T03:55:08.9766680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat 2025-07-24T03:55:08.9768130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-24T03:55:08.9768800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-24T03:55:08.9769990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-24T03:55:08.9771180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-24T03:55:08.9772340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/qat/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/qat/modules 2025-07-24T03:55:08.9773800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-07-24T03:55:08.9774690Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-07-24T03:55:08.9775410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic 2025-07-24T03:55:08.9776770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:08.9777540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:08.9778760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:08.9780170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:08.9781280Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/dynamic/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/dynamic/modules 2025-07-24T03:55:08.9782690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-07-24T03:55:08.9783770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/functional.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized 2025-07-24T03:55:08.9785340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9786040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/batchnorm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9787270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/functional_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9788400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9789500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9790680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9791810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9793060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/dropout.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9794200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9795590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/normalization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9796720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9798000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/modules/embedding_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/modules 2025-07-24T03:55:08.9799450Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference 2025-07-24T03:55:08.9800200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference 2025-07-24T03:55:08.9801580Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:08.9802300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:08.9803480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:08.9804630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:08.9805840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/sparse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:08.9806980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/conv.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:08.9808070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantized/reference/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantized/reference/modules 2025-07-24T03:55:08.9809340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn 2025-07-24T03:55:08.9810770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable 2025-07-24T03:55:08.9811470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable 2025-07-24T03:55:08.9812840Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-07-24T03:55:08.9813590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-07-24T03:55:08.9814930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules/activation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-07-24T03:55:08.9816110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/quantizable/modules/rnn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/quantizable/modules 2025-07-24T03:55:08.9817620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic 2025-07-24T03:55:08.9818470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-07-24T03:55:08.9819170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat 2025-07-24T03:55:08.9820660Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:08.9821400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/conv_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:08.9822800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:08.9823980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:08.9825310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/qat/modules/linear_fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/qat/modules 2025-07-24T03:55:08.9826620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-07-24T03:55:08.9827760Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-07-24T03:55:08.9828840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic 2025-07-24T03:55:08.9830060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:55:08.9830770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:55:08.9832050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/dynamic/modules 2025-07-24T03:55:08.9833120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized 2025-07-24T03:55:08.9834470Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:08.9835180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/bn_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:08.9836500Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:08.9837700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/conv_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:08.9838860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/linear_relu.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:08.9839970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/quantized/modules/conv_add.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/quantized/modules 2025-07-24T03:55:08.9841150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic 2025-07-24T03:55:08.9842560Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-07-24T03:55:08.9843260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules/fused.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-07-24T03:55:08.9844420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/intrinsic/modules/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/intrinsic/modules 2025-07-24T03:55:08.9845910Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse 2025-07-24T03:55:08.9846710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-07-24T03:55:08.9847530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-07-24T03:55:08.9848330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-07-24T03:55:08.9849570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/dynamic/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized/dynamic 2025-07-24T03:55:08.9850740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/linear.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-07-24T03:55:08.9851970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-07-24T03:55:08.9853070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/quantized/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse/quantized 2025-07-24T03:55:08.9854210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/nn/sparse/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/nn/sparse 2025-07-24T03:55:08.9855590Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-07-24T03:55:08.9856500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9857140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/graph_passes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9858740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/weight_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9859800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/graph_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9861190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9862060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9863380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/pattern_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9864530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/ns_types.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9865790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/n_shadows_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9867240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9868560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/fx/qconfig_multi_mapping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns/fx 2025-07-24T03:55:08.9869680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/_numeric_suite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-07-24T03:55:08.9871070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-07-24T03:55:08.9871940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/ns/_numeric_suite_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/ns 2025-07-24T03:55:08.9873540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao 2025-07-24T03:55:08.9874980Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9875650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9877320Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fuse_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9878910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/_learnable_fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9880430Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9881260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/_common_operator_config_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9882840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/qnnpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9883890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/fbgemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9885040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9886270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/native.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9887570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/observation_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9888390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/onednn.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9889910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9891070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/_qnnpack_pt2e.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9892230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/executorch.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9893720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/backend_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9894850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/x86.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9899840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/backend_config/tensorrt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/backend_config 2025-07-24T03:55:08.9900390Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantization_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9900820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/_correct_bias.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9900970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9901350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/port_metadata_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9901780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/export_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9902900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/qat_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9904290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/duplicate_dq_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9905510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9906700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/graph_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9907880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9908940Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-07-24T03:55:08.9909700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-07-24T03:55:08.9910940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/representation/rewrite.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e/representation 2025-07-24T03:55:08.9912230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9913660Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/_affine_quantization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9915130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9916610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/pt2e/_numeric_debugger.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/pt2e 2025-07-24T03:55:08.9917930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9919530Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9920220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/graph_module.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9921460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/lower_to_fbgemm.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9922600Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_equalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9924130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/lower_to_qnnpack.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9925220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/convert.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9926790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9928230Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:08.9928940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/detector.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:08.9930680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/model_report_visualizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:08.9932090Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/model_report_observer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:08.9933180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:08.9934190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_model_report/model_report.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx/_model_report 2025-07-24T03:55:08.9935410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/quantize_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9936700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9938130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/pattern_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9939290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_lower_to_native_backend.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9940800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/custom_config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9942210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/fuse.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9943380Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/qconfig_mapping_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9944490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/match_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9945810Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/prepare.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9947420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9948520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/_decomposed.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9950010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/fuse_handler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9951140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fx/lstm_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/fx 2025-07-24T03:55:08.9952290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/_equalize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9953460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fake_quantize.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9954880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/qconfig.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9956210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9957450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/qconfig_mapping.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9958630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9959680Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9961080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/fuser_method_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9962210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize_jit.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9963410Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize_pt2e.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9965130Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9965650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/embedding_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9966890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/x86_inductor_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9968510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/xnnpack_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9969730Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/composable_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9970980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/xpu_inductor_quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9972210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9973420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/quantizer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9974530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9975760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization/quantizer 2025-07-24T03:55:08.9977030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quant_type.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9978300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/quantization/quantize_fx.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/quantization 2025-07-24T03:55:08.9979880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-07-24T03:55:08.9980780Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-24T03:55:08.9981490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/weight_norm_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-24T03:55:08.9982800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-24T03:55:08.9983630Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-24T03:55:08.9984950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-24T03:55:08.9986180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/sparsifier/base_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/sparsifier 2025-07-24T03:55:08.9987500Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental 2025-07-24T03:55:08.9988370Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:08.9989210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-07-24T03:55:08.9990080Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-24T03:55:08.9990920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-24T03:55:08.9992080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-24T03:55:08.9993060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks 2025-07-24T03:55:08.9994180Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier/lightning 2025-07-24T03:55:08.9995130Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:08.9996190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:08.9997350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:08.9998470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_sparsifier 2025-07-24T03:55:08.9999720Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:09.0000460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/FPGM_pruner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:09.0001670Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/saliency_pruner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:09.0002890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:09.0004110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:09.0005300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/prune_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:09.0006580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:09.0007710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/parametrization.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:09.0008850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/pruner/match_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/pruner 2025-07-24T03:55:09.0009910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental 2025-07-24T03:55:09.0011060Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-24T03:55:09.0011880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-24T03:55:09.0013170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/activation_sparsifier/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/activation_sparsifier 2025-07-24T03:55:09.0014110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-07-24T03:55:09.0014920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-07-24T03:55:09.0016220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/_experimental/data_scheduler 2025-07-24T03:55:09.0017400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-24T03:55:09.0018340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/base_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-24T03:55:09.0019340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/cubic_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-24T03:55:09.0020480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-24T03:55:09.0021400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/scheduler/lambda_scheduler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning/scheduler 2025-07-24T03:55:09.0022480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-07-24T03:55:09.0023640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/ao/pruning/_mappings.py -> build/bdist.macosx-14.0-arm64/wheel/torch/ao/pruning 2025-07-24T03:55:09.0024970Z creating build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-07-24T03:55:09.0025610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/memory.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-07-24T03:55:09.0026870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-07-24T03:55:09.0028070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/mtia/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/mtia 2025-07-24T03:55:09.0029990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-24T03:55:09.0030340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_python.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-24T03:55:09.0415580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-24T03:55:09.0416790Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_global_deps.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-24T03:55:09.0418120Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libomp.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-24T03:55:09.0423340Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm_windows 2025-07-24T03:55:09.0423870Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm_windows/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm_windows 2025-07-24T03:55:09.0425290Z creating build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-24T03:55:09.0425920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/err.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-24T03:55:09.0427070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/libshm.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-24T03:55:09.0428160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/socket.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-24T03:55:09.0429440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm/alloc_info.h -> build/bdist.macosx-14.0-arm64/wheel/torch/lib/libshm 2025-07-24T03:55:09.0430690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libtorch_cpu.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-24T03:55:10.2012930Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libc10.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-24T03:55:10.2019570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/lib/libshm.dylib -> build/bdist.macosx-14.0-arm64/wheel/torch/lib 2025-07-24T03:55:10.2020950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_VF.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2028330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_compile.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2029420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/py.typed -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2030230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_lobpcg.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2032520Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-07-24T03:55:10.2032990Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/linalg 2025-07-24T03:55:10.2033650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/linalg/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/linalg 2025-07-24T03:55:10.2035020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn 2025-07-24T03:55:10.2035610Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn 2025-07-24T03:55:10.2037170Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn/functional 2025-07-24T03:55:10.2037820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/nn/functional/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/nn/functional 2025-07-24T03:55:10.2039060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-07-24T03:55:10.2040260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-07-24T03:55:10.2042820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_refs/special 2025-07-24T03:55:10.2043310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/special/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs/special 2025-07-24T03:55:10.2044350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_refs/fft.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_refs 2025-07-24T03:55:10.2045820Z creating build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-07-24T03:55:10.2046510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/fft/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/fft 2025-07-24T03:55:10.2047950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/__future__.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2049310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-24T03:55:10.2050020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_memory_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-24T03:55:10.2051430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/itt.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-24T03:55:10.2052590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_pattern_matcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-24T03:55:10.2053760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-24T03:55:10.2054840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-24T03:55:10.2056210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/python_tracer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-24T03:55:10.2057350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/profiler/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/profiler 2025-07-24T03:55:10.2058620Z creating build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-24T03:55:10.2059290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_semi_structured_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-24T03:55:10.2060450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_semi_structured_conversions.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-24T03:55:10.2061530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-24T03:55:10.2062880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/semi_structured.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-24T03:55:10.2064140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_triton_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-24T03:55:10.2065800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/sparse/_triton_ops_meta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/sparse 2025-07-24T03:55:10.2069490Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-07-24T03:55:10.2069940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_awaits/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_awaits 2025-07-24T03:55:10.2070970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_guards.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2072330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_deploy.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2073440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_python_dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2074830Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2075480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_safeguard.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2076880Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-07-24T03:55:10.2077570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-07-24T03:55:10.2078850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/experimental/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/experimental 2025-07-24T03:55:10.2079860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/exported_program.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2081400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/unflatten.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2082850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2084020Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/custom_obj.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2085310Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/passes 2025-07-24T03:55:10.2086000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/passes/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/passes 2025-07-24T03:55:10.2087210Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_remove_effect_tokens_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2088430Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_remove_auto_functionalized_pass.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2089520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2090830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_unlift.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2092060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_trace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2093750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/graph_signature.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2094950Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_wrapper_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2096080Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/decomp_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2097390Z creating build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-24T03:55:10.2098160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/_package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-24T03:55:10.2099540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/_package_weights.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-24T03:55:10.2100720Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/constants.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-24T03:55:10.2101830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/pt2_archive/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export/pt2_archive 2025-07-24T03:55:10.2102850Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_swap.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2104150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_draft_export.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2105760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/dynamic_shapes.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2107450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/export/_tree_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/export 2025-07-24T03:55:10.2112400Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-07-24T03:55:10.2113040Z creating build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-24T03:55:10.2113760Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/nested_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-24T03:55:10.2115220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-24T03:55:10.2116030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/ops.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-24T03:55:10.2117970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/sdpa.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-24T03:55:10.2119100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/_internal/nested_int.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested/_internal 2025-07-24T03:55:10.2120240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/nested/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/nested 2025-07-24T03:55:10.2121800Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_C_flatbuffer 2025-07-24T03:55:10.2122470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_C_flatbuffer/__init__.pyi -> build/bdist.macosx-14.0-arm64/wheel/torch/_C_flatbuffer 2025-07-24T03:55:10.2123580Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_classes.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2124930Z creating build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-07-24T03:55:10.2125710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/cli_function_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-07-24T03:55:10.2126960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-07-24T03:55:10.2127920Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_strobelight/compile_time_profiler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/_strobelight 2025-07-24T03:55:10.2129180Z creating build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-07-24T03:55:10.2129820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/_cache.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-07-24T03:55:10.2130940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/config.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-07-24T03:55:10.2132140Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/compiler/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/compiler 2025-07-24T03:55:10.2133570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-07-24T03:55:10.2134220Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal 2025-07-24T03:55:10.2135570Z creating build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-07-24T03:55:10.2136260Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-07-24T03:55:10.2137350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/signal/windows/windows.py -> build/bdist.macosx-14.0-arm64/wheel/torch/signal/windows 2025-07-24T03:55:10.2138640Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/serialization.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2141010Z creating build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2141530Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/inverse_gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2142550Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/laplace.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2143690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2144900Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2146050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transforms.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2147470Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/dirichlet.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2148690Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/log_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2153100Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/transformed_distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2162780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/geometric.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2183520Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/generalized_pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2184240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/weibull.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2215860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/studentT.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2236250Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multivariate_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2239960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2242570Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/poisson.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2245990Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/beta.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2246800Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kumaraswamy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2248840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2250000Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/relaxed_categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2253170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/lowrank_multivariate_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2253960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/half_cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2254880Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2256010Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/lkj_cholesky.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2257230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/independent.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2259620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/multinomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2260980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exponential.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2262440Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/pareto.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2263510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/negative_binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2270110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/cauchy.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2284360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/von_mises.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2294560Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/distribution.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2299040Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gumbel.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2300770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraint_registry.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2306310Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2307190Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/kl.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2308590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/mixture_same_family.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2309740Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/continuous_bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2310980Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/fishersnedecor.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2312060Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/constraints.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2313330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/uniform.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2314480Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/bernoulli.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2315540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/exp_family.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2316780Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/logistic_normal.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2317960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/one_hot_categorical.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2319030Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/wishart.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2320050Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/gamma.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2321150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/chi2.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2322290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/distributions/binomial.py -> build/bdist.macosx-14.0-arm64/wheel/torch/distributions 2025-07-24T03:55:10.2323710Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2324370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_exporter.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2325830Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/file_structure_representation.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2326910Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mock.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2327970Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2329070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_stdlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2330110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_mangling.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2331350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2332290Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/package_importer.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2333620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_unpickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2334650Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/glob_group.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2335820Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/find_file_dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2336890Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_package_pickler.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2338600Z creating build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-24T03:55:10.2339170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/trace_dependencies.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-24T03:55:10.2340200Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/find_first_use_of_broken_modules.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-24T03:55:10.2341300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-24T03:55:10.2342400Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/analyze/is_from_package.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package/analyze 2025-07-24T03:55:10.2343460Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_importlib.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2344590Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_directory_reader.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2345710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/package/_digraph.py -> build/bdist.macosx-14.0-arm64/wheel/torch/package 2025-07-24T03:55:10.2346710Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torch 2025-07-24T03:55:10.2348270Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share 2025-07-24T03:55:10.2349110Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake 2025-07-24T03:55:10.2354020Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-24T03:55:10.2354620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Caffe2Config.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-24T03:55:10.2355450Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindSYCLToolkit.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-24T03:55:10.2356070Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-24T03:55:10.2356750Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-24T03:55:10.2357770Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix 2025-07-24T03:55:10.2358480Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:10.2359340Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:10.2360210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:10.2361150Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:10.2362330Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:10.2363510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:10.2364700Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA 2025-07-24T03:55:10.2365840Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:10.2366940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:10.2368110Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream 2025-07-24T03:55:10.2369210Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2370360Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/LoadHIP.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2371240Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/mkldnn.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2372160Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/glog.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2373270Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/utils.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2374620Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/protobuf.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2375860Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/mkl.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2376960Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/gflags.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2378070Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/cuda.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2379230Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/public/xpu.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2/public 2025-07-24T03:55:10.2380370Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindCUSPARSELT.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-24T03:55:10.2381510Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindCUDAToolkit.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-24T03:55:10.2382940Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Caffe2Targets.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-24T03:55:10.2384170Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/Caffe2Targets-release.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-24T03:55:10.2385300Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Caffe2/FindCUDSS.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Caffe2 2025-07-24T03:55:10.2386610Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-07-24T03:55:10.2387350Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch/TorchConfig.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-07-24T03:55:10.2388540Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/Torch/TorchConfigVersion.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/Torch 2025-07-24T03:55:10.2389900Z creating build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/ATen 2025-07-24T03:55:10.2390490Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/share/cmake/ATen/ATenConfig.cmake -> build/bdist.macosx-14.0-arm64/wheel/torch/share/cmake/ATen 2025-07-24T03:55:10.2391770Z creating build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-07-24T03:55:10.2392420Z copying build/lib.macosx-14.0-arm64-cpython-312/torch/func/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torch/func 2025-07-24T03:55:10.2395080Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2395550Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/native_function_generation.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2396870Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-07-24T03:55:10.2397580Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build/selector.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-07-24T03:55:10.2398770Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build/operator.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-07-24T03:55:10.2399900Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/selective_build/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/selective_build 2025-07-24T03:55:10.2400660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_vmap_plumbing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2401780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2403730Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged 2025-07-24T03:55:10.2404610Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2405370Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/load_derivatives.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2406860Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/build.bzl -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2407900Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2409120Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_python_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2410480Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_autograd_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2411790Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_variable_factories.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2412850Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2413780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_variable_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2415370Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/README.md -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2416520Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/context.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2417660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_inplace_or_view_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2418990Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/deprecated.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2420050Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/BUILD.bazel -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2421720Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2422390Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_return_types.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2423490Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_enum_tag.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2424610Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_nn_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2425770Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2426930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_fft_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2428060Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_sparse_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2429410Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_linalg_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2430410Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/ViewFuncs.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2431600Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_return_types.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2432840Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2434060Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/TraceType.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2435420Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_variable_methods.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2437100Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/ViewFuncs.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2438440Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_functions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2439700Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_nested_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2440930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/VariableType.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2442150Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/annotated_fn_args.py.in -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2443440Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/VariableType.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2444640Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2445920Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_special_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2447160Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/variable_factories.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2448460Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/python_torch_functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2449660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/templates/Functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd/templates 2025-07-24T03:55:10.2450810Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_trace_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2452120Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_annotated_fn_args.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2453390Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/derivatives.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2455670Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/autograd/gen_view_funcs.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/autograd 2025-07-24T03:55:10.2456890Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen 2025-07-24T03:55:10.2457730Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-07-24T03:55:10.2458580Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native/native_functions.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-07-24T03:55:10.2462800Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/native/tags.yaml -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/native 2025-07-24T03:55:10.2464200Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2465060Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2466240Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/TensorBody.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2467500Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UnboxingFunctions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2468650Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2469860Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RedispatchFunctions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2471040Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Operators.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2472270Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeMetaFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2473520Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2474640Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Operator.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2475890Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegistrationDeclarations.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2476920Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UfuncCPU.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2478120Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UfuncCUDA.cu -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2479320Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2480490Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2481560Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RedispatchFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2482690Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/aten_interned_strings.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2483910Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/MethodOperators.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2485090Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2486230Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Operators.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2487330Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/ATenOpList.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2488670Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2489780Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2490930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/TensorMethods.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2492090Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2493330Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2494500Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UnboxingFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2495660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2496810Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Functions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2497910Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeFunctions.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2499100Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2500140Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2501290Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/enum_tag.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2502360Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Functions.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2503470Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/RegisterSchema.cpp -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2504650Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/LazyNonNativeIr.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2505740Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/Function.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2506940Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/FunctionalInverses.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2508090Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/NativeMetaFunction.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2509360Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/packaged/ATen/templates/LazyIr.h -> build/bdist.macosx-14.0-arm64/wheel/torchgen/packaged/ATen/templates 2025-07-24T03:55:10.2510340Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-24T03:55:10.2511090Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/config.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-24T03:55:10.2512260Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-24T03:55:10.2513060Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/generator.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-24T03:55:10.2514330Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/static_runtime/gen_static_runtime_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/static_runtime 2025-07-24T03:55:10.2515570Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/local.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2516560Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_functionalization_type.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2517860Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/code_template.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2519240Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-07-24T03:55:10.2520040Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-07-24T03:55:10.2521160Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions/gen_mobile_upgraders_constant.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-07-24T03:55:10.2522270Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/operator_versions/gen_mobile_upgraders.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/operator_versions 2025-07-24T03:55:10.2523320Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2524580Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/yaml_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2525680Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_aoti_c_shim.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2526870Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/model.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2528590Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_schema_utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2529660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/context.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2530730Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/utils.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2532240Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-24T03:55:10.2532900Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/lazy_ts_lowering.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-24T03:55:10.2533970Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-24T03:55:10.2535250Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-24T03:55:10.2536350Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/native_functions.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-24T03:55:10.2537420Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/lazy_ir.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-24T03:55:10.2538910Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/dest/register_dispatch_key.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/dest 2025-07-24T03:55:10.2540250Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2540930Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/dispatcher.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2542040Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/translate.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2543530Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-24T03:55:10.2544080Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-24T03:55:10.2545190Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/types.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-24T03:55:10.2546340Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/signatures.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-24T03:55:10.2547380Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/types/types_base.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api/types 2025-07-24T03:55:10.2548410Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/ufunc.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2549450Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2550440Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/native.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2551500Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/cpp.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2552600Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/unboxing.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2553700Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/functionalization.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2554820Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/autograd.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2556180Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/structured.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2557230Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/python.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2558660Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/lazy.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2559870Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/api/meta.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/api 2025-07-24T03:55:10.2560980Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_backend_stubs.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2562430Z creating build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-07-24T03:55:10.2563120Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-07-24T03:55:10.2563940Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/aoti/fallback_ops.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen/aoti 2025-07-24T03:55:10.2564990Z copying build/lib.macosx-14.0-arm64-cpython-312/torchgen/gen_lazy_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/torchgen 2025-07-24T03:55:10.2566600Z creating build/bdist.macosx-14.0-arm64/wheel/functorch 2025-07-24T03:55:10.2567530Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-07-24T03:55:10.2568230Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/control_flow.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-07-24T03:55:10.2569300Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-07-24T03:55:10.2570410Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/experimental/ops.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/experimental 2025-07-24T03:55:10.2571650Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-07-24T03:55:10.2572470Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/make_functional 2025-07-24T03:55:10.2573240Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/make_functional/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/make_functional 2025-07-24T03:55:10.2574240Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src 2025-07-24T03:55:10.2575330Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/eager_transforms 2025-07-24T03:55:10.2576040Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/eager_transforms/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/eager_transforms 2025-07-24T03:55:10.2577260Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/aot_autograd 2025-07-24T03:55:10.2577920Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/aot_autograd/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/aot_autograd 2025-07-24T03:55:10.2579230Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/_src/vmap 2025-07-24T03:55:10.2579930Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_src/vmap/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/_src/vmap 2025-07-24T03:55:10.2581200Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2581910Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/magic_trace.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2583060Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2584230Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/delayed_mul_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2585430Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/op_properties.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2586740Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/batch_tensor.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2587620Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/wrap_type.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2588750Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/reference.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2590010Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/dim.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2591130Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/dim/tree_map.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/dim 2025-07-24T03:55:10.2592220Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-07-24T03:55:10.2593480Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-07-24T03:55:10.2594130Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/compile/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/compile 2025-07-24T03:55:10.2595230Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/_C.cpython-312-darwin.so -> build/bdist.macosx-14.0-arm64/wheel/functorch 2025-07-24T03:55:10.2597820Z creating build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-07-24T03:55:10.2598300Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/_parsing.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-07-24T03:55:10.2599240Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/__init__.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-07-24T03:55:10.2600500Z copying build/lib.macosx-14.0-arm64-cpython-312/functorch/einops/rearrange.py -> build/bdist.macosx-14.0-arm64/wheel/functorch/einops 2025-07-24T03:55:10.2602840Z running install_egg_info 2025-07-24T03:55:10.2634280Z running egg_info 2025-07-24T03:55:10.2639210Z creating torch.egg-info 2025-07-24T03:55:10.2665740Z writing torch.egg-info/PKG-INFO 2025-07-24T03:55:10.2673000Z writing dependency_links to torch.egg-info/dependency_links.txt 2025-07-24T03:55:10.2674140Z writing entry points to torch.egg-info/entry_points.txt 2025-07-24T03:55:10.2677100Z writing requirements to torch.egg-info/requires.txt 2025-07-24T03:55:10.2678150Z writing top-level names to torch.egg-info/top_level.txt 2025-07-24T03:55:10.2679010Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-07-24T03:55:10.6322990Z reading manifest file 'torch.egg-info/SOURCES.txt' 2025-07-24T03:55:10.6323890Z reading manifest template 'MANIFEST.in' 2025-07-24T03:55:10.6367110Z warning: no files found matching 'BUILD' 2025-07-24T03:55:10.6367830Z warning: no files found matching '*.BUILD' 2025-07-24T03:55:10.6368950Z warning: no files found matching 'BUCK' 2025-07-24T03:55:10.6373920Z warning: no files found matching '[Mm]akefile.*' 2025-07-24T03:55:10.6375710Z warning: no files found matching '*.[Dd]ockerfile' 2025-07-24T03:55:10.6376510Z warning: no files found matching '[Dd]ockerfile.*' 2025-07-24T03:55:15.3948440Z warning: no previously-included files matching '*.o' found anywhere in distribution 2025-07-24T03:55:15.4496310Z warning: no previously-included files matching '*.obj' found anywhere in distribution 2025-07-24T03:55:15.8525840Z no previously-included directories found matching '*/.git' 2025-07-24T03:55:15.9478440Z warning: no previously-included files matching '*~' found anywhere in distribution 2025-07-24T03:55:16.0027580Z warning: no previously-included files matching '*.swp' found anywhere in distribution 2025-07-24T03:55:16.0027890Z adding license file 'LICENSE' 2025-07-24T03:55:16.0028060Z adding license file 'NOTICE' 2025-07-24T03:55:16.7072050Z writing manifest file 'torch.egg-info/SOURCES.txt' 2025-07-24T03:55:16.7404810Z Copying torch.egg-info to build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+git27c8ef1-py3.12.egg-info 2025-07-24T03:55:16.7625530Z running install_scripts 2025-07-24T03:55:16.7743150Z creating build/bdist.macosx-14.0-arm64/wheel/torch-2.9.0a0+git27c8ef1.dist-info/WHEEL 2025-07-24T03:55:16.7746090Z creating 'dist/torch-2.9.0a0+git27c8ef1-cp312-cp312-macosx_11_0_arm64.whl' and adding 'build/bdist.macosx-14.0-arm64/wheel' to it 2025-07-24T03:55:16.7844820Z adding 'functorch/_C.cpython-312-darwin.so' 2025-07-24T03:55:16.7847330Z adding 'functorch/__init__.py' 2025-07-24T03:55:16.7848690Z adding 'functorch/_src/__init__.py' 2025-07-24T03:55:16.7850180Z adding 'functorch/_src/aot_autograd/__init__.py' 2025-07-24T03:55:16.7851390Z adding 'functorch/_src/eager_transforms/__init__.py' 2025-07-24T03:55:16.7852530Z adding 'functorch/_src/make_functional/__init__.py' 2025-07-24T03:55:16.7853860Z adding 'functorch/_src/vmap/__init__.py' 2025-07-24T03:55:16.7855040Z adding 'functorch/compile/__init__.py' 2025-07-24T03:55:16.7857280Z adding 'functorch/dim/__init__.py' 2025-07-24T03:55:16.7858100Z adding 'functorch/dim/batch_tensor.py' 2025-07-24T03:55:16.7859290Z adding 'functorch/dim/delayed_mul_tensor.py' 2025-07-24T03:55:16.7861030Z adding 'functorch/dim/dim.py' 2025-07-24T03:55:16.7861950Z adding 'functorch/dim/magic_trace.py' 2025-07-24T03:55:16.7863970Z adding 'functorch/dim/op_properties.py' 2025-07-24T03:55:16.7869160Z adding 'functorch/dim/reference.py' 2025-07-24T03:55:16.7869790Z adding 'functorch/dim/tree_map.py' 2025-07-24T03:55:16.7870870Z adding 'functorch/dim/wrap_type.py' 2025-07-24T03:55:16.7875090Z adding 'functorch/einops/__init__.py' 2025-07-24T03:55:16.7875290Z adding 'functorch/einops/_parsing.py' 2025-07-24T03:55:16.7877420Z adding 'functorch/einops/rearrange.py' 2025-07-24T03:55:16.7878050Z adding 'functorch/experimental/__init__.py' 2025-07-24T03:55:16.7878870Z adding 'functorch/experimental/control_flow.py' 2025-07-24T03:55:16.7879740Z adding 'functorch/experimental/ops.py' 2025-07-24T03:55:16.7884430Z adding 'torch/_C.cpython-312-darwin.so' 2025-07-24T03:55:16.7885350Z adding 'torch/_VF.py' 2025-07-24T03:55:16.8031050Z adding 'torch/_VF.pyi' 2025-07-24T03:55:16.8036950Z adding 'torch/__config__.py' 2025-07-24T03:55:16.8038760Z adding 'torch/__future__.py' 2025-07-24T03:55:16.8062740Z adding 'torch/__init__.py' 2025-07-24T03:55:16.8067730Z adding 'torch/_appdirs.py' 2025-07-24T03:55:16.8068960Z adding 'torch/_classes.py' 2025-07-24T03:55:16.8070130Z adding 'torch/_compile.py' 2025-07-24T03:55:16.8073300Z adding 'torch/_custom_ops.py' 2025-07-24T03:55:16.8074470Z adding 'torch/_deploy.py' 2025-07-24T03:55:16.8075360Z adding 'torch/_environment.py' 2025-07-24T03:55:16.8084070Z adding 'torch/_guards.py' 2025-07-24T03:55:16.8097410Z adding 'torch/_jit_internal.py' 2025-07-24T03:55:16.8099170Z adding 'torch/_linalg_utils.py' 2025-07-24T03:55:16.8108610Z adding 'torch/_lobpcg.py' 2025-07-24T03:55:16.8111270Z adding 'torch/_lowrank.py' 2025-07-24T03:55:16.8160910Z adding 'torch/_meta_registrations.py' 2025-07-24T03:55:16.8163850Z adding 'torch/_namedtensor_internals.py' 2025-07-24T03:55:16.8177880Z adding 'torch/_ops.py' 2025-07-24T03:55:16.8180580Z adding 'torch/_python_dispatcher.py' 2025-07-24T03:55:16.8181610Z adding 'torch/_size_docs.py' 2025-07-24T03:55:16.8183700Z adding 'torch/_sources.py' 2025-07-24T03:55:16.8184560Z adding 'torch/_storage_docs.py' 2025-07-24T03:55:16.8185490Z adding 'torch/_streambase.py' 2025-07-24T03:55:16.8200860Z adding 'torch/_tensor.py' 2025-07-24T03:55:16.8227610Z adding 'torch/_tensor_docs.py' 2025-07-24T03:55:16.8233980Z adding 'torch/_tensor_str.py' 2025-07-24T03:55:16.8234730Z adding 'torch/_thread_safe_fork.py' 2025-07-24T03:55:16.8321890Z adding 'torch/_torch_docs.py' 2025-07-24T03:55:16.8333160Z adding 'torch/_utils.py' 2025-07-24T03:55:16.8336360Z adding 'torch/_utils_internal.py' 2025-07-24T03:55:16.8338910Z adding 'torch/_vmap_internals.py' 2025-07-24T03:55:16.8343200Z adding 'torch/_weights_only_unpickler.py' 2025-07-24T03:55:16.8362470Z adding 'torch/functional.py' 2025-07-24T03:55:16.8370390Z adding 'torch/hub.py' 2025-07-24T03:55:16.8383360Z adding 'torch/library.py' 2025-07-24T03:55:16.8400080Z adding 'torch/overrides.py' 2025-07-24T03:55:16.8401070Z adding 'torch/py.typed' 2025-07-24T03:55:16.8403500Z adding 'torch/quasirandom.py' 2025-07-24T03:55:16.8405620Z adding 'torch/random.py' 2025-07-24T03:55:16.8406430Z adding 'torch/return_types.py' 2025-07-24T03:55:16.8408510Z adding 'torch/return_types.pyi' 2025-07-24T03:55:16.8426590Z adding 'torch/serialization.py' 2025-07-24T03:55:16.8436020Z adding 'torch/storage.py' 2025-07-24T03:55:16.8437260Z adding 'torch/torch_version.py' 2025-07-24T03:55:16.8438780Z adding 'torch/types.py' 2025-07-24T03:55:16.8439610Z adding 'torch/version.py' 2025-07-24T03:55:16.8587400Z adding 'torch/_C/_VariableFunctions.pyi' 2025-07-24T03:55:16.8650120Z adding 'torch/_C/__init__.pyi' 2025-07-24T03:55:16.8653450Z adding 'torch/_C/_aoti.pyi' 2025-07-24T03:55:16.8654830Z adding 'torch/_C/_autograd.pyi' 2025-07-24T03:55:16.8655750Z adding 'torch/_C/_cpu.pyi' 2025-07-24T03:55:16.8656650Z adding 'torch/_C/_cudnn.pyi' 2025-07-24T03:55:16.8657470Z adding 'torch/_C/_cusparselt.pyi' 2025-07-24T03:55:16.8658380Z adding 'torch/_C/_distributed_autograd.pyi' 2025-07-24T03:55:16.8662960Z adding 'torch/_C/_distributed_c10d.pyi' 2025-07-24T03:55:16.8664410Z adding 'torch/_C/_distributed_rpc.pyi' 2025-07-24T03:55:16.8665440Z adding 'torch/_C/_distributed_rpc_testing.pyi' 2025-07-24T03:55:16.8666320Z adding 'torch/_C/_functions.pyi' 2025-07-24T03:55:16.8667460Z adding 'torch/_C/_functorch.pyi' 2025-07-24T03:55:16.8668250Z adding 'torch/_C/_instruction_counter.pyi' 2025-07-24T03:55:16.8669070Z adding 'torch/_C/_itt.pyi' 2025-07-24T03:55:16.8670580Z adding 'torch/_C/_jit_tree_views.pyi' 2025-07-24T03:55:16.8671450Z adding 'torch/_C/_lazy.pyi' 2025-07-24T03:55:16.8672320Z adding 'torch/_C/_lazy_ts_backend.pyi' 2025-07-24T03:55:16.8673350Z adding 'torch/_C/_monitor.pyi' 2025-07-24T03:55:16.8674870Z adding 'torch/_C/_nn.pyi' 2025-07-24T03:55:16.8675680Z adding 'torch/_C/_nvtx.pyi' 2025-07-24T03:55:16.8676570Z adding 'torch/_C/_onnx.pyi' 2025-07-24T03:55:16.8678620Z adding 'torch/_C/_profiler.pyi' 2025-07-24T03:55:16.8679130Z adding 'torch/_C/_verbose.pyi' 2025-07-24T03:55:16.8680260Z adding 'torch/_C/_dynamo/__init__.pyi' 2025-07-24T03:55:16.8681150Z adding 'torch/_C/_dynamo/compiled_autograd.pyi' 2025-07-24T03:55:16.8682370Z adding 'torch/_C/_dynamo/eval_frame.pyi' 2025-07-24T03:55:16.8683710Z adding 'torch/_C/_dynamo/guards.pyi' 2025-07-24T03:55:16.8684770Z adding 'torch/_C/_export/__init__.pyi' 2025-07-24T03:55:16.8685640Z adding 'torch/_C/_export/pt2_archive_constants.pyi' 2025-07-24T03:55:16.8686730Z adding 'torch/_C_flatbuffer/__init__.pyi' 2025-07-24T03:55:16.8688060Z adding 'torch/_awaits/__init__.py' 2025-07-24T03:55:16.8689010Z adding 'torch/_custom_op/__init__.py' 2025-07-24T03:55:16.8692030Z adding 'torch/_custom_op/autograd.py' 2025-07-24T03:55:16.8697430Z adding 'torch/_custom_op/impl.py' 2025-07-24T03:55:16.8701360Z adding 'torch/_decomp/__init__.py' 2025-07-24T03:55:16.8738550Z adding 'torch/_decomp/decompositions.py' 2025-07-24T03:55:16.8742270Z adding 'torch/_decomp/decompositions_for_jvp.py' 2025-07-24T03:55:16.8744710Z adding 'torch/_decomp/decompositions_for_rng.py' 2025-07-24T03:55:16.8745530Z adding 'torch/_dispatch/__init__.py' 2025-07-24T03:55:16.8747820Z adding 'torch/_dispatch/python.py' 2025-07-24T03:55:16.8750190Z adding 'torch/_dynamo/__init__.py' 2025-07-24T03:55:16.8752900Z adding 'torch/_dynamo/_trace_wrapped_higher_order_op.py' 2025-07-24T03:55:16.8755220Z adding 'torch/_dynamo/bytecode_analysis.py' 2025-07-24T03:55:16.8768400Z adding 'torch/_dynamo/bytecode_transformation.py' 2025-07-24T03:55:16.8770930Z adding 'torch/_dynamo/cache_size.py' 2025-07-24T03:55:16.8772290Z adding 'torch/_dynamo/callback.py' 2025-07-24T03:55:16.8773470Z adding 'torch/_dynamo/code_context.py' 2025-07-24T03:55:16.8779330Z adding 'torch/_dynamo/codegen.py' 2025-07-24T03:55:16.8791800Z adding 'torch/_dynamo/compiled_autograd.py' 2025-07-24T03:55:16.8795430Z adding 'torch/_dynamo/comptime.py' 2025-07-24T03:55:16.8802590Z adding 'torch/_dynamo/config.py' 2025-07-24T03:55:16.8815710Z adding 'torch/_dynamo/convert_frame.py' 2025-07-24T03:55:16.8817020Z adding 'torch/_dynamo/create_parameter_op.py' 2025-07-24T03:55:16.8818050Z adding 'torch/_dynamo/current_scope_id.py' 2025-07-24T03:55:16.8825590Z adding 'torch/_dynamo/debug_utils.py' 2025-07-24T03:55:16.8833450Z adding 'torch/_dynamo/decorators.py' 2025-07-24T03:55:16.8836770Z adding 'torch/_dynamo/device_interface.py' 2025-07-24T03:55:16.8837700Z adding 'torch/_dynamo/distributed.py' 2025-07-24T03:55:16.8857710Z adding 'torch/_dynamo/eval_frame.py' 2025-07-24T03:55:16.8863190Z adding 'torch/_dynamo/exc.py' 2025-07-24T03:55:16.8865520Z adding 'torch/_dynamo/external_utils.py' 2025-07-24T03:55:16.8866510Z adding 'torch/_dynamo/funcname_cache.py' 2025-07-24T03:55:16.8867530Z adding 'torch/_dynamo/graph_break_hints.py' 2025-07-24T03:55:16.8882310Z adding 'torch/_dynamo/graph_break_registry.json' 2025-07-24T03:55:16.8887090Z adding 'torch/_dynamo/graph_deduplication.py' 2025-07-24T03:55:16.8891270Z adding 'torch/_dynamo/graph_region_tracker.py' 2025-07-24T03:55:16.8892210Z adding 'torch/_dynamo/graph_utils.py' 2025-07-24T03:55:16.8924480Z adding 'torch/_dynamo/guards.py' 2025-07-24T03:55:16.8926270Z adding 'torch/_dynamo/hooks.py' 2025-07-24T03:55:16.8927350Z adding 'torch/_dynamo/logging.py' 2025-07-24T03:55:16.8929620Z adding 'torch/_dynamo/metrics_context.py' 2025-07-24T03:55:16.8931050Z adding 'torch/_dynamo/mutation_guard.py' 2025-07-24T03:55:16.8962520Z adding 'torch/_dynamo/output_graph.py' 2025-07-24T03:55:16.8968490Z adding 'torch/_dynamo/package.py' 2025-07-24T03:55:16.8975610Z adding 'torch/_dynamo/pgo.py' 2025-07-24T03:55:16.8977990Z adding 'torch/_dynamo/precompile_context.py' 2025-07-24T03:55:16.8979460Z adding 'torch/_dynamo/profiler.py' 2025-07-24T03:55:16.8980910Z adding 'torch/_dynamo/replay_record.py' 2025-07-24T03:55:16.8986110Z adding 'torch/_dynamo/resume_execution.py' 2025-07-24T03:55:16.8996120Z adding 'torch/_dynamo/side_effects.py' 2025-07-24T03:55:16.9001380Z adding 'torch/_dynamo/source.py' 2025-07-24T03:55:16.9037100Z adding 'torch/_dynamo/symbolic_convert.py' 2025-07-24T03:55:16.9039230Z adding 'torch/_dynamo/tensor_version_op.py' 2025-07-24T03:55:16.9041340Z adding 'torch/_dynamo/test_case.py' 2025-07-24T03:55:16.9042070Z adding 'torch/_dynamo/test_dont_skip_tracing_functions.py' 2025-07-24T03:55:16.9045190Z adding 'torch/_dynamo/test_minifier_common.py' 2025-07-24T03:55:16.9048850Z adding 'torch/_dynamo/testing.py' 2025-07-24T03:55:16.9073060Z adding 'torch/_dynamo/trace_rules.py' 2025-07-24T03:55:16.9075460Z adding 'torch/_dynamo/types.py' 2025-07-24T03:55:16.9113550Z adding 'torch/_dynamo/utils.py' 2025-07-24T03:55:16.9115700Z adding 'torch/_dynamo/backends/__init__.py' 2025-07-24T03:55:16.9117220Z adding 'torch/_dynamo/backends/common.py' 2025-07-24T03:55:16.9119880Z adding 'torch/_dynamo/backends/cudagraphs.py' 2025-07-24T03:55:16.9123370Z adding 'torch/_dynamo/backends/debugging.py' 2025-07-24T03:55:16.9129590Z adding 'torch/_dynamo/backends/distributed.py' 2025-07-24T03:55:16.9130470Z adding 'torch/_dynamo/backends/inductor.py' 2025-07-24T03:55:16.9131660Z adding 'torch/_dynamo/backends/onnxrt.py' 2025-07-24T03:55:16.9133720Z adding 'torch/_dynamo/backends/registry.py' 2025-07-24T03:55:16.9134310Z adding 'torch/_dynamo/backends/tensorrt.py' 2025-07-24T03:55:16.9135450Z adding 'torch/_dynamo/backends/torchxla.py' 2025-07-24T03:55:16.9137780Z adding 'torch/_dynamo/backends/tvm.py' 2025-07-24T03:55:16.9140930Z adding 'torch/_dynamo/polyfills/__init__.py' 2025-07-24T03:55:16.9141710Z adding 'torch/_dynamo/polyfills/builtins.py' 2025-07-24T03:55:16.9142700Z adding 'torch/_dynamo/polyfills/functools.py' 2025-07-24T03:55:16.9143710Z adding 'torch/_dynamo/polyfills/fx.py' 2025-07-24T03:55:16.9145700Z adding 'torch/_dynamo/polyfills/itertools.py' 2025-07-24T03:55:16.9146390Z adding 'torch/_dynamo/polyfills/loader.py' 2025-07-24T03:55:16.9147680Z adding 'torch/_dynamo/polyfills/operator.py' 2025-07-24T03:55:16.9148640Z adding 'torch/_dynamo/polyfills/os.py' 2025-07-24T03:55:16.9152000Z adding 'torch/_dynamo/polyfills/pytree.py' 2025-07-24T03:55:16.9152650Z adding 'torch/_dynamo/polyfills/struct.py' 2025-07-24T03:55:16.9153530Z adding 'torch/_dynamo/polyfills/sys.py' 2025-07-24T03:55:16.9154550Z adding 'torch/_dynamo/polyfills/tensor.py' 2025-07-24T03:55:16.9155520Z adding 'torch/_dynamo/repro/__init__.py' 2025-07-24T03:55:16.9164130Z adding 'torch/_dynamo/repro/after_aot.py' 2025-07-24T03:55:16.9168760Z adding 'torch/_dynamo/repro/after_dynamo.py' 2025-07-24T03:55:16.9173630Z adding 'torch/_dynamo/repro/aoti.py' 2025-07-24T03:55:16.9175980Z adding 'torch/_dynamo/variables/__init__.py' 2025-07-24T03:55:16.9181060Z adding 'torch/_dynamo/variables/base.py' 2025-07-24T03:55:16.9214600Z adding 'torch/_dynamo/variables/builder.py' 2025-07-24T03:55:16.9234140Z adding 'torch/_dynamo/variables/builtin.py' 2025-07-24T03:55:16.9237390Z adding 'torch/_dynamo/variables/constant.py' 2025-07-24T03:55:16.9245610Z adding 'torch/_dynamo/variables/ctx_manager.py' 2025-07-24T03:55:16.9253660Z adding 'torch/_dynamo/variables/dicts.py' 2025-07-24T03:55:16.9257170Z adding 'torch/_dynamo/variables/distributed.py' 2025-07-24T03:55:16.9275460Z adding 'torch/_dynamo/variables/functions.py' 2025-07-24T03:55:16.9300420Z adding 'torch/_dynamo/variables/higher_order_ops.py' 2025-07-24T03:55:16.9304940Z adding 'torch/_dynamo/variables/iter.py' 2025-07-24T03:55:16.9307220Z adding 'torch/_dynamo/variables/lazy.py' 2025-07-24T03:55:16.9315300Z adding 'torch/_dynamo/variables/lists.py' 2025-07-24T03:55:16.9329830Z adding 'torch/_dynamo/variables/misc.py' 2025-07-24T03:55:16.9340330Z adding 'torch/_dynamo/variables/nn_module.py' 2025-07-24T03:55:16.9344220Z adding 'torch/_dynamo/variables/optimizer.py' 2025-07-24T03:55:16.9345590Z adding 'torch/_dynamo/variables/script_object.py' 2025-07-24T03:55:16.9346910Z adding 'torch/_dynamo/variables/sdpa.py' 2025-07-24T03:55:16.9360640Z adding 'torch/_dynamo/variables/tensor.py' 2025-07-24T03:55:16.9375590Z adding 'torch/_dynamo/variables/torch.py' 2025-07-24T03:55:16.9382060Z adding 'torch/_dynamo/variables/torch_function.py' 2025-07-24T03:55:16.9397060Z adding 'torch/_dynamo/variables/user_defined.py' 2025-07-24T03:55:16.9399800Z adding 'torch/_export/__init__.py' 2025-07-24T03:55:16.9413060Z adding 'torch/_export/converter.py' 2025-07-24T03:55:16.9414430Z adding 'torch/_export/error.py' 2025-07-24T03:55:16.9423760Z adding 'torch/_export/non_strict_utils.py' 2025-07-24T03:55:16.9427420Z adding 'torch/_export/pass_base.py' 2025-07-24T03:55:16.9428950Z adding 'torch/_export/tools.py' 2025-07-24T03:55:16.9442250Z adding 'torch/_export/utils.py' 2025-07-24T03:55:16.9446240Z adding 'torch/_export/verifier.py' 2025-07-24T03:55:16.9448790Z adding 'torch/_export/wrappers.py' 2025-07-24T03:55:16.9450040Z adding 'torch/_export/db/__init__.py' 2025-07-24T03:55:16.9452060Z adding 'torch/_export/db/case.py' 2025-07-24T03:55:16.9452650Z adding 'torch/_export/db/gen_example.py' 2025-07-24T03:55:16.9453830Z adding 'torch/_export/db/logging.py' 2025-07-24T03:55:16.9455850Z adding 'torch/_export/db/examples/__init__.py' 2025-07-24T03:55:16.9456510Z adding 'torch/_export/db/examples/assume_constant_result.py' 2025-07-24T03:55:16.9457380Z adding 'torch/_export/db/examples/autograd_function.py' 2025-07-24T03:55:16.9458290Z adding 'torch/_export/db/examples/class_method.py' 2025-07-24T03:55:16.9459380Z adding 'torch/_export/db/examples/cond_branch_class_method.py' 2025-07-24T03:55:16.9460380Z adding 'torch/_export/db/examples/cond_branch_nested_function.py' 2025-07-24T03:55:16.9461580Z adding 'torch/_export/db/examples/cond_branch_nonlocal_variables.py' 2025-07-24T03:55:16.9462480Z adding 'torch/_export/db/examples/cond_closed_over_variable.py' 2025-07-24T03:55:16.9463360Z adding 'torch/_export/db/examples/cond_operands.py' 2025-07-24T03:55:16.9464270Z adding 'torch/_export/db/examples/cond_predicate.py' 2025-07-24T03:55:16.9465200Z adding 'torch/_export/db/examples/constrain_as_size_example.py' 2025-07-24T03:55:16.9466190Z adding 'torch/_export/db/examples/constrain_as_value_example.py' 2025-07-24T03:55:16.9467030Z adding 'torch/_export/db/examples/decorator.py' 2025-07-24T03:55:16.9467850Z adding 'torch/_export/db/examples/dictionary.py' 2025-07-24T03:55:16.9468720Z adding 'torch/_export/db/examples/dynamic_shape_assert.py' 2025-07-24T03:55:16.9469670Z adding 'torch/_export/db/examples/dynamic_shape_constructor.py' 2025-07-24T03:55:16.9470530Z adding 'torch/_export/db/examples/dynamic_shape_if_guard.py' 2025-07-24T03:55:16.9471330Z adding 'torch/_export/db/examples/dynamic_shape_map.py' 2025-07-24T03:55:16.9472230Z adding 'torch/_export/db/examples/dynamic_shape_round.py' 2025-07-24T03:55:16.9473190Z adding 'torch/_export/db/examples/dynamic_shape_slicing.py' 2025-07-24T03:55:16.9474040Z adding 'torch/_export/db/examples/dynamic_shape_view.py' 2025-07-24T03:55:16.9474920Z adding 'torch/_export/db/examples/fn_with_kwargs.py' 2025-07-24T03:55:16.9475740Z adding 'torch/_export/db/examples/list_contains.py' 2025-07-24T03:55:16.9476740Z adding 'torch/_export/db/examples/list_unpack.py' 2025-07-24T03:55:16.9477700Z adding 'torch/_export/db/examples/model_attr_mutation.py' 2025-07-24T03:55:16.9478490Z adding 'torch/_export/db/examples/nested_function.py' 2025-07-24T03:55:16.9479470Z adding 'torch/_export/db/examples/null_context_manager.py' 2025-07-24T03:55:16.9480370Z adding 'torch/_export/db/examples/optional_input.py' 2025-07-24T03:55:16.9481210Z adding 'torch/_export/db/examples/pytree_flatten.py' 2025-07-24T03:55:16.9482060Z adding 'torch/_export/db/examples/scalar_output.py' 2025-07-24T03:55:16.9482940Z adding 'torch/_export/db/examples/specialized_attribute.py' 2025-07-24T03:55:16.9483800Z adding 'torch/_export/db/examples/static_for_loop.py' 2025-07-24T03:55:16.9484600Z adding 'torch/_export/db/examples/static_if.py' 2025-07-24T03:55:16.9485390Z adding 'torch/_export/db/examples/tensor_setattr.py' 2025-07-24T03:55:16.9486240Z adding 'torch/_export/db/examples/type_reflection_method.py' 2025-07-24T03:55:16.9487140Z adding 'torch/_export/db/examples/unsupported_operator.py' 2025-07-24T03:55:16.9487970Z adding 'torch/_export/db/examples/user_input_mutation.py' 2025-07-24T03:55:16.9488990Z adding 'torch/_export/pass_infra/__init__.py' 2025-07-24T03:55:16.9489940Z adding 'torch/_export/pass_infra/node_metadata.py' 2025-07-24T03:55:16.9491010Z adding 'torch/_export/pass_infra/proxy_value.py' 2025-07-24T03:55:16.9492200Z adding 'torch/_export/passes/__init__.py' 2025-07-24T03:55:16.9493430Z adding 'torch/_export/passes/_node_metadata_hook.py' 2025-07-24T03:55:16.9496200Z adding 'torch/_export/passes/add_runtime_assertions_for_constraints_pass.py' 2025-07-24T03:55:16.9497660Z adding 'torch/_export/passes/collect_tracepoints_pass.py' 2025-07-24T03:55:16.9500730Z adding 'torch/_export/passes/constant_folding.py' 2025-07-24T03:55:16.9501850Z adding 'torch/_export/passes/functionalize_side_effectful_ops_pass.py' 2025-07-24T03:55:16.9503050Z adding 'torch/_export/passes/insert_custom_op_guards.py' 2025-07-24T03:55:16.9506980Z adding 'torch/_export/passes/lift_constants_pass.py' 2025-07-24T03:55:16.9507850Z adding 'torch/_export/passes/remove_runtime_assertions.py' 2025-07-24T03:55:16.9510140Z adding 'torch/_export/passes/replace_autocast_with_hop_pass.py' 2025-07-24T03:55:16.9515130Z adding 'torch/_export/passes/replace_quantized_ops_with_standard_ops_pass.py' 2025-07-24T03:55:16.9516480Z adding 'torch/_export/passes/replace_set_grad_with_hop_pass.py' 2025-07-24T03:55:16.9517700Z adding 'torch/_export/passes/replace_view_ops_with_view_copy_ops_pass.py' 2025-07-24T03:55:16.9520010Z adding 'torch/_export/passes/replace_with_hop_pass_util.py' 2025-07-24T03:55:16.9520710Z adding 'torch/_export/serde/__init__.py' 2025-07-24T03:55:16.9523700Z adding 'torch/_export/serde/dynamic_shapes.py' 2025-07-24T03:55:16.9525850Z adding 'torch/_export/serde/export_schema.thrift' 2025-07-24T03:55:16.9528970Z adding 'torch/_export/serde/schema.py' 2025-07-24T03:55:16.9531140Z adding 'torch/_export/serde/schema.yaml' 2025-07-24T03:55:16.9535840Z adding 'torch/_export/serde/schema_check.py' 2025-07-24T03:55:16.9564470Z adding 'torch/_export/serde/serialize.py' 2025-07-24T03:55:16.9566660Z adding 'torch/_export/serde/union.py' 2025-07-24T03:55:16.9567810Z adding 'torch/_functorch/__init__.py' 2025-07-24T03:55:16.9582090Z adding 'torch/_functorch/aot_autograd.py' 2025-07-24T03:55:16.9586650Z adding 'torch/_functorch/apis.py' 2025-07-24T03:55:16.9592810Z adding 'torch/_functorch/autograd_function.py' 2025-07-24T03:55:16.9593670Z adding 'torch/_functorch/batch_norm_replacement.py' 2025-07-24T03:55:16.9595920Z adding 'torch/_functorch/benchmark_utils.py' 2025-07-24T03:55:16.9598070Z adding 'torch/_functorch/compile_utils.py' 2025-07-24T03:55:16.9601300Z adding 'torch/_functorch/compilers.py' 2025-07-24T03:55:16.9605320Z adding 'torch/_functorch/config.py' 2025-07-24T03:55:16.9606620Z adding 'torch/_functorch/deprecated.py' 2025-07-24T03:55:16.9621680Z adding 'torch/_functorch/eager_transforms.py' 2025-07-24T03:55:16.9624850Z adding 'torch/_functorch/functional_call.py' 2025-07-24T03:55:16.9628690Z adding 'torch/_functorch/fx_minifier.py' 2025-07-24T03:55:16.9633200Z adding 'torch/_functorch/make_functional.py' 2025-07-24T03:55:16.9657480Z adding 'torch/_functorch/partitioners.py' 2025-07-24T03:55:16.9660570Z adding 'torch/_functorch/pyfunctorch.py' 2025-07-24T03:55:16.9661420Z adding 'torch/_functorch/python_key.py' 2025-07-24T03:55:16.9662360Z adding 'torch/_functorch/pytree_hacks.py' 2025-07-24T03:55:16.9667300Z adding 'torch/_functorch/top_operators_github_usage.py' 2025-07-24T03:55:16.9668070Z adding 'torch/_functorch/utils.py' 2025-07-24T03:55:16.9672820Z adding 'torch/_functorch/vmap.py' 2025-07-24T03:55:16.9673860Z adding 'torch/_functorch/_activation_checkpointing/__init__.py' 2025-07-24T03:55:16.9675470Z adding 'torch/_functorch/_activation_checkpointing/ac_logging_utils.py' 2025-07-24T03:55:16.9680310Z adding 'torch/_functorch/_activation_checkpointing/graph_info_provider.py' 2025-07-24T03:55:16.9680660Z adding 'torch/_functorch/_activation_checkpointing/knapsack.py' 2025-07-24T03:55:16.9682060Z adding 'torch/_functorch/_activation_checkpointing/knapsack_evaluator.py' 2025-07-24T03:55:16.9683300Z adding 'torch/_functorch/_aot_autograd/__init__.py' 2025-07-24T03:55:16.9696190Z adding 'torch/_functorch/_aot_autograd/autograd_cache.py' 2025-07-24T03:55:16.9705860Z adding 'torch/_functorch/_aot_autograd/collect_metadata_analysis.py' 2025-07-24T03:55:16.9708880Z adding 'torch/_functorch/_aot_autograd/frontend_utils.py' 2025-07-24T03:55:16.9713470Z adding 'torch/_functorch/_aot_autograd/functional_utils.py' 2025-07-24T03:55:16.9716290Z adding 'torch/_functorch/_aot_autograd/graph_capture.py' 2025-07-24T03:55:16.9727620Z adding 'torch/_functorch/_aot_autograd/graph_capture_wrappers.py' 2025-07-24T03:55:16.9745630Z adding 'torch/_functorch/_aot_autograd/graph_compile.py' 2025-07-24T03:55:16.9749890Z adding 'torch/_functorch/_aot_autograd/input_output_analysis.py' 2025-07-24T03:55:16.9751360Z adding 'torch/_functorch/_aot_autograd/logging_utils.py' 2025-07-24T03:55:16.9775180Z adding 'torch/_functorch/_aot_autograd/runtime_wrappers.py' 2025-07-24T03:55:16.9788510Z adding 'torch/_functorch/_aot_autograd/schemas.py' 2025-07-24T03:55:16.9790410Z adding 'torch/_functorch/_aot_autograd/subclass_parametrization.py' 2025-07-24T03:55:16.9794680Z adding 'torch/_functorch/_aot_autograd/subclass_utils.py' 2025-07-24T03:55:16.9799170Z adding 'torch/_functorch/_aot_autograd/utils.py' 2025-07-24T03:55:16.9801920Z adding 'torch/_higher_order_ops/__init__.py' 2025-07-24T03:55:16.9802970Z adding 'torch/_higher_order_ops/_invoke_quant.py' 2025-07-24T03:55:16.9805140Z adding 'torch/_higher_order_ops/aoti_call_delegate.py' 2025-07-24T03:55:16.9809280Z adding 'torch/_higher_order_ops/associative_scan.py' 2025-07-24T03:55:16.9816590Z adding 'torch/_higher_order_ops/auto_functionalize.py' 2025-07-24T03:55:16.9819600Z adding 'torch/_higher_order_ops/base_hop.py' 2025-07-24T03:55:16.9826020Z adding 'torch/_higher_order_ops/cond.py' 2025-07-24T03:55:16.9828800Z adding 'torch/_higher_order_ops/effects.py' 2025-07-24T03:55:16.9830600Z adding 'torch/_higher_order_ops/executorch_call_delegate.py' 2025-07-24T03:55:16.9832000Z adding 'torch/_higher_order_ops/flat_apply.py' 2025-07-24T03:55:16.9839440Z adding 'torch/_higher_order_ops/flex_attention.py' 2025-07-24T03:55:16.9840340Z adding 'torch/_higher_order_ops/foreach_map.py' 2025-07-24T03:55:16.9842330Z adding 'torch/_higher_order_ops/hints_wrap.py' 2025-07-24T03:55:16.9847530Z adding 'torch/_higher_order_ops/invoke_subgraph.py' 2025-07-24T03:55:16.9850260Z adding 'torch/_higher_order_ops/map.py' 2025-07-24T03:55:16.9852040Z adding 'torch/_higher_order_ops/out_dtype.py' 2025-07-24T03:55:16.9853000Z adding 'torch/_higher_order_ops/run_const_graph.py' 2025-07-24T03:55:16.9861820Z adding 'torch/_higher_order_ops/scan.py' 2025-07-24T03:55:16.9864690Z adding 'torch/_higher_order_ops/schema.py' 2025-07-24T03:55:16.9865820Z adding 'torch/_higher_order_ops/strict_mode.py' 2025-07-24T03:55:16.9867960Z adding 'torch/_higher_order_ops/torchbind.py' 2025-07-24T03:55:16.9884520Z adding 'torch/_higher_order_ops/triton_kernel_wrap.py' 2025-07-24T03:55:16.9895330Z adding 'torch/_higher_order_ops/utils.py' 2025-07-24T03:55:16.9899710Z adding 'torch/_higher_order_ops/while_loop.py' 2025-07-24T03:55:16.9902530Z adding 'torch/_higher_order_ops/wrap.py' 2025-07-24T03:55:16.9904300Z adding 'torch/_inductor/__autotune_main__.py' 2025-07-24T03:55:16.9907520Z adding 'torch/_inductor/__init__.py' 2025-07-24T03:55:16.9908990Z adding 'torch/_inductor/analyze_preserves_zero_mask.py' 2025-07-24T03:55:16.9911670Z adding 'torch/_inductor/aoti_eager.py' 2025-07-24T03:55:16.9916650Z adding 'torch/_inductor/async_compile.py' 2025-07-24T03:55:16.9922490Z adding 'torch/_inductor/autotune_process.py' 2025-07-24T03:55:16.9924960Z adding 'torch/_inductor/bounds.py' 2025-07-24T03:55:16.9928360Z adding 'torch/_inductor/choices.py' 2025-07-24T03:55:16.9962700Z adding 'torch/_inductor/codecache.py' 2025-07-24T03:55:16.9965700Z adding 'torch/_inductor/comm_analysis.py' 2025-07-24T03:55:16.9968510Z adding 'torch/_inductor/comm_lowering.py' 2025-07-24T03:55:16.9979800Z adding 'torch/_inductor/comms.py' 2025-07-24T03:55:17.0002990Z adding 'torch/_inductor/compile_fx.py' 2025-07-24T03:55:17.0006600Z adding 'torch/_inductor/compile_fx_async.py' 2025-07-24T03:55:17.0011550Z adding 'torch/_inductor/compile_fx_ext.py' 2025-07-24T03:55:17.0012790Z adding 'torch/_inductor/compile_fx_subproc.py' 2025-07-24T03:55:17.0017410Z adding 'torch/_inductor/compiler_bisector.py' 2025-07-24T03:55:17.0036650Z adding 'torch/_inductor/config.py' 2025-07-24T03:55:17.0040390Z adding 'torch/_inductor/constant_folding.py' 2025-07-24T03:55:17.0054090Z adding 'torch/_inductor/cpp_builder.py' 2025-07-24T03:55:17.0057530Z adding 'torch/_inductor/cpu_vec_isa.py' 2025-07-24T03:55:17.0081980Z adding 'torch/_inductor/cudagraph_trees.py' 2025-07-24T03:55:17.0085740Z adding 'torch/_inductor/cudagraph_utils.py' 2025-07-24T03:55:17.0086900Z adding 'torch/_inductor/custom_graph_pass.py' 2025-07-24T03:55:17.0094820Z adding 'torch/_inductor/debug.py' 2025-07-24T03:55:17.0102600Z adding 'torch/_inductor/decomposition.py' 2025-07-24T03:55:17.0109260Z adding 'torch/_inductor/dependencies.py' 2025-07-24T03:55:17.0111910Z adding 'torch/_inductor/dtype_propagation.py' 2025-07-24T03:55:17.0113200Z adding 'torch/_inductor/exc.py' 2025-07-24T03:55:17.0114170Z adding 'torch/_inductor/extern_node_serializer.py' 2025-07-24T03:55:17.0117040Z adding 'torch/_inductor/freezing.py' 2025-07-24T03:55:17.0117930Z adding 'torch/_inductor/freezing_utils.py' 2025-07-24T03:55:17.0125920Z adding 'torch/_inductor/fuzzer.py' 2025-07-24T03:55:17.0129150Z adding 'torch/_inductor/fx_utils.py' 2025-07-24T03:55:17.0152380Z adding 'torch/_inductor/graph.py' 2025-07-24T03:55:17.0153840Z adding 'torch/_inductor/hooks.py' 2025-07-24T03:55:17.0157290Z adding 'torch/_inductor/index_propagation.py' 2025-07-24T03:55:17.0159440Z adding 'torch/_inductor/inductor_prims.py' 2025-07-24T03:55:17.0224800Z adding 'torch/_inductor/ir.py' 2025-07-24T03:55:17.0228550Z adding 'torch/_inductor/jagged_lowerings.py' 2025-07-24T03:55:17.0233920Z adding 'torch/_inductor/loop_body.py' 2025-07-24T03:55:17.0282990Z adding 'torch/_inductor/lowering.py' 2025-07-24T03:55:17.0289540Z adding 'torch/_inductor/memory.py' 2025-07-24T03:55:17.0292850Z adding 'torch/_inductor/metrics.py' 2025-07-24T03:55:17.0299160Z adding 'torch/_inductor/mkldnn_ir.py' 2025-07-24T03:55:17.0306440Z adding 'torch/_inductor/mkldnn_lowerings.py' 2025-07-24T03:55:17.0308670Z adding 'torch/_inductor/mock_cache.py' 2025-07-24T03:55:17.0314890Z adding 'torch/_inductor/ops_handler.py' 2025-07-24T03:55:17.0316410Z adding 'torch/_inductor/optimize_indexing.py' 2025-07-24T03:55:17.0322650Z adding 'torch/_inductor/output_code.py' 2025-07-24T03:55:17.0340760Z adding 'torch/_inductor/pattern_matcher.py' 2025-07-24T03:55:17.0342910Z adding 'torch/_inductor/quantized_lowerings.py' 2025-07-24T03:55:17.0346020Z adding 'torch/_inductor/remote_cache.py' 2025-07-24T03:55:17.0389280Z adding 'torch/_inductor/scheduler.py' 2025-07-24T03:55:17.0391120Z adding 'torch/_inductor/script.ld' 2025-07-24T03:55:17.0417370Z adding 'torch/_inductor/select_algorithm.py' 2025-07-24T03:55:17.0426290Z adding 'torch/_inductor/sizevars.py' 2025-07-24T03:55:17.0429040Z adding 'torch/_inductor/standalone_compile.py' 2025-07-24T03:55:17.0431240Z adding 'torch/_inductor/subgraph_lowering.py' 2025-07-24T03:55:17.0437730Z adding 'torch/_inductor/template_heuristics.py' 2025-07-24T03:55:17.0438780Z adding 'torch/_inductor/test_case.py' 2025-07-24T03:55:17.0439840Z adding 'torch/_inductor/test_operators.py' 2025-07-24T03:55:17.0446000Z adding 'torch/_inductor/tiling_utils.py' 2025-07-24T03:55:17.0449500Z adding 'torch/_inductor/triton_bundler.py' 2025-07-24T03:55:17.0475270Z adding 'torch/_inductor/utils.py' 2025-07-24T03:55:17.0478960Z adding 'torch/_inductor/virtualized.py' 2025-07-24T03:55:17.0482800Z adding 'torch/_inductor/wrapper_benchmark.py' 2025-07-24T03:55:17.0484070Z adding 'torch/_inductor/analysis/__init__.py' 2025-07-24T03:55:17.0486120Z adding 'torch/_inductor/analysis/device_info.py' 2025-07-24T03:55:17.0491320Z adding 'torch/_inductor/analysis/profile_analysis.py' 2025-07-24T03:55:17.0492280Z adding 'torch/_inductor/autoheuristic/__init__.py' 2025-07-24T03:55:17.0495380Z adding 'torch/_inductor/autoheuristic/autoheuristic.py' 2025-07-24T03:55:17.0497880Z adding 'torch/_inductor/autoheuristic/autoheuristic_utils.py' 2025-07-24T03:55:17.0499220Z adding 'torch/_inductor/autoheuristic/learned_heuristic_controller.py' 2025-07-24T03:55:17.0500400Z adding 'torch/_inductor/autoheuristic/learnedheuristic_interface.py' 2025-07-24T03:55:17.0504940Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingA100.py' 2025-07-24T03:55:17.0509310Z adding 'torch/_inductor/autoheuristic/artifacts/_MMRankingH100.py' 2025-07-24T03:55:17.0510860Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMA100.py' 2025-07-24T03:55:17.0512750Z adding 'torch/_inductor/autoheuristic/artifacts/_MixedMMH100.py' 2025-07-24T03:55:17.0513920Z adding 'torch/_inductor/autoheuristic/artifacts/_PadMMA100.py' 2025-07-24T03:55:17.0514680Z adding 'torch/_inductor/autoheuristic/artifacts/__init__.py' 2025-07-24T03:55:17.0515900Z adding 'torch/_inductor/codegen/__init__.py' 2025-07-24T03:55:17.0516980Z adding 'torch/_inductor/codegen/aoti_hipify_utils.py' 2025-07-24T03:55:17.0519320Z adding 'torch/_inductor/codegen/block_analysis.py' 2025-07-24T03:55:17.0538450Z adding 'torch/_inductor/codegen/common.py' 2025-07-24T03:55:17.0582790Z adding 'torch/_inductor/codegen/cpp.py' 2025-07-24T03:55:17.0586360Z adding 'torch/_inductor/codegen/cpp_bmm_template.py' 2025-07-24T03:55:17.0594540Z adding 'torch/_inductor/codegen/cpp_flex_attention_template.py' 2025-07-24T03:55:17.0609080Z adding 'torch/_inductor/codegen/cpp_gemm_template.py' 2025-07-24T03:55:17.0613460Z adding 'torch/_inductor/codegen/cpp_grouped_gemm_template.py' 2025-07-24T03:55:17.0625910Z adding 'torch/_inductor/codegen/cpp_micro_gemm.py' 2025-07-24T03:55:17.0628000Z adding 'torch/_inductor/codegen/cpp_template.py' 2025-07-24T03:55:17.0632860Z adding 'torch/_inductor/codegen/cpp_template_kernel.py' 2025-07-24T03:55:17.0638600Z adding 'torch/_inductor/codegen/cpp_utils.py' 2025-07-24T03:55:17.0661890Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu.py' 2025-07-24T03:55:17.0669750Z adding 'torch/_inductor/codegen/cpp_wrapper_cpu_array_ref.py' 2025-07-24T03:55:17.0675670Z adding 'torch/_inductor/codegen/cpp_wrapper_gpu.py' 2025-07-24T03:55:17.0677170Z adding 'torch/_inductor/codegen/cpp_wrapper_mps.py' 2025-07-24T03:55:17.0678090Z adding 'torch/_inductor/codegen/cpu_device_op_overrides.py' 2025-07-24T03:55:17.0679630Z adding 'torch/_inductor/codegen/cuda_combined_scheduling.py' 2025-07-24T03:55:17.0682290Z adding 'torch/_inductor/codegen/debug_utils.py' 2025-07-24T03:55:17.0694660Z adding 'torch/_inductor/codegen/halide.py' 2025-07-24T03:55:17.0700230Z adding 'torch/_inductor/codegen/memory_planning.py' 2025-07-24T03:55:17.0707330Z adding 'torch/_inductor/codegen/mps.py' 2025-07-24T03:55:17.0708240Z adding 'torch/_inductor/codegen/mps_device_op_overrides.py' 2025-07-24T03:55:17.0712700Z adding 'torch/_inductor/codegen/multi_kernel.py' 2025-07-24T03:55:17.0734430Z adding 'torch/_inductor/codegen/simd.py' 2025-07-24T03:55:17.0739630Z adding 'torch/_inductor/codegen/simd_kernel_features.py' 2025-07-24T03:55:17.0741780Z adding 'torch/_inductor/codegen/subgraph.py' 2025-07-24T03:55:17.0780560Z adding 'torch/_inductor/codegen/triton.py' 2025-07-24T03:55:17.0789340Z adding 'torch/_inductor/codegen/triton_combo_kernel.py' 2025-07-24T03:55:17.0791560Z adding 'torch/_inductor/codegen/triton_split_scan.py' 2025-07-24T03:55:17.0793980Z adding 'torch/_inductor/codegen/triton_utils.py' 2025-07-24T03:55:17.0822430Z adding 'torch/_inductor/codegen/wrapper.py' 2025-07-24T03:55:17.0828440Z adding 'torch/_inductor/codegen/wrapper_fxir.py' 2025-07-24T03:55:17.0831690Z adding 'torch/_inductor/codegen/aoti_runtime/interface.cpp' 2025-07-24T03:55:17.0832680Z adding 'torch/_inductor/codegen/cuda/__init__.py' 2025-07-24T03:55:17.0835850Z adding 'torch/_inductor/codegen/cuda/cuda_cpp_scheduling.py' 2025-07-24T03:55:17.0836740Z adding 'torch/_inductor/codegen/cuda/cuda_env.py' 2025-07-24T03:55:17.0842020Z adding 'torch/_inductor/codegen/cuda/cuda_kernel.py' 2025-07-24T03:55:17.0845140Z adding 'torch/_inductor/codegen/cuda/cuda_template.py' 2025-07-24T03:55:17.0846310Z adding 'torch/_inductor/codegen/cuda/cutlass_cache.py' 2025-07-24T03:55:17.0847740Z adding 'torch/_inductor/codegen/cuda/cutlass_presets.py' 2025-07-24T03:55:17.0851000Z adding 'torch/_inductor/codegen/cuda/cutlass_python_evt.py' 2025-07-24T03:55:17.0854660Z adding 'torch/_inductor/codegen/cuda/cutlass_utils.py' 2025-07-24T03:55:17.0857350Z adding 'torch/_inductor/codegen/cuda/device_op_overrides.py' 2025-07-24T03:55:17.0871580Z adding 'torch/_inductor/codegen/cuda/gemm_template.py' 2025-07-24T03:55:17.0874960Z adding 'torch/_inductor/codegen/cuda/serialization.py' 2025-07-24T03:55:17.0875870Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/__init__.py' 2025-07-24T03:55:17.0878490Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/evt_extensions.py' 2025-07-24T03:55:17.0881770Z adding 'torch/_inductor/codegen/cuda/cutlass_lib_extensions/gemm_operation_extensions.py' 2025-07-24T03:55:17.0882510Z adding 'torch/_inductor/codegen/rocm/__init__.py' 2025-07-24T03:55:17.0887040Z adding 'torch/_inductor/codegen/rocm/ck_conv_template.py' 2025-07-24T03:55:17.0888100Z adding 'torch/_inductor/codegen/rocm/ck_template.py' 2025-07-24T03:55:17.0889190Z adding 'torch/_inductor/codegen/rocm/ck_tile_template.py' 2025-07-24T03:55:17.0895490Z adding 'torch/_inductor/codegen/rocm/ck_tile_universal_gemm_template.py' 2025-07-24T03:55:17.0902770Z adding 'torch/_inductor/codegen/rocm/ck_universal_gemm_template.py' 2025-07-24T03:55:17.0904120Z adding 'torch/_inductor/codegen/rocm/compile_command.py' 2025-07-24T03:55:17.0905720Z adding 'torch/_inductor/codegen/rocm/rocm_benchmark_request.py' 2025-07-24T03:55:17.0907170Z adding 'torch/_inductor/codegen/rocm/rocm_cpp_scheduling.py' 2025-07-24T03:55:17.0909920Z adding 'torch/_inductor/codegen/rocm/rocm_kernel.py' 2025-07-24T03:55:17.0911690Z adding 'torch/_inductor/codegen/rocm/rocm_template.py' 2025-07-24T03:55:17.0912450Z adding 'torch/_inductor/codegen/rocm/rocm_template_buffer.py' 2025-07-24T03:55:17.0913260Z adding 'torch/_inductor/codegen/rocm/rocm_utils.py' 2025-07-24T03:55:17.0914190Z adding 'torch/_inductor/codegen/xpu/__init__.py' 2025-07-24T03:55:17.0915270Z adding 'torch/_inductor/codegen/xpu/device_op_overrides.py' 2025-07-24T03:55:17.0916200Z adding 'torch/_inductor/compile_worker/__init__.py' 2025-07-24T03:55:17.0917420Z adding 'torch/_inductor/compile_worker/__main__.py' 2025-07-24T03:55:17.0920950Z adding 'torch/_inductor/compile_worker/subproc_pool.py' 2025-07-24T03:55:17.0922170Z adding 'torch/_inductor/compile_worker/tracked_process_pool.py' 2025-07-24T03:55:17.0923260Z adding 'torch/_inductor/compile_worker/utils.py' 2025-07-24T03:55:17.0924390Z adding 'torch/_inductor/fx_passes/__init__.py' 2025-07-24T03:55:17.0929690Z adding 'torch/_inductor/fx_passes/b2b_gemm.py' 2025-07-24T03:55:17.0933200Z adding 'torch/_inductor/fx_passes/binary_folding.py' 2025-07-24T03:55:17.0939300Z adding 'torch/_inductor/fx_passes/bucketing.py' 2025-07-24T03:55:17.0944170Z adding 'torch/_inductor/fx_passes/ddp_fusion.py' 2025-07-24T03:55:17.0945580Z adding 'torch/_inductor/fx_passes/decompose_mem_bound_mm.py' 2025-07-24T03:55:17.0946790Z adding 'torch/_inductor/fx_passes/dedupe_symint_uses.py' 2025-07-24T03:55:17.0949690Z adding 'torch/_inductor/fx_passes/efficient_conv_bn_eval.py' 2025-07-24T03:55:17.0951820Z adding 'torch/_inductor/fx_passes/freezing_patterns.py' 2025-07-24T03:55:17.0952620Z adding 'torch/_inductor/fx_passes/fsdp.py' 2025-07-24T03:55:17.0958370Z adding 'torch/_inductor/fx_passes/fuse_attention.py' 2025-07-24T03:55:17.0967650Z adding 'torch/_inductor/fx_passes/group_batch_fusion.py' 2025-07-24T03:55:17.0974700Z adding 'torch/_inductor/fx_passes/joint_graph.py' 2025-07-24T03:55:17.0982500Z adding 'torch/_inductor/fx_passes/micro_pipeline_tp.py' 2025-07-24T03:55:17.0983960Z adding 'torch/_inductor/fx_passes/misc_patterns.py' 2025-07-24T03:55:17.0994030Z adding 'torch/_inductor/fx_passes/mkldnn_fusion.py' 2025-07-24T03:55:17.0996290Z adding 'torch/_inductor/fx_passes/numeric_utils.py' 2025-07-24T03:55:17.1002000Z adding 'torch/_inductor/fx_passes/pad_mm.py' 2025-07-24T03:55:17.1016120Z adding 'torch/_inductor/fx_passes/post_grad.py' 2025-07-24T03:55:17.1022180Z adding 'torch/_inductor/fx_passes/pre_grad.py' 2025-07-24T03:55:17.1044760Z adding 'torch/_inductor/fx_passes/quantization.py' 2025-07-24T03:55:17.1052010Z adding 'torch/_inductor/fx_passes/reinplace.py' 2025-07-24T03:55:17.1053460Z adding 'torch/_inductor/fx_passes/replace_random.py' 2025-07-24T03:55:17.1075700Z adding 'torch/_inductor/fx_passes/split_cat.py' 2025-07-24T03:55:17.1077500Z adding 'torch/_inductor/fx_passes/serialized_patterns/__init__.py' 2025-07-24T03:55:17.1079030Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_1.py' 2025-07-24T03:55:17.1081010Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_10.py' 2025-07-24T03:55:17.1082570Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_11.py' 2025-07-24T03:55:17.1084790Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_12.py' 2025-07-24T03:55:17.1085820Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_13.py' 2025-07-24T03:55:17.1087500Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_14.py' 2025-07-24T03:55:17.1089650Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_15.py' 2025-07-24T03:55:17.1092630Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_16.py' 2025-07-24T03:55:17.1094750Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_17.py' 2025-07-24T03:55:17.1097190Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_18.py' 2025-07-24T03:55:17.1098750Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_19.py' 2025-07-24T03:55:17.1100310Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_2.py' 2025-07-24T03:55:17.1102470Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_20.py' 2025-07-24T03:55:17.1103980Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_21.py' 2025-07-24T03:55:17.1106090Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_22.py' 2025-07-24T03:55:17.1107500Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_23.py' 2025-07-24T03:55:17.1108960Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_24.py' 2025-07-24T03:55:17.1110590Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_3.py' 2025-07-24T03:55:17.1112200Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_4.py' 2025-07-24T03:55:17.1113690Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_5.py' 2025-07-24T03:55:17.1115320Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_6.py' 2025-07-24T03:55:17.1117020Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_7.py' 2025-07-24T03:55:17.1118710Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_8.py' 2025-07-24T03:55:17.1120550Z adding 'torch/_inductor/fx_passes/serialized_patterns/_sfdp_pattern_9.py' 2025-07-24T03:55:17.1121490Z adding 'torch/_inductor/fx_passes/serialized_patterns/addmm_pattern.py' 2025-07-24T03:55:17.1122420Z adding 'torch/_inductor/fx_passes/serialized_patterns/bmm_pattern.py' 2025-07-24T03:55:17.1123320Z adding 'torch/_inductor/fx_passes/serialized_patterns/mm_pattern.py' 2025-07-24T03:55:17.1124370Z adding 'torch/_inductor/kernel/__init__.py' 2025-07-24T03:55:17.1127160Z adding 'torch/_inductor/kernel/bmm.py' 2025-07-24T03:55:17.1131460Z adding 'torch/_inductor/kernel/conv.py' 2025-07-24T03:55:17.1151850Z adding 'torch/_inductor/kernel/flex_attention.py' 2025-07-24T03:55:17.1157470Z adding 'torch/_inductor/kernel/flex_decoding.py' 2025-07-24T03:55:17.1165750Z adding 'torch/_inductor/kernel/mm.py' 2025-07-24T03:55:17.1168490Z adding 'torch/_inductor/kernel/mm_common.py' 2025-07-24T03:55:17.1173010Z adding 'torch/_inductor/kernel/mm_grouped.py' 2025-07-24T03:55:17.1174850Z adding 'torch/_inductor/kernel/mm_plus_mm.py' 2025-07-24T03:55:17.1175800Z adding 'torch/_inductor/package/__init__.py' 2025-07-24T03:55:17.1176680Z adding 'torch/_inductor/package/build_package.py' 2025-07-24T03:55:17.1178310Z adding 'torch/_inductor/package/package.py' 2025-07-24T03:55:17.1179440Z adding 'torch/_inductor/runtime/__init__.py' 2025-07-24T03:55:17.1184770Z adding 'torch/_inductor/runtime/autotune_cache.py' 2025-07-24T03:55:17.1187410Z adding 'torch/_inductor/runtime/benchmarking.py' 2025-07-24T03:55:17.1188170Z adding 'torch/_inductor/runtime/cache_dir_utils.py' 2025-07-24T03:55:17.1189290Z adding 'torch/_inductor/runtime/compile_tasks.py' 2025-07-24T03:55:17.1192010Z adding 'torch/_inductor/runtime/coordinate_descent_tuner.py' 2025-07-24T03:55:17.1193100Z adding 'torch/_inductor/runtime/halide_helpers.py' 2025-07-24T03:55:17.1195260Z adding 'torch/_inductor/runtime/hints.py' 2025-07-24T03:55:17.1196650Z adding 'torch/_inductor/runtime/runtime_utils.py' 2025-07-24T03:55:17.1199340Z adding 'torch/_inductor/runtime/static_cuda_launcher.py' 2025-07-24T03:55:17.1200530Z adding 'torch/_inductor/runtime/triton_compat.py' 2025-07-24T03:55:17.1205880Z adding 'torch/_inductor/runtime/triton_helpers.py' 2025-07-24T03:55:17.1231410Z adding 'torch/_inductor/runtime/triton_heuristics.py' 2025-07-24T03:55:17.1233530Z adding 'torch/_lazy/__init__.py' 2025-07-24T03:55:17.1234910Z adding 'torch/_lazy/closure.py' 2025-07-24T03:55:17.1235830Z adding 'torch/_lazy/computation.py' 2025-07-24T03:55:17.1236690Z adding 'torch/_lazy/config.py' 2025-07-24T03:55:17.1237590Z adding 'torch/_lazy/debug.py' 2025-07-24T03:55:17.1238490Z adding 'torch/_lazy/device_context.py' 2025-07-24T03:55:17.1241260Z adding 'torch/_lazy/extract_compiled_graph.py' 2025-07-24T03:55:17.1241850Z adding 'torch/_lazy/ir_cache.py' 2025-07-24T03:55:17.1242710Z adding 'torch/_lazy/metrics.py' 2025-07-24T03:55:17.1243710Z adding 'torch/_lazy/tensor_factory_functions.py' 2025-07-24T03:55:17.1244500Z adding 'torch/_lazy/ts_backend.py' 2025-07-24T03:55:17.1245600Z adding 'torch/_library/__init__.py' 2025-07-24T03:55:17.1248150Z adding 'torch/_library/autograd.py' 2025-07-24T03:55:17.1255590Z adding 'torch/_library/custom_ops.py' 2025-07-24T03:55:17.1258780Z adding 'torch/_library/fake_class_registry.py' 2025-07-24T03:55:17.1261130Z adding 'torch/_library/fake_impl.py' 2025-07-24T03:55:17.1263950Z adding 'torch/_library/fake_profile.py' 2025-07-24T03:55:17.1266970Z adding 'torch/_library/infer_schema.py' 2025-07-24T03:55:17.1268000Z adding 'torch/_library/simple_registry.py' 2025-07-24T03:55:17.1271090Z adding 'torch/_library/triton.py' 2025-07-24T03:55:17.1279680Z adding 'torch/_library/utils.py' 2025-07-24T03:55:17.1279970Z adding 'torch/_logging/__init__.py' 2025-07-24T03:55:17.1288050Z adding 'torch/_logging/_internal.py' 2025-07-24T03:55:17.1290340Z adding 'torch/_logging/_registrations.py' 2025-07-24T03:55:17.1291320Z adding 'torch/_logging/scribe.py' 2025-07-24T03:55:17.1292710Z adding 'torch/_logging/structured.py' 2025-07-24T03:55:17.1294140Z adding 'torch/_numpy/__init__.py' 2025-07-24T03:55:17.1295300Z adding 'torch/_numpy/_binary_ufuncs_impl.py' 2025-07-24T03:55:17.1298610Z adding 'torch/_numpy/_casting_dicts.py' 2025-07-24T03:55:17.1301580Z adding 'torch/_numpy/_dtypes.py' 2025-07-24T03:55:17.1303690Z adding 'torch/_numpy/_dtypes_impl.py' 2025-07-24T03:55:17.1304430Z adding 'torch/_numpy/_funcs.py' 2025-07-24T03:55:17.1317550Z adding 'torch/_numpy/_funcs_impl.py' 2025-07-24T03:55:17.1318470Z adding 'torch/_numpy/_getlimits.py' 2025-07-24T03:55:17.1323380Z adding 'torch/_numpy/_ndarray.py' 2025-07-24T03:55:17.1325640Z adding 'torch/_numpy/_normalizations.py' 2025-07-24T03:55:17.1328160Z adding 'torch/_numpy/_reductions_impl.py' 2025-07-24T03:55:17.1330260Z adding 'torch/_numpy/_ufuncs.py' 2025-07-24T03:55:17.1331030Z adding 'torch/_numpy/_unary_ufuncs_impl.py' 2025-07-24T03:55:17.1333510Z adding 'torch/_numpy/_util.py' 2025-07-24T03:55:17.1334290Z adding 'torch/_numpy/fft.py' 2025-07-24T03:55:17.1336230Z adding 'torch/_numpy/linalg.py' 2025-07-24T03:55:17.1337400Z adding 'torch/_numpy/random.py' 2025-07-24T03:55:17.1338590Z adding 'torch/_numpy/testing/__init__.py' 2025-07-24T03:55:17.1354930Z adding 'torch/_numpy/testing/utils.py' 2025-07-24T03:55:17.1371120Z adding 'torch/_prims/__init__.py' 2025-07-24T03:55:17.1373530Z adding 'torch/_prims/context.py' 2025-07-24T03:55:17.1374410Z adding 'torch/_prims/debug_prims.py' 2025-07-24T03:55:17.1375630Z adding 'torch/_prims/executor.py' 2025-07-24T03:55:17.1378590Z adding 'torch/_prims/rng_prims.py' 2025-07-24T03:55:17.1395080Z adding 'torch/_prims_common/__init__.py' 2025-07-24T03:55:17.1399680Z adding 'torch/_prims_common/wrappers.py' 2025-07-24T03:55:17.1445470Z adding 'torch/_refs/__init__.py' 2025-07-24T03:55:17.1447860Z adding 'torch/_refs/_conversions.py' 2025-07-24T03:55:17.1451190Z adding 'torch/_refs/fft.py' 2025-07-24T03:55:17.1454320Z adding 'torch/_refs/linalg/__init__.py' 2025-07-24T03:55:17.1455130Z adding 'torch/_refs/nn/__init__.py' 2025-07-24T03:55:17.1463370Z adding 'torch/_refs/nn/functional/__init__.py' 2025-07-24T03:55:17.1465490Z adding 'torch/_refs/special/__init__.py' 2025-07-24T03:55:17.1466260Z adding 'torch/_strobelight/__init__.py' 2025-07-24T03:55:17.1469080Z adding 'torch/_strobelight/cli_function_profiler.py' 2025-07-24T03:55:17.1471230Z adding 'torch/_strobelight/compile_time_profiler.py' 2025-07-24T03:55:17.1472060Z adding 'torch/_subclasses/__init__.py' 2025-07-24T03:55:17.1474630Z adding 'torch/_subclasses/_fake_tensor_utils.py' 2025-07-24T03:55:17.1482090Z adding 'torch/_subclasses/fake_impls.py' 2025-07-24T03:55:17.1512560Z adding 'torch/_subclasses/fake_tensor.py' 2025-07-24T03:55:17.1515800Z adding 'torch/_subclasses/fake_utils.py' 2025-07-24T03:55:17.1522730Z adding 'torch/_subclasses/functional_tensor.py' 2025-07-24T03:55:17.1540720Z adding 'torch/_subclasses/meta_utils.py' 2025-07-24T03:55:17.1543320Z adding 'torch/_subclasses/schema_check_mode.py' 2025-07-24T03:55:17.1544100Z adding 'torch/_vendor/__init__.py' 2025-07-24T03:55:17.1545290Z adding 'torch/_vendor/packaging/__init__.py' 2025-07-24T03:55:17.1546260Z adding 'torch/_vendor/packaging/_structures.py' 2025-07-24T03:55:17.1550070Z adding 'torch/_vendor/packaging/version.py' 2025-07-24T03:55:17.1552570Z adding 'torch/accelerator/__init__.py' 2025-07-24T03:55:17.1553280Z adding 'torch/accelerator/_utils.py' 2025-07-24T03:55:17.1554330Z adding 'torch/amp/__init__.py' 2025-07-24T03:55:17.1559310Z adding 'torch/amp/autocast_mode.py' 2025-07-24T03:55:17.1565830Z adding 'torch/amp/grad_scaler.py' 2025-07-24T03:55:17.1567030Z adding 'torch/ao/__init__.py' 2025-07-24T03:55:17.1568440Z adding 'torch/ao/nn/__init__.py' 2025-07-24T03:55:17.1569840Z adding 'torch/ao/nn/intrinsic/__init__.py' 2025-07-24T03:55:17.1571050Z adding 'torch/ao/nn/intrinsic/modules/__init__.py' 2025-07-24T03:55:17.1572770Z adding 'torch/ao/nn/intrinsic/modules/fused.py' 2025-07-24T03:55:17.1573750Z adding 'torch/ao/nn/intrinsic/qat/__init__.py' 2025-07-24T03:55:17.1575020Z adding 'torch/ao/nn/intrinsic/qat/modules/__init__.py' 2025-07-24T03:55:17.1580090Z adding 'torch/ao/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-24T03:55:17.1582190Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-24T03:55:17.1583070Z adding 'torch/ao/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-24T03:55:17.1584160Z adding 'torch/ao/nn/intrinsic/quantized/__init__.py' 2025-07-24T03:55:17.1585210Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-24T03:55:17.1587320Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-24T03:55:17.1588200Z adding 'torch/ao/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-24T03:55:17.1589320Z adding 'torch/ao/nn/intrinsic/quantized/modules/__init__.py' 2025-07-24T03:55:17.1590440Z adding 'torch/ao/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-24T03:55:17.1591710Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_add.py' 2025-07-24T03:55:17.1593300Z adding 'torch/ao/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-24T03:55:17.1594870Z adding 'torch/ao/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-24T03:55:17.1595750Z adding 'torch/ao/nn/qat/__init__.py' 2025-07-24T03:55:17.1596790Z adding 'torch/ao/nn/qat/dynamic/__init__.py' 2025-07-24T03:55:17.1597760Z adding 'torch/ao/nn/qat/dynamic/modules/__init__.py' 2025-07-24T03:55:17.1598820Z adding 'torch/ao/nn/qat/dynamic/modules/linear.py' 2025-07-24T03:55:17.1599910Z adding 'torch/ao/nn/qat/modules/__init__.py' 2025-07-24T03:55:17.1602180Z adding 'torch/ao/nn/qat/modules/conv.py' 2025-07-24T03:55:17.1603530Z adding 'torch/ao/nn/qat/modules/embedding_ops.py' 2025-07-24T03:55:17.1604800Z adding 'torch/ao/nn/qat/modules/linear.py' 2025-07-24T03:55:17.1605820Z adding 'torch/ao/nn/quantizable/__init__.py' 2025-07-24T03:55:17.1606830Z adding 'torch/ao/nn/quantizable/modules/__init__.py' 2025-07-24T03:55:17.1611430Z adding 'torch/ao/nn/quantizable/modules/activation.py' 2025-07-24T03:55:17.1615730Z adding 'torch/ao/nn/quantizable/modules/rnn.py' 2025-07-24T03:55:17.1616840Z adding 'torch/ao/nn/quantized/__init__.py' 2025-07-24T03:55:17.1621560Z adding 'torch/ao/nn/quantized/functional.py' 2025-07-24T03:55:17.1622490Z adding 'torch/ao/nn/quantized/dynamic/__init__.py' 2025-07-24T03:55:17.1623670Z adding 'torch/ao/nn/quantized/dynamic/modules/__init__.py' 2025-07-24T03:55:17.1626270Z adding 'torch/ao/nn/quantized/dynamic/modules/conv.py' 2025-07-24T03:55:17.1627900Z adding 'torch/ao/nn/quantized/dynamic/modules/linear.py' 2025-07-24T03:55:17.1636270Z adding 'torch/ao/nn/quantized/dynamic/modules/rnn.py' 2025-07-24T03:55:17.1638410Z adding 'torch/ao/nn/quantized/modules/__init__.py' 2025-07-24T03:55:17.1640720Z adding 'torch/ao/nn/quantized/modules/activation.py' 2025-07-24T03:55:17.1641860Z adding 'torch/ao/nn/quantized/modules/batchnorm.py' 2025-07-24T03:55:17.1647410Z adding 'torch/ao/nn/quantized/modules/conv.py' 2025-07-24T03:55:17.1648270Z adding 'torch/ao/nn/quantized/modules/dropout.py' 2025-07-24T03:55:17.1651180Z adding 'torch/ao/nn/quantized/modules/embedding_ops.py' 2025-07-24T03:55:17.1652710Z adding 'torch/ao/nn/quantized/modules/functional_modules.py' 2025-07-24T03:55:17.1655940Z adding 'torch/ao/nn/quantized/modules/linear.py' 2025-07-24T03:55:17.1657190Z adding 'torch/ao/nn/quantized/modules/normalization.py' 2025-07-24T03:55:17.1658310Z adding 'torch/ao/nn/quantized/modules/rnn.py' 2025-07-24T03:55:17.1659870Z adding 'torch/ao/nn/quantized/modules/utils.py' 2025-07-24T03:55:17.1660960Z adding 'torch/ao/nn/quantized/reference/__init__.py' 2025-07-24T03:55:17.1662110Z adding 'torch/ao/nn/quantized/reference/modules/__init__.py' 2025-07-24T03:55:17.1664370Z adding 'torch/ao/nn/quantized/reference/modules/conv.py' 2025-07-24T03:55:17.1665310Z adding 'torch/ao/nn/quantized/reference/modules/linear.py' 2025-07-24T03:55:17.1669690Z adding 'torch/ao/nn/quantized/reference/modules/rnn.py' 2025-07-24T03:55:17.1670930Z adding 'torch/ao/nn/quantized/reference/modules/sparse.py' 2025-07-24T03:55:17.1673740Z adding 'torch/ao/nn/quantized/reference/modules/utils.py' 2025-07-24T03:55:17.1674480Z adding 'torch/ao/nn/sparse/__init__.py' 2025-07-24T03:55:17.1675500Z adding 'torch/ao/nn/sparse/quantized/__init__.py' 2025-07-24T03:55:17.1677830Z adding 'torch/ao/nn/sparse/quantized/linear.py' 2025-07-24T03:55:17.1678640Z adding 'torch/ao/nn/sparse/quantized/utils.py' 2025-07-24T03:55:17.1679720Z adding 'torch/ao/nn/sparse/quantized/dynamic/__init__.py' 2025-07-24T03:55:17.1681850Z adding 'torch/ao/nn/sparse/quantized/dynamic/linear.py' 2025-07-24T03:55:17.1682580Z adding 'torch/ao/ns/__init__.py' 2025-07-24T03:55:17.1686550Z adding 'torch/ao/ns/_numeric_suite.py' 2025-07-24T03:55:17.1694300Z adding 'torch/ao/ns/_numeric_suite_fx.py' 2025-07-24T03:55:17.1695230Z adding 'torch/ao/ns/fx/__init__.py' 2025-07-24T03:55:17.1699710Z adding 'torch/ao/ns/fx/graph_matcher.py' 2025-07-24T03:55:17.1708240Z adding 'torch/ao/ns/fx/graph_passes.py' 2025-07-24T03:55:17.1711570Z adding 'torch/ao/ns/fx/mappings.py' 2025-07-24T03:55:17.1722100Z adding 'torch/ao/ns/fx/n_shadows_utils.py' 2025-07-24T03:55:17.1723330Z adding 'torch/ao/ns/fx/ns_types.py' 2025-07-24T03:55:17.1725660Z adding 'torch/ao/ns/fx/pattern_utils.py' 2025-07-24T03:55:17.1728130Z adding 'torch/ao/ns/fx/qconfig_multi_mapping.py' 2025-07-24T03:55:17.1732150Z adding 'torch/ao/ns/fx/utils.py' 2025-07-24T03:55:17.1734510Z adding 'torch/ao/ns/fx/weight_utils.py' 2025-07-24T03:55:17.1735530Z adding 'torch/ao/pruning/__init__.py' 2025-07-24T03:55:17.1736350Z adding 'torch/ao/pruning/_mappings.py' 2025-07-24T03:55:17.1737540Z adding 'torch/ao/pruning/_experimental/__init__.py' 2025-07-24T03:55:17.1738650Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/__init__.py' 2025-07-24T03:55:17.1743210Z adding 'torch/ao/pruning/_experimental/activation_sparsifier/activation_sparsifier.py' 2025-07-24T03:55:17.1744050Z adding 'torch/ao/pruning/_experimental/data_scheduler/__init__.py' 2025-07-24T03:55:17.1746460Z adding 'torch/ao/pruning/_experimental/data_scheduler/base_data_scheduler.py' 2025-07-24T03:55:17.1747210Z adding 'torch/ao/pruning/_experimental/data_sparsifier/__init__.py' 2025-07-24T03:55:17.1750830Z adding 'torch/ao/pruning/_experimental/data_sparsifier/base_data_sparsifier.py' 2025-07-24T03:55:17.1753020Z adding 'torch/ao/pruning/_experimental/data_sparsifier/data_norm_sparsifier.py' 2025-07-24T03:55:17.1754370Z adding 'torch/ao/pruning/_experimental/data_sparsifier/quantization_utils.py' 2025-07-24T03:55:17.1755370Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/__init__.py' 2025-07-24T03:55:17.1756370Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/__init__.py' 2025-07-24T03:55:17.1757560Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/_data_sparstity_utils.py' 2025-07-24T03:55:17.1759210Z adding 'torch/ao/pruning/_experimental/data_sparsifier/lightning/callbacks/data_sparsity.py' 2025-07-24T03:55:17.1761360Z adding 'torch/ao/pruning/_experimental/pruner/FPGM_pruner.py' 2025-07-24T03:55:17.1761780Z adding 'torch/ao/pruning/_experimental/pruner/__init__.py' 2025-07-24T03:55:17.1764490Z adding 'torch/ao/pruning/_experimental/pruner/base_structured_sparsifier.py' 2025-07-24T03:55:17.1765430Z adding 'torch/ao/pruning/_experimental/pruner/lstm_saliency_pruner.py' 2025-07-24T03:55:17.1766470Z adding 'torch/ao/pruning/_experimental/pruner/match_utils.py' 2025-07-24T03:55:17.1767650Z adding 'torch/ao/pruning/_experimental/pruner/parametrization.py' 2025-07-24T03:55:17.1771310Z adding 'torch/ao/pruning/_experimental/pruner/prune_functions.py' 2025-07-24T03:55:17.1772370Z adding 'torch/ao/pruning/_experimental/pruner/saliency_pruner.py' 2025-07-24T03:55:17.1773290Z adding 'torch/ao/pruning/scheduler/__init__.py' 2025-07-24T03:55:17.1775440Z adding 'torch/ao/pruning/scheduler/base_scheduler.py' 2025-07-24T03:55:17.1776610Z adding 'torch/ao/pruning/scheduler/cubic_scheduler.py' 2025-07-24T03:55:17.1777860Z adding 'torch/ao/pruning/scheduler/lambda_scheduler.py' 2025-07-24T03:55:17.1778830Z adding 'torch/ao/pruning/sparsifier/__init__.py' 2025-07-24T03:55:17.1782250Z adding 'torch/ao/pruning/sparsifier/base_sparsifier.py' 2025-07-24T03:55:17.1783370Z adding 'torch/ao/pruning/sparsifier/nearly_diagonal_sparsifier.py' 2025-07-24T03:55:17.1785020Z adding 'torch/ao/pruning/sparsifier/utils.py' 2025-07-24T03:55:17.1787630Z adding 'torch/ao/pruning/sparsifier/weight_norm_sparsifier.py' 2025-07-24T03:55:17.1790010Z adding 'torch/ao/quantization/__init__.py' 2025-07-24T03:55:17.1791440Z adding 'torch/ao/quantization/_correct_bias.py' 2025-07-24T03:55:17.1794270Z adding 'torch/ao/quantization/_equalize.py' 2025-07-24T03:55:17.1796120Z adding 'torch/ao/quantization/_learnable_fake_quantize.py' 2025-07-24T03:55:17.1800350Z adding 'torch/ao/quantization/fake_quantize.py' 2025-07-24T03:55:17.1802520Z adding 'torch/ao/quantization/fuse_modules.py' 2025-07-24T03:55:17.1804650Z adding 'torch/ao/quantization/fuser_method_mappings.py' 2025-07-24T03:55:17.1820050Z adding 'torch/ao/quantization/observer.py' 2025-07-24T03:55:17.1824970Z adding 'torch/ao/quantization/qconfig.py' 2025-07-24T03:55:17.1828090Z adding 'torch/ao/quantization/qconfig_mapping.py' 2025-07-24T03:55:17.1828840Z adding 'torch/ao/quantization/quant_type.py' 2025-07-24T03:55:17.1831720Z adding 'torch/ao/quantization/quantization_mappings.py' 2025-07-24T03:55:17.1837840Z adding 'torch/ao/quantization/quantize.py' 2025-07-24T03:55:17.1843340Z adding 'torch/ao/quantization/quantize_fx.py' 2025-07-24T03:55:17.1846510Z adding 'torch/ao/quantization/quantize_jit.py' 2025-07-24T03:55:17.1848740Z adding 'torch/ao/quantization/quantize_pt2e.py' 2025-07-24T03:55:17.1849590Z adding 'torch/ao/quantization/stubs.py' 2025-07-24T03:55:17.1856310Z adding 'torch/ao/quantization/utils.py' 2025-07-24T03:55:17.1857650Z adding 'torch/ao/quantization/backend_config/__init__.py' 2025-07-24T03:55:17.1862160Z adding 'torch/ao/quantization/backend_config/_common_operator_config_utils.py' 2025-07-24T03:55:17.1863620Z adding 'torch/ao/quantization/backend_config/_qnnpack_pt2e.py' 2025-07-24T03:55:17.1869560Z adding 'torch/ao/quantization/backend_config/backend_config.py' 2025-07-24T03:55:17.1872290Z adding 'torch/ao/quantization/backend_config/executorch.py' 2025-07-24T03:55:17.1873330Z adding 'torch/ao/quantization/backend_config/fbgemm.py' 2025-07-24T03:55:17.1874880Z adding 'torch/ao/quantization/backend_config/native.py' 2025-07-24T03:55:17.1875670Z adding 'torch/ao/quantization/backend_config/observation_type.py' 2025-07-24T03:55:17.1878800Z adding 'torch/ao/quantization/backend_config/onednn.py' 2025-07-24T03:55:17.1879980Z adding 'torch/ao/quantization/backend_config/qnnpack.py' 2025-07-24T03:55:17.1881240Z adding 'torch/ao/quantization/backend_config/tensorrt.py' 2025-07-24T03:55:17.1884330Z adding 'torch/ao/quantization/backend_config/utils.py' 2025-07-24T03:55:17.1885340Z adding 'torch/ao/quantization/backend_config/x86.py' 2025-07-24T03:55:17.1886530Z adding 'torch/ao/quantization/fx/__init__.py' 2025-07-24T03:55:17.1892780Z adding 'torch/ao/quantization/fx/_decomposed.py' 2025-07-24T03:55:17.1900720Z adding 'torch/ao/quantization/fx/_equalize.py' 2025-07-24T03:55:17.1910660Z adding 'torch/ao/quantization/fx/_lower_to_native_backend.py' 2025-07-24T03:55:17.1922440Z adding 'torch/ao/quantization/fx/convert.py' 2025-07-24T03:55:17.1925940Z adding 'torch/ao/quantization/fx/custom_config.py' 2025-07-24T03:55:17.1928110Z adding 'torch/ao/quantization/fx/fuse.py' 2025-07-24T03:55:17.1929430Z adding 'torch/ao/quantization/fx/fuse_handler.py' 2025-07-24T03:55:17.1931480Z adding 'torch/ao/quantization/fx/graph_module.py' 2025-07-24T03:55:17.1932000Z adding 'torch/ao/quantization/fx/lower_to_fbgemm.py' 2025-07-24T03:55:17.1932850Z adding 'torch/ao/quantization/fx/lower_to_qnnpack.py' 2025-07-24T03:55:17.1935440Z adding 'torch/ao/quantization/fx/lstm_utils.py' 2025-07-24T03:55:17.1937710Z adding 'torch/ao/quantization/fx/match_utils.py' 2025-07-24T03:55:17.1938860Z adding 'torch/ao/quantization/fx/pattern_utils.py' 2025-07-24T03:55:17.1958070Z adding 'torch/ao/quantization/fx/prepare.py' 2025-07-24T03:55:17.1961750Z adding 'torch/ao/quantization/fx/qconfig_mapping_utils.py' 2025-07-24T03:55:17.1963580Z adding 'torch/ao/quantization/fx/quantize_handler.py' 2025-07-24T03:55:17.1964480Z adding 'torch/ao/quantization/fx/tracer.py' 2025-07-24T03:55:17.1972630Z adding 'torch/ao/quantization/fx/utils.py' 2025-07-24T03:55:17.1973600Z adding 'torch/ao/quantization/fx/_model_report/__init__.py' 2025-07-24T03:55:17.1987800Z adding 'torch/ao/quantization/fx/_model_report/detector.py' 2025-07-24T03:55:17.1994290Z adding 'torch/ao/quantization/fx/_model_report/model_report.py' 2025-07-24T03:55:17.1997140Z adding 'torch/ao/quantization/fx/_model_report/model_report_observer.py' 2025-07-24T03:55:17.2003710Z adding 'torch/ao/quantization/fx/_model_report/model_report_visualizer.py' 2025-07-24T03:55:17.2004680Z adding 'torch/ao/quantization/pt2e/__init__.py' 2025-07-24T03:55:17.2010990Z adding 'torch/ao/quantization/pt2e/_affine_quantization.py' 2025-07-24T03:55:17.2014090Z adding 'torch/ao/quantization/pt2e/_numeric_debugger.py' 2025-07-24T03:55:17.2015160Z adding 'torch/ao/quantization/pt2e/duplicate_dq_pass.py' 2025-07-24T03:55:17.2017460Z adding 'torch/ao/quantization/pt2e/export_utils.py' 2025-07-24T03:55:17.2019230Z adding 'torch/ao/quantization/pt2e/graph_utils.py' 2025-07-24T03:55:17.2020240Z adding 'torch/ao/quantization/pt2e/lowering.py' 2025-07-24T03:55:17.2022820Z adding 'torch/ao/quantization/pt2e/port_metadata_pass.py' 2025-07-24T03:55:17.2027950Z adding 'torch/ao/quantization/pt2e/prepare.py' 2025-07-24T03:55:17.2035120Z adding 'torch/ao/quantization/pt2e/qat_utils.py' 2025-07-24T03:55:17.2040260Z adding 'torch/ao/quantization/pt2e/utils.py' 2025-07-24T03:55:17.2041290Z adding 'torch/ao/quantization/pt2e/representation/__init__.py' 2025-07-24T03:55:17.2045770Z adding 'torch/ao/quantization/pt2e/representation/rewrite.py' 2025-07-24T03:55:17.2046750Z adding 'torch/ao/quantization/quantizer/__init__.py' 2025-07-24T03:55:17.2048220Z adding 'torch/ao/quantization/quantizer/composable_quantizer.py' 2025-07-24T03:55:17.2049580Z adding 'torch/ao/quantization/quantizer/embedding_quantizer.py' 2025-07-24T03:55:17.2051910Z adding 'torch/ao/quantization/quantizer/quantizer.py' 2025-07-24T03:55:17.2053020Z adding 'torch/ao/quantization/quantizer/utils.py' 2025-07-24T03:55:17.2063190Z adding 'torch/ao/quantization/quantizer/x86_inductor_quantizer.py' 2025-07-24T03:55:17.2066810Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer.py' 2025-07-24T03:55:17.2073340Z adding 'torch/ao/quantization/quantizer/xnnpack_quantizer_utils.py' 2025-07-24T03:55:17.2074690Z adding 'torch/ao/quantization/quantizer/xpu_inductor_quantizer.py' 2025-07-24T03:55:17.2080750Z adding 'torch/autograd/__init__.py' 2025-07-24T03:55:17.2082090Z adding 'torch/autograd/anomaly_mode.py' 2025-07-24T03:55:17.2084490Z adding 'torch/autograd/forward_ad.py' 2025-07-24T03:55:17.2091280Z adding 'torch/autograd/function.py' 2025-07-24T03:55:17.2100670Z adding 'torch/autograd/functional.py' 2025-07-24T03:55:17.2103570Z adding 'torch/autograd/grad_mode.py' 2025-07-24T03:55:17.2123420Z adding 'torch/autograd/gradcheck.py' 2025-07-24T03:55:17.2130350Z adding 'torch/autograd/graph.py' 2025-07-24T03:55:17.2140420Z adding 'torch/autograd/profiler.py' 2025-07-24T03:55:17.2143390Z adding 'torch/autograd/profiler_legacy.py' 2025-07-24T03:55:17.2152140Z adding 'torch/autograd/profiler_util.py' 2025-07-24T03:55:17.2152910Z adding 'torch/autograd/variable.py' 2025-07-24T03:55:17.2153990Z adding 'torch/autograd/_functions/__init__.py' 2025-07-24T03:55:17.2155100Z adding 'torch/autograd/_functions/tensor.py' 2025-07-24T03:55:17.2156240Z adding 'torch/autograd/_functions/utils.py' 2025-07-24T03:55:17.2158220Z adding 'torch/backends/__init__.py' 2025-07-24T03:55:17.2159360Z adding 'torch/backends/_coreml/__init__.py' 2025-07-24T03:55:17.2161360Z adding 'torch/backends/_coreml/preprocess.py' 2025-07-24T03:55:17.2161920Z adding 'torch/backends/_nnapi/__init__.py' 2025-07-24T03:55:17.2164010Z adding 'torch/backends/_nnapi/prepare.py' 2025-07-24T03:55:17.2178570Z adding 'torch/backends/_nnapi/serializer.py' 2025-07-24T03:55:17.2179780Z adding 'torch/backends/cpu/__init__.py' 2025-07-24T03:55:17.2183570Z adding 'torch/backends/cuda/__init__.py' 2025-07-24T03:55:17.2185780Z adding 'torch/backends/cudnn/__init__.py' 2025-07-24T03:55:17.2186650Z adding 'torch/backends/cudnn/rnn.py' 2025-07-24T03:55:17.2187880Z adding 'torch/backends/cusparselt/__init__.py' 2025-07-24T03:55:17.2188900Z adding 'torch/backends/kleidiai/__init__.py' 2025-07-24T03:55:17.2189990Z adding 'torch/backends/mha/__init__.py' 2025-07-24T03:55:17.2191290Z adding 'torch/backends/mkl/__init__.py' 2025-07-24T03:55:17.2193290Z adding 'torch/backends/mkldnn/__init__.py' 2025-07-24T03:55:17.2194110Z adding 'torch/backends/mps/__init__.py' 2025-07-24T03:55:17.2195220Z adding 'torch/backends/nnpack/__init__.py' 2025-07-24T03:55:17.2196160Z adding 'torch/backends/openmp/__init__.py' 2025-07-24T03:55:17.2197730Z adding 'torch/backends/opt_einsum/__init__.py' 2025-07-24T03:55:17.2199020Z adding 'torch/backends/quantized/__init__.py' 2025-07-24T03:55:17.2199920Z adding 'torch/backends/xeon/__init__.py' 2025-07-24T03:55:17.2206990Z adding 'torch/backends/xeon/run_cpu.py' 2025-07-24T03:55:17.2208030Z adding 'torch/backends/xnnpack/__init__.py' 2025-07-24T03:55:17.3307240Z adding 'torch/bin/protoc' 2025-07-24T03:55:17.4420520Z adding 'torch/bin/protoc-3.13.0.0' 2025-07-24T03:55:17.4448340Z adding 'torch/bin/torch_shm_manager' 2025-07-24T03:55:17.4454940Z adding 'torch/compiler/__init__.py' 2025-07-24T03:55:17.4458070Z adding 'torch/compiler/_cache.py' 2025-07-24T03:55:17.4459370Z adding 'torch/compiler/config.py' 2025-07-24T03:55:17.4460430Z adding 'torch/contrib/__init__.py' 2025-07-24T03:55:17.4462630Z adding 'torch/contrib/_tensorboard_vis.py' 2025-07-24T03:55:17.4464750Z adding 'torch/cpu/__init__.py' 2025-07-24T03:55:17.4465460Z adding 'torch/cpu/amp/__init__.py' 2025-07-24T03:55:17.4466530Z adding 'torch/cpu/amp/autocast_mode.py' 2025-07-24T03:55:17.4467470Z adding 'torch/cpu/amp/grad_scaler.py' 2025-07-24T03:55:17.4469780Z adding 'torch/csrc/inductor/aoti_runtime/model.h' 2025-07-24T03:55:17.4483060Z adding 'torch/cuda/__init__.py' 2025-07-24T03:55:17.4484210Z adding 'torch/cuda/_gpu_trace.py' 2025-07-24T03:55:17.4490670Z adding 'torch/cuda/_memory_viz.py' 2025-07-24T03:55:17.4491420Z adding 'torch/cuda/_pin_memory_utils.py' 2025-07-24T03:55:17.4496320Z adding 'torch/cuda/_sanitizer.py' 2025-07-24T03:55:17.4499450Z adding 'torch/cuda/_utils.py' 2025-07-24T03:55:17.4500350Z adding 'torch/cuda/comm.py' 2025-07-24T03:55:17.4501110Z adding 'torch/cuda/error.py' 2025-07-24T03:55:17.4503050Z adding 'torch/cuda/gds.py' 2025-07-24T03:55:17.4508650Z adding 'torch/cuda/graphs.py' 2025-07-24T03:55:17.4510740Z adding 'torch/cuda/jiterator.py' 2025-07-24T03:55:17.4520400Z adding 'torch/cuda/memory.py' 2025-07-24T03:55:17.4522830Z adding 'torch/cuda/nccl.py' 2025-07-24T03:55:17.4524040Z adding 'torch/cuda/nvtx.py' 2025-07-24T03:55:17.4525380Z adding 'torch/cuda/profiler.py' 2025-07-24T03:55:17.4527280Z adding 'torch/cuda/random.py' 2025-07-24T03:55:17.4527800Z adding 'torch/cuda/sparse.py' 2025-07-24T03:55:17.4530390Z adding 'torch/cuda/streams.py' 2025-07-24T03:55:17.4537030Z adding 'torch/cuda/tunable.py' 2025-07-24T03:55:17.4538250Z adding 'torch/cuda/amp/__init__.py' 2025-07-24T03:55:17.4539550Z adding 'torch/cuda/amp/autocast_mode.py' 2025-07-24T03:55:17.4540360Z adding 'torch/cuda/amp/common.py' 2025-07-24T03:55:17.4541320Z adding 'torch/cuda/amp/grad_scaler.py' 2025-07-24T03:55:17.4544080Z adding 'torch/distributed/__init__.py' 2025-07-24T03:55:17.4544800Z adding 'torch/distributed/_checkpointable.py' 2025-07-24T03:55:17.4545870Z adding 'torch/distributed/_composable_state.py' 2025-07-24T03:55:17.4547850Z adding 'torch/distributed/_dist2.py' 2025-07-24T03:55:17.4556670Z adding 'torch/distributed/_functional_collectives.py' 2025-07-24T03:55:17.4557860Z adding 'torch/distributed/_functional_collectives_impl.py' 2025-07-24T03:55:17.4559410Z adding 'torch/distributed/_serialization.py' 2025-07-24T03:55:17.4565690Z adding 'torch/distributed/_state_dict_utils.py' 2025-07-24T03:55:17.4566980Z adding 'torch/distributed/argparse_util.py' 2025-07-24T03:55:17.4569010Z adding 'torch/distributed/c10d_logger.py' 2025-07-24T03:55:17.4571080Z adding 'torch/distributed/collective_utils.py' 2025-07-24T03:55:17.4571780Z adding 'torch/distributed/constants.py' 2025-07-24T03:55:17.4582540Z adding 'torch/distributed/device_mesh.py' 2025-07-24T03:55:17.4628980Z adding 'torch/distributed/distributed_c10d.py' 2025-07-24T03:55:17.4632290Z adding 'torch/distributed/launch.py' 2025-07-24T03:55:17.4633060Z adding 'torch/distributed/logging_handlers.py' 2025-07-24T03:55:17.4635030Z adding 'torch/distributed/remote_device.py' 2025-07-24T03:55:17.4637530Z adding 'torch/distributed/rendezvous.py' 2025-07-24T03:55:17.4644610Z adding 'torch/distributed/run.py' 2025-07-24T03:55:17.4647810Z adding 'torch/distributed/utils.py' 2025-07-24T03:55:17.4649230Z adding 'torch/distributed/_composable/__init__.py' 2025-07-24T03:55:17.4651310Z adding 'torch/distributed/_composable/checkpoint_activation.py' 2025-07-24T03:55:17.4653630Z adding 'torch/distributed/_composable/contract.py' 2025-07-24T03:55:17.4656090Z adding 'torch/distributed/_composable/replicate.py' 2025-07-24T03:55:17.4656940Z adding 'torch/distributed/_composable/fsdp/__init__.py' 2025-07-24T03:55:17.4657900Z adding 'torch/distributed/_composable/fsdp/fully_shard.py' 2025-07-24T03:55:17.4658980Z adding 'torch/distributed/_shard/__init__.py' 2025-07-24T03:55:17.4659980Z adding 'torch/distributed/_shard/_utils.py' 2025-07-24T03:55:17.4663100Z adding 'torch/distributed/_shard/api.py' 2025-07-24T03:55:17.4664090Z adding 'torch/distributed/_shard/common_op_utils.py' 2025-07-24T03:55:17.4665230Z adding 'torch/distributed/_shard/metadata.py' 2025-07-24T03:55:17.4666170Z adding 'torch/distributed/_shard/op_registry_utils.py' 2025-07-24T03:55:17.4667070Z adding 'torch/distributed/_shard/sharder.py' 2025-07-24T03:55:17.4668460Z adding 'torch/distributed/_shard/checkpoint/__init__.py' 2025-07-24T03:55:17.4669870Z adding 'torch/distributed/_shard/sharded_optim/__init__.py' 2025-07-24T03:55:17.4671310Z adding 'torch/distributed/_shard/sharded_optim/api.py' 2025-07-24T03:55:17.4674820Z adding 'torch/distributed/_shard/sharded_tensor/__init__.py' 2025-07-24T03:55:17.4685620Z adding 'torch/distributed/_shard/sharded_tensor/api.py' 2025-07-24T03:55:17.4686690Z adding 'torch/distributed/_shard/sharded_tensor/logger.py' 2025-07-24T03:55:17.4687580Z adding 'torch/distributed/_shard/sharded_tensor/logging_handlers.py' 2025-07-24T03:55:17.4688870Z adding 'torch/distributed/_shard/sharded_tensor/metadata.py' 2025-07-24T03:55:17.4691470Z adding 'torch/distributed/_shard/sharded_tensor/reshard.py' 2025-07-24T03:55:17.4692390Z adding 'torch/distributed/_shard/sharded_tensor/shard.py' 2025-07-24T03:55:17.4695260Z adding 'torch/distributed/_shard/sharded_tensor/utils.py' 2025-07-24T03:55:17.4696290Z adding 'torch/distributed/_shard/sharded_tensor/_ops/__init__.py' 2025-07-24T03:55:17.4697760Z adding 'torch/distributed/_shard/sharded_tensor/_ops/_common.py' 2025-07-24T03:55:17.4698930Z adding 'torch/distributed/_shard/sharded_tensor/_ops/binary_cmp.py' 2025-07-24T03:55:17.4700550Z adding 'torch/distributed/_shard/sharded_tensor/_ops/init.py' 2025-07-24T03:55:17.4701490Z adding 'torch/distributed/_shard/sharded_tensor/_ops/misc_ops.py' 2025-07-24T03:55:17.4703620Z adding 'torch/distributed/_shard/sharded_tensor/_ops/tensor_ops.py' 2025-07-24T03:55:17.4704340Z adding 'torch/distributed/_shard/sharding_plan/__init__.py' 2025-07-24T03:55:17.4705800Z adding 'torch/distributed/_shard/sharding_plan/api.py' 2025-07-24T03:55:17.4706950Z adding 'torch/distributed/_shard/sharding_spec/__init__.py' 2025-07-24T03:55:17.4709560Z adding 'torch/distributed/_shard/sharding_spec/_internals.py' 2025-07-24T03:55:17.4712040Z adding 'torch/distributed/_shard/sharding_spec/api.py' 2025-07-24T03:55:17.4714480Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec.py' 2025-07-24T03:55:17.4715310Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/__init__.py' 2025-07-24T03:55:17.4718710Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/_common.py' 2025-07-24T03:55:17.4721460Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding.py' 2025-07-24T03:55:17.4725380Z adding 'torch/distributed/_shard/sharding_spec/chunk_sharding_spec_ops/embedding_bag.py' 2025-07-24T03:55:17.4726350Z adding 'torch/distributed/_sharded_tensor/__init__.py' 2025-07-24T03:55:17.4727540Z adding 'torch/distributed/_sharding_spec/__init__.py' 2025-07-24T03:55:17.4740280Z adding 'torch/distributed/_symmetric_memory/__init__.py' 2025-07-24T03:55:17.4741910Z adding 'torch/distributed/_symmetric_memory/_nvshmem_triton.py' 2025-07-24T03:55:17.4743120Z adding 'torch/distributed/_tensor/__init__.py' 2025-07-24T03:55:17.4744020Z adding 'torch/distributed/_tensor/api.py' 2025-07-24T03:55:17.4744880Z adding 'torch/distributed/_tensor/placement_types.py' 2025-07-24T03:55:17.4746040Z adding 'torch/distributed/_tools/__init__.py' 2025-07-24T03:55:17.4747050Z adding 'torch/distributed/_tools/common_utils.py' 2025-07-24T03:55:17.4749470Z adding 'torch/distributed/_tools/fake_collectives.py' 2025-07-24T03:55:17.4754200Z adding 'torch/distributed/_tools/fsdp2_mem_tracker.py' 2025-07-24T03:55:17.4757400Z adding 'torch/distributed/_tools/ilp_utils.py' 2025-07-24T03:55:17.4766170Z adding 'torch/distributed/_tools/mem_tracker.py' 2025-07-24T03:55:17.4768970Z adding 'torch/distributed/_tools/memory_tracker.py' 2025-07-24T03:55:17.4771600Z adding 'torch/distributed/_tools/mod_tracker.py' 2025-07-24T03:55:17.4775880Z adding 'torch/distributed/_tools/runtime_estimator.py' 2025-07-24T03:55:17.4784440Z adding 'torch/distributed/_tools/sac_estimator.py' 2025-07-24T03:55:17.4787400Z adding 'torch/distributed/_tools/sac_ilp.py' 2025-07-24T03:55:17.4788280Z adding 'torch/distributed/algorithms/__init__.py' 2025-07-24T03:55:17.4791960Z adding 'torch/distributed/algorithms/join.py' 2025-07-24T03:55:17.4793020Z adding 'torch/distributed/algorithms/_checkpoint/__init__.py' 2025-07-24T03:55:17.4796280Z adding 'torch/distributed/algorithms/_checkpoint/checkpoint_wrapper.py' 2025-07-24T03:55:17.4796950Z adding 'torch/distributed/algorithms/_comm_hooks/__init__.py' 2025-07-24T03:55:17.4799380Z adding 'torch/distributed/algorithms/_comm_hooks/default_hooks.py' 2025-07-24T03:55:17.4800130Z adding 'torch/distributed/algorithms/_optimizer_overlap/__init__.py' 2025-07-24T03:55:17.4801530Z adding 'torch/distributed/algorithms/_optimizer_overlap/optimizer_overlap.py' 2025-07-24T03:55:17.4802450Z adding 'torch/distributed/algorithms/_quantization/__init__.py' 2025-07-24T03:55:17.4804550Z adding 'torch/distributed/algorithms/_quantization/quantization.py' 2025-07-24T03:55:17.4805880Z adding 'torch/distributed/algorithms/ddp_comm_hooks/__init__.py' 2025-07-24T03:55:17.4809940Z adding 'torch/distributed/algorithms/ddp_comm_hooks/ddp_zero_hook.py' 2025-07-24T03:55:17.4810720Z adding 'torch/distributed/algorithms/ddp_comm_hooks/debugging_hooks.py' 2025-07-24T03:55:17.4812990Z adding 'torch/distributed/algorithms/ddp_comm_hooks/default_hooks.py' 2025-07-24T03:55:17.4814110Z adding 'torch/distributed/algorithms/ddp_comm_hooks/mixed_precision_hooks.py' 2025-07-24T03:55:17.4816260Z adding 'torch/distributed/algorithms/ddp_comm_hooks/optimizer_overlap_hooks.py' 2025-07-24T03:55:17.4817540Z adding 'torch/distributed/algorithms/ddp_comm_hooks/post_localSGD_hook.py' 2025-07-24T03:55:17.4825760Z adding 'torch/distributed/algorithms/ddp_comm_hooks/powerSGD_hook.py' 2025-07-24T03:55:17.4828130Z adding 'torch/distributed/algorithms/ddp_comm_hooks/quantization_hooks.py' 2025-07-24T03:55:17.4828890Z adding 'torch/distributed/algorithms/model_averaging/__init__.py' 2025-07-24T03:55:17.4831030Z adding 'torch/distributed/algorithms/model_averaging/averagers.py' 2025-07-24T03:55:17.4834240Z adding 'torch/distributed/algorithms/model_averaging/hierarchical_model_averager.py' 2025-07-24T03:55:17.4835250Z adding 'torch/distributed/algorithms/model_averaging/utils.py' 2025-07-24T03:55:17.4836590Z adding 'torch/distributed/autograd/__init__.py' 2025-07-24T03:55:17.4838230Z adding 'torch/distributed/checkpoint/__init__.py' 2025-07-24T03:55:17.4839280Z adding 'torch/distributed/checkpoint/_async_executor.py' 2025-07-24T03:55:17.4842140Z adding 'torch/distributed/checkpoint/_async_process_executor.py' 2025-07-24T03:55:17.4843050Z adding 'torch/distributed/checkpoint/_async_thread_executor.py' 2025-07-24T03:55:17.4844590Z adding 'torch/distributed/checkpoint/_checkpointer.py' 2025-07-24T03:55:17.4851600Z adding 'torch/distributed/checkpoint/_consolidate_hf_safetensors.py' 2025-07-24T03:55:17.4852800Z adding 'torch/distributed/checkpoint/_dedup_save_plans.py' 2025-07-24T03:55:17.4854120Z adding 'torch/distributed/checkpoint/_dedup_tensors.py' 2025-07-24T03:55:17.4856450Z adding 'torch/distributed/checkpoint/_extension.py' 2025-07-24T03:55:17.4857820Z adding 'torch/distributed/checkpoint/_fsspec_filesystem.py' 2025-07-24T03:55:17.4859070Z adding 'torch/distributed/checkpoint/_hf_utils.py' 2025-07-24T03:55:17.4860540Z adding 'torch/distributed/checkpoint/_nested_dict.py' 2025-07-24T03:55:17.4864010Z adding 'torch/distributed/checkpoint/_pg_transport.py' 2025-07-24T03:55:17.4865250Z adding 'torch/distributed/checkpoint/_sharded_tensor_utils.py' 2025-07-24T03:55:17.4868690Z adding 'torch/distributed/checkpoint/_state_dict_stager.py' 2025-07-24T03:55:17.4869650Z adding 'torch/distributed/checkpoint/_storage_utils.py' 2025-07-24T03:55:17.4871800Z adding 'torch/distributed/checkpoint/_traverse.py' 2025-07-24T03:55:17.4872330Z adding 'torch/distributed/checkpoint/_version.py' 2025-07-24T03:55:17.4873340Z adding 'torch/distributed/checkpoint/api.py' 2025-07-24T03:55:17.4879120Z adding 'torch/distributed/checkpoint/default_planner.py' 2025-07-24T03:55:17.4885980Z adding 'torch/distributed/checkpoint/filesystem.py' 2025-07-24T03:55:17.4888590Z adding 'torch/distributed/checkpoint/format_utils.py' 2025-07-24T03:55:17.4891860Z adding 'torch/distributed/checkpoint/hf_storage.py' 2025-07-24T03:55:17.4892950Z adding 'torch/distributed/checkpoint/logger.py' 2025-07-24T03:55:17.4893840Z adding 'torch/distributed/checkpoint/logging_handlers.py' 2025-07-24T03:55:17.4895990Z adding 'torch/distributed/checkpoint/metadata.py' 2025-07-24T03:55:17.4898810Z adding 'torch/distributed/checkpoint/optimizer.py' 2025-07-24T03:55:17.4902560Z adding 'torch/distributed/checkpoint/planner.py' 2025-07-24T03:55:17.4906040Z adding 'torch/distributed/checkpoint/planner_helpers.py' 2025-07-24T03:55:17.4906950Z adding 'torch/distributed/checkpoint/resharding.py' 2025-07-24T03:55:17.4910630Z adding 'torch/distributed/checkpoint/staging.py' 2025-07-24T03:55:17.4921560Z adding 'torch/distributed/checkpoint/state_dict.py' 2025-07-24T03:55:17.4924580Z adding 'torch/distributed/checkpoint/state_dict_loader.py' 2025-07-24T03:55:17.4928190Z adding 'torch/distributed/checkpoint/state_dict_saver.py' 2025-07-24T03:55:17.4928980Z adding 'torch/distributed/checkpoint/stateful.py' 2025-07-24T03:55:17.4931250Z adding 'torch/distributed/checkpoint/storage.py' 2025-07-24T03:55:17.4934590Z adding 'torch/distributed/checkpoint/utils.py' 2025-07-24T03:55:17.4936050Z adding 'torch/distributed/checkpoint/_experimental/__init__.py' 2025-07-24T03:55:17.4938610Z adding 'torch/distributed/checkpoint/_experimental/barriers.py' 2025-07-24T03:55:17.4939920Z adding 'torch/distributed/checkpoint/_experimental/builder.py' 2025-07-24T03:55:17.4943000Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_process.py' 2025-07-24T03:55:17.4945300Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_reader.py' 2025-07-24T03:55:17.4946650Z adding 'torch/distributed/checkpoint/_experimental/checkpoint_writer.py' 2025-07-24T03:55:17.4949180Z adding 'torch/distributed/checkpoint/_experimental/checkpointer.py' 2025-07-24T03:55:17.4949890Z adding 'torch/distributed/checkpoint/_experimental/config.py' 2025-07-24T03:55:17.4952440Z adding 'torch/distributed/checkpoint/_experimental/staging.py' 2025-07-24T03:55:17.4953200Z adding 'torch/distributed/checkpoint/_experimental/types.py' 2025-07-24T03:55:17.4954210Z adding 'torch/distributed/checkpoint/_experimental/utils.py' 2025-07-24T03:55:17.4956270Z adding 'torch/distributed/elastic/__init__.py' 2025-07-24T03:55:17.4957130Z adding 'torch/distributed/elastic/control_plane.py' 2025-07-24T03:55:17.4958280Z adding 'torch/distributed/elastic/agent/__init__.py' 2025-07-24T03:55:17.4959610Z adding 'torch/distributed/elastic/agent/server/__init__.py' 2025-07-24T03:55:17.4968370Z adding 'torch/distributed/elastic/agent/server/api.py' 2025-07-24T03:55:17.4969600Z adding 'torch/distributed/elastic/agent/server/health_check_server.py' 2025-07-24T03:55:17.4973260Z adding 'torch/distributed/elastic/agent/server/local_elastic_agent.py' 2025-07-24T03:55:17.4975350Z adding 'torch/distributed/elastic/events/__init__.py' 2025-07-24T03:55:17.4976460Z adding 'torch/distributed/elastic/events/api.py' 2025-07-24T03:55:17.4977340Z adding 'torch/distributed/elastic/events/handlers.py' 2025-07-24T03:55:17.4979510Z adding 'torch/distributed/elastic/metrics/__init__.py' 2025-07-24T03:55:17.4980950Z adding 'torch/distributed/elastic/metrics/api.py' 2025-07-24T03:55:17.4983840Z adding 'torch/distributed/elastic/multiprocessing/__init__.py' 2025-07-24T03:55:17.4990840Z adding 'torch/distributed/elastic/multiprocessing/api.py' 2025-07-24T03:55:17.4992120Z adding 'torch/distributed/elastic/multiprocessing/redirects.py' 2025-07-24T03:55:17.4994330Z adding 'torch/distributed/elastic/multiprocessing/tail_log.py' 2025-07-24T03:55:17.4998310Z adding 'torch/distributed/elastic/multiprocessing/errors/__init__.py' 2025-07-24T03:55:17.4999950Z adding 'torch/distributed/elastic/multiprocessing/errors/error_handler.py' 2025-07-24T03:55:17.5000880Z adding 'torch/distributed/elastic/multiprocessing/errors/handlers.py' 2025-07-24T03:55:17.5002210Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/__init__.py' 2025-07-24T03:55:17.5003140Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/handlers.py' 2025-07-24T03:55:17.5004370Z adding 'torch/distributed/elastic/multiprocessing/subprocess_handler/subprocess_handler.py' 2025-07-24T03:55:17.5006710Z adding 'torch/distributed/elastic/rendezvous/__init__.py' 2025-07-24T03:55:17.5007660Z adding 'torch/distributed/elastic/rendezvous/_etcd_stub.py' 2025-07-24T03:55:17.5010870Z adding 'torch/distributed/elastic/rendezvous/api.py' 2025-07-24T03:55:17.5013660Z adding 'torch/distributed/elastic/rendezvous/c10d_rendezvous_backend.py' 2025-07-24T03:55:17.5022660Z adding 'torch/distributed/elastic/rendezvous/dynamic_rendezvous.py' 2025-07-24T03:55:17.5031670Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous.py' 2025-07-24T03:55:17.5033840Z adding 'torch/distributed/elastic/rendezvous/etcd_rendezvous_backend.py' 2025-07-24T03:55:17.5036390Z adding 'torch/distributed/elastic/rendezvous/etcd_server.py' 2025-07-24T03:55:17.5038550Z adding 'torch/distributed/elastic/rendezvous/etcd_store.py' 2025-07-24T03:55:17.5039540Z adding 'torch/distributed/elastic/rendezvous/registry.py' 2025-07-24T03:55:17.5040980Z adding 'torch/distributed/elastic/rendezvous/static_tcp_rendezvous.py' 2025-07-24T03:55:17.5043780Z adding 'torch/distributed/elastic/rendezvous/utils.py' 2025-07-24T03:55:17.5044840Z adding 'torch/distributed/elastic/timer/__init__.py' 2025-07-24T03:55:17.5047640Z adding 'torch/distributed/elastic/timer/api.py' 2025-07-24T03:55:17.5048320Z adding 'torch/distributed/elastic/timer/debug_info_logging.py' 2025-07-24T03:55:17.5052410Z adding 'torch/distributed/elastic/timer/file_based_local_timer.py' 2025-07-24T03:55:17.5053680Z adding 'torch/distributed/elastic/timer/local_timer.py' 2025-07-24T03:55:17.5054760Z adding 'torch/distributed/elastic/utils/__init__.py' 2025-07-24T03:55:17.5055880Z adding 'torch/distributed/elastic/utils/api.py' 2025-07-24T03:55:17.5058230Z adding 'torch/distributed/elastic/utils/distributed.py' 2025-07-24T03:55:17.5058820Z adding 'torch/distributed/elastic/utils/log_level.py' 2025-07-24T03:55:17.5060000Z adding 'torch/distributed/elastic/utils/logging.py' 2025-07-24T03:55:17.5062320Z adding 'torch/distributed/elastic/utils/store.py' 2025-07-24T03:55:17.5063510Z adding 'torch/distributed/elastic/utils/data/__init__.py' 2025-07-24T03:55:17.5064660Z adding 'torch/distributed/elastic/utils/data/cycling_iterator.py' 2025-07-24T03:55:17.5066050Z adding 'torch/distributed/elastic/utils/data/elastic_distributed_sampler.py' 2025-07-24T03:55:17.5067340Z adding 'torch/distributed/fsdp/__init__.py' 2025-07-24T03:55:17.5073040Z adding 'torch/distributed/fsdp/_common_utils.py' 2025-07-24T03:55:17.5074820Z adding 'torch/distributed/fsdp/_debug_utils.py' 2025-07-24T03:55:17.5075890Z adding 'torch/distributed/fsdp/_dynamo_utils.py' 2025-07-24T03:55:17.5079350Z adding 'torch/distributed/fsdp/_exec_order_utils.py' 2025-07-24T03:55:17.5105510Z adding 'torch/distributed/fsdp/_flat_param.py' 2025-07-24T03:55:17.5107860Z adding 'torch/distributed/fsdp/_fsdp_extensions.py' 2025-07-24T03:55:17.5117980Z adding 'torch/distributed/fsdp/_init_utils.py' 2025-07-24T03:55:17.5118930Z adding 'torch/distributed/fsdp/_limiter_utils.py' 2025-07-24T03:55:17.5138820Z adding 'torch/distributed/fsdp/_optim_utils.py' 2025-07-24T03:55:17.5153930Z adding 'torch/distributed/fsdp/_runtime_utils.py' 2025-07-24T03:55:17.5155760Z adding 'torch/distributed/fsdp/_shard_utils.py' 2025-07-24T03:55:17.5162360Z adding 'torch/distributed/fsdp/_state_dict_utils.py' 2025-07-24T03:55:17.5165360Z adding 'torch/distributed/fsdp/_trace_utils.py' 2025-07-24T03:55:17.5166770Z adding 'torch/distributed/fsdp/_traversal_utils.py' 2025-07-24T03:55:17.5169770Z adding 'torch/distributed/fsdp/_unshard_param_utils.py' 2025-07-24T03:55:17.5172420Z adding 'torch/distributed/fsdp/_wrap_utils.py' 2025-07-24T03:55:17.5176870Z adding 'torch/distributed/fsdp/api.py' 2025-07-24T03:55:17.5197100Z adding 'torch/distributed/fsdp/fully_sharded_data_parallel.py' 2025-07-24T03:55:17.5201120Z adding 'torch/distributed/fsdp/sharded_grad_scaler.py' 2025-07-24T03:55:17.5206490Z adding 'torch/distributed/fsdp/wrap.py' 2025-07-24T03:55:17.5207680Z adding 'torch/distributed/fsdp/_fully_shard/__init__.py' 2025-07-24T03:55:17.5209720Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_api.py' 2025-07-24T03:55:17.5215560Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_collectives.py' 2025-07-24T03:55:17.5217630Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_common.py' 2025-07-24T03:55:17.5220150Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_init.py' 2025-07-24T03:55:17.5228660Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param.py' 2025-07-24T03:55:17.5236190Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_param_group.py' 2025-07-24T03:55:17.5240140Z adding 'torch/distributed/fsdp/_fully_shard/_fsdp_state.py' 2025-07-24T03:55:17.5246970Z adding 'torch/distributed/fsdp/_fully_shard/_fully_shard.py' 2025-07-24T03:55:17.5248120Z adding 'torch/distributed/launcher/__init__.py' 2025-07-24T03:55:17.5251230Z adding 'torch/distributed/launcher/api.py' 2025-07-24T03:55:17.5252040Z adding 'torch/distributed/nn/__init__.py' 2025-07-24T03:55:17.5255370Z adding 'torch/distributed/nn/functional.py' 2025-07-24T03:55:17.5256380Z adding 'torch/distributed/nn/api/__init__.py' 2025-07-24T03:55:17.5262170Z adding 'torch/distributed/nn/api/remote_module.py' 2025-07-24T03:55:17.5263040Z adding 'torch/distributed/nn/jit/__init__.py' 2025-07-24T03:55:17.5265020Z adding 'torch/distributed/nn/jit/instantiator.py' 2025-07-24T03:55:17.5266040Z adding 'torch/distributed/nn/jit/templates/__init__.py' 2025-07-24T03:55:17.5267480Z adding 'torch/distributed/nn/jit/templates/remote_module_template.py' 2025-07-24T03:55:17.5268850Z adding 'torch/distributed/optim/__init__.py' 2025-07-24T03:55:17.5269780Z adding 'torch/distributed/optim/_deprecation_warning.py' 2025-07-24T03:55:17.5271950Z adding 'torch/distributed/optim/apply_optimizer_in_backward.py' 2025-07-24T03:55:17.5273060Z adding 'torch/distributed/optim/functional_adadelta.py' 2025-07-24T03:55:17.5274580Z adding 'torch/distributed/optim/functional_adagrad.py' 2025-07-24T03:55:17.5276700Z adding 'torch/distributed/optim/functional_adam.py' 2025-07-24T03:55:17.5278000Z adding 'torch/distributed/optim/functional_adamax.py' 2025-07-24T03:55:17.5280090Z adding 'torch/distributed/optim/functional_adamw.py' 2025-07-24T03:55:17.5281310Z adding 'torch/distributed/optim/functional_rmsprop.py' 2025-07-24T03:55:17.5282590Z adding 'torch/distributed/optim/functional_rprop.py' 2025-07-24T03:55:17.5284840Z adding 'torch/distributed/optim/functional_sgd.py' 2025-07-24T03:55:17.5287850Z adding 'torch/distributed/optim/named_optimizer.py' 2025-07-24T03:55:17.5290390Z adding 'torch/distributed/optim/optimizer.py' 2025-07-24T03:55:17.5291690Z adding 'torch/distributed/optim/post_localSGD_optimizer.py' 2025-07-24T03:55:17.5293010Z adding 'torch/distributed/optim/utils.py' 2025-07-24T03:55:17.5308430Z adding 'torch/distributed/optim/zero_redundancy_optimizer.py' 2025-07-24T03:55:17.5314040Z adding 'torch/distributed/optim/zero_redundancy_optimizer.pyi' 2025-07-24T03:55:17.5321980Z adding 'torch/distributed/pipelining/_IR.py' 2025-07-24T03:55:17.5323090Z adding 'torch/distributed/pipelining/__init__.py' 2025-07-24T03:55:17.5327130Z adding 'torch/distributed/pipelining/_backward.py' 2025-07-24T03:55:17.5327810Z adding 'torch/distributed/pipelining/_debug.py' 2025-07-24T03:55:17.5330090Z adding 'torch/distributed/pipelining/_schedule_visualizer.py' 2025-07-24T03:55:17.5331000Z adding 'torch/distributed/pipelining/_unflatten.py' 2025-07-24T03:55:17.5332470Z adding 'torch/distributed/pipelining/_utils.py' 2025-07-24T03:55:17.5336670Z adding 'torch/distributed/pipelining/microbatch.py' 2025-07-24T03:55:17.5357240Z adding 'torch/distributed/pipelining/schedules.py' 2025-07-24T03:55:17.5371760Z adding 'torch/distributed/pipelining/stage.py' 2025-07-24T03:55:17.5375010Z adding 'torch/distributed/rpc/__init__.py' 2025-07-24T03:55:17.5376230Z adding 'torch/distributed/rpc/_utils.py' 2025-07-24T03:55:17.5383540Z adding 'torch/distributed/rpc/api.py' 2025-07-24T03:55:17.5387380Z adding 'torch/distributed/rpc/backend_registry.py' 2025-07-24T03:55:17.5388420Z adding 'torch/distributed/rpc/constants.py' 2025-07-24T03:55:17.5390600Z adding 'torch/distributed/rpc/functions.py' 2025-07-24T03:55:17.5393200Z adding 'torch/distributed/rpc/internal.py' 2025-07-24T03:55:17.5395310Z adding 'torch/distributed/rpc/options.py' 2025-07-24T03:55:17.5396450Z adding 'torch/distributed/rpc/rref_proxy.py' 2025-07-24T03:55:17.5398900Z adding 'torch/distributed/rpc/server_process_global_profiler.py' 2025-07-24T03:55:17.5400100Z adding 'torch/distributed/rpc/_testing/__init__.py' 2025-07-24T03:55:17.5401300Z adding 'torch/distributed/rpc/_testing/faulty_agent_backend_registry.py' 2025-07-24T03:55:17.5403360Z adding 'torch/distributed/tensor/__init__.py' 2025-07-24T03:55:17.5414000Z adding 'torch/distributed/tensor/_api.py' 2025-07-24T03:55:17.5417500Z adding 'torch/distributed/tensor/_collective_utils.py' 2025-07-24T03:55:17.5421930Z adding 'torch/distributed/tensor/_dispatch.py' 2025-07-24T03:55:17.5424500Z adding 'torch/distributed/tensor/_dtensor_spec.py' 2025-07-24T03:55:17.5429480Z adding 'torch/distributed/tensor/_op_schema.py' 2025-07-24T03:55:17.5433190Z adding 'torch/distributed/tensor/_random.py' 2025-07-24T03:55:17.5436840Z adding 'torch/distributed/tensor/_redistribute.py' 2025-07-24T03:55:17.5442110Z adding 'torch/distributed/tensor/_sharding_prop.py' 2025-07-24T03:55:17.5445000Z adding 'torch/distributed/tensor/_shards_wrapper.py' 2025-07-24T03:55:17.5447110Z adding 'torch/distributed/tensor/_tp_conv.py' 2025-07-24T03:55:17.5451210Z adding 'torch/distributed/tensor/_utils.py' 2025-07-24T03:55:17.5451910Z adding 'torch/distributed/tensor/device_mesh.py' 2025-07-24T03:55:17.5458100Z adding 'torch/distributed/tensor/placement_types.py' 2025-07-24T03:55:17.5459190Z adding 'torch/distributed/tensor/_ops/__init__.py' 2025-07-24T03:55:17.5462710Z adding 'torch/distributed/tensor/_ops/_common_rules.py' 2025-07-24T03:55:17.5463790Z adding 'torch/distributed/tensor/_ops/_conv_ops.py' 2025-07-24T03:55:17.5466100Z adding 'torch/distributed/tensor/_ops/_einsum_strategy.py' 2025-07-24T03:55:17.5468560Z adding 'torch/distributed/tensor/_ops/_embedding_ops.py' 2025-07-24T03:55:17.5475990Z adding 'torch/distributed/tensor/_ops/_math_ops.py' 2025-07-24T03:55:17.5482040Z adding 'torch/distributed/tensor/_ops/_matrix_ops.py' 2025-07-24T03:55:17.5486900Z adding 'torch/distributed/tensor/_ops/_pointwise_ops.py' 2025-07-24T03:55:17.5487730Z adding 'torch/distributed/tensor/_ops/_random_ops.py' 2025-07-24T03:55:17.5496950Z adding 'torch/distributed/tensor/_ops/_tensor_ops.py' 2025-07-24T03:55:17.5503300Z adding 'torch/distributed/tensor/_ops/_view_ops.py' 2025-07-24T03:55:17.5506510Z adding 'torch/distributed/tensor/_ops/utils.py' 2025-07-24T03:55:17.5507630Z adding 'torch/distributed/tensor/debug/__init__.py' 2025-07-24T03:55:17.5512890Z adding 'torch/distributed/tensor/debug/_comm_mode.py' 2025-07-24T03:55:17.5514130Z adding 'torch/distributed/tensor/debug/_op_coverage.py' 2025-07-24T03:55:17.5516530Z adding 'torch/distributed/tensor/debug/_visualize_sharding.py' 2025-07-24T03:55:17.5517710Z adding 'torch/distributed/tensor/experimental/__init__.py' 2025-07-24T03:55:17.5527800Z adding 'torch/distributed/tensor/experimental/_attention.py' 2025-07-24T03:55:17.5530670Z adding 'torch/distributed/tensor/experimental/_func_map.py' 2025-07-24T03:55:17.5532840Z adding 'torch/distributed/tensor/experimental/_register_sharding.py' 2025-07-24T03:55:17.5538090Z adding 'torch/distributed/tensor/experimental/_tp_transform.py' 2025-07-24T03:55:17.5539100Z adding 'torch/distributed/tensor/parallel/__init__.py' 2025-07-24T03:55:17.5540230Z adding 'torch/distributed/tensor/parallel/_data_parallel_utils.py' 2025-07-24T03:55:17.5542560Z adding 'torch/distributed/tensor/parallel/api.py' 2025-07-24T03:55:17.5543810Z adding 'torch/distributed/tensor/parallel/ddp.py' 2025-07-24T03:55:17.5547240Z adding 'torch/distributed/tensor/parallel/fsdp.py' 2025-07-24T03:55:17.5548390Z adding 'torch/distributed/tensor/parallel/input_reshard.py' 2025-07-24T03:55:17.5552540Z adding 'torch/distributed/tensor/parallel/loss.py' 2025-07-24T03:55:17.5558210Z adding 'torch/distributed/tensor/parallel/style.py' 2025-07-24T03:55:17.5560780Z adding 'torch/distributions/__init__.py' 2025-07-24T03:55:17.5562560Z adding 'torch/distributions/bernoulli.py' 2025-07-24T03:55:17.5563740Z adding 'torch/distributions/beta.py' 2025-07-24T03:55:17.5565840Z adding 'torch/distributions/binomial.py' 2025-07-24T03:55:17.5567380Z adding 'torch/distributions/categorical.py' 2025-07-24T03:55:17.5568870Z adding 'torch/distributions/cauchy.py' 2025-07-24T03:55:17.5569870Z adding 'torch/distributions/chi2.py' 2025-07-24T03:55:17.5572420Z adding 'torch/distributions/constraint_registry.py' 2025-07-24T03:55:17.5576250Z adding 'torch/distributions/constraints.py' 2025-07-24T03:55:17.5578750Z adding 'torch/distributions/continuous_bernoulli.py' 2025-07-24T03:55:17.5579940Z adding 'torch/distributions/dirichlet.py' 2025-07-24T03:55:17.5582990Z adding 'torch/distributions/distribution.py' 2025-07-24T03:55:17.5583980Z adding 'torch/distributions/exp_family.py' 2025-07-24T03:55:17.5585390Z adding 'torch/distributions/exponential.py' 2025-07-24T03:55:17.5586740Z adding 'torch/distributions/fishersnedecor.py' 2025-07-24T03:55:17.5588170Z adding 'torch/distributions/gamma.py' 2025-07-24T03:55:17.5590340Z adding 'torch/distributions/generalized_pareto.py' 2025-07-24T03:55:17.5591540Z adding 'torch/distributions/geometric.py' 2025-07-24T03:55:17.5592810Z adding 'torch/distributions/gumbel.py' 2025-07-24T03:55:17.5594000Z adding 'torch/distributions/half_cauchy.py' 2025-07-24T03:55:17.5595110Z adding 'torch/distributions/half_normal.py' 2025-07-24T03:55:17.5597090Z adding 'torch/distributions/independent.py' 2025-07-24T03:55:17.5598000Z adding 'torch/distributions/inverse_gamma.py' 2025-07-24T03:55:17.5604030Z adding 'torch/distributions/kl.py' 2025-07-24T03:55:17.5605200Z adding 'torch/distributions/kumaraswamy.py' 2025-07-24T03:55:17.5606690Z adding 'torch/distributions/laplace.py' 2025-07-24T03:55:17.5609010Z adding 'torch/distributions/lkj_cholesky.py' 2025-07-24T03:55:17.5609830Z adding 'torch/distributions/log_normal.py' 2025-07-24T03:55:17.5610950Z adding 'torch/distributions/logistic_normal.py' 2025-07-24T03:55:17.5614000Z adding 'torch/distributions/lowrank_multivariate_normal.py' 2025-07-24T03:55:17.5615930Z adding 'torch/distributions/mixture_same_family.py' 2025-07-24T03:55:17.5617410Z adding 'torch/distributions/multinomial.py' 2025-07-24T03:55:17.5619970Z adding 'torch/distributions/multivariate_normal.py' 2025-07-24T03:55:17.5622080Z adding 'torch/distributions/negative_binomial.py' 2025-07-24T03:55:17.5623140Z adding 'torch/distributions/normal.py' 2025-07-24T03:55:17.5625170Z adding 'torch/distributions/one_hot_categorical.py' 2025-07-24T03:55:17.5625840Z adding 'torch/distributions/pareto.py' 2025-07-24T03:55:17.5627230Z adding 'torch/distributions/poisson.py' 2025-07-24T03:55:17.5629250Z adding 'torch/distributions/relaxed_bernoulli.py' 2025-07-24T03:55:17.5630510Z adding 'torch/distributions/relaxed_categorical.py' 2025-07-24T03:55:17.5631960Z adding 'torch/distributions/studentT.py' 2025-07-24T03:55:17.5634600Z adding 'torch/distributions/transformed_distribution.py' 2025-07-24T03:55:17.5642060Z adding 'torch/distributions/transforms.py' 2025-07-24T03:55:17.5643270Z adding 'torch/distributions/uniform.py' 2025-07-24T03:55:17.5645780Z adding 'torch/distributions/utils.py' 2025-07-24T03:55:17.5647970Z adding 'torch/distributions/von_mises.py' 2025-07-24T03:55:17.5648930Z adding 'torch/distributions/weibull.py' 2025-07-24T03:55:17.5652170Z adding 'torch/distributions/wishart.py' 2025-07-24T03:55:17.5657500Z adding 'torch/export/__init__.py' 2025-07-24T03:55:17.5661460Z adding 'torch/export/_draft_export.py' 2025-07-24T03:55:17.5662380Z adding 'torch/export/_remove_auto_functionalized_pass.py' 2025-07-24T03:55:17.5664440Z adding 'torch/export/_remove_effect_tokens_pass.py' 2025-07-24T03:55:17.5665450Z adding 'torch/export/_safeguard.py' 2025-07-24T03:55:17.5669520Z adding 'torch/export/_swap.py' 2025-07-24T03:55:17.5689400Z adding 'torch/export/_trace.py' 2025-07-24T03:55:17.5690940Z adding 'torch/export/_tree_utils.py' 2025-07-24T03:55:17.5695530Z adding 'torch/export/_unlift.py' 2025-07-24T03:55:17.5696220Z adding 'torch/export/_wrapper_utils.py' 2025-07-24T03:55:17.5697080Z adding 'torch/export/custom_obj.py' 2025-07-24T03:55:17.5698010Z adding 'torch/export/custom_ops.py' 2025-07-24T03:55:17.5700160Z adding 'torch/export/decomp_utils.py' 2025-07-24T03:55:17.5711940Z adding 'torch/export/dynamic_shapes.py' 2025-07-24T03:55:17.5726450Z adding 'torch/export/exported_program.py' 2025-07-24T03:55:17.5731410Z adding 'torch/export/graph_signature.py' 2025-07-24T03:55:17.5746720Z adding 'torch/export/unflatten.py' 2025-07-24T03:55:17.5751190Z adding 'torch/export/experimental/__init__.py' 2025-07-24T03:55:17.5753330Z adding 'torch/export/experimental/_utils.py' 2025-07-24T03:55:17.5754470Z adding 'torch/export/passes/__init__.py' 2025-07-24T03:55:17.5755500Z adding 'torch/export/pt2_archive/__init__.py' 2025-07-24T03:55:17.5760760Z adding 'torch/export/pt2_archive/_package.py' 2025-07-24T03:55:17.5762160Z adding 'torch/export/pt2_archive/_package_weights.py' 2025-07-24T03:55:17.5763060Z adding 'torch/export/pt2_archive/constants.py' 2025-07-24T03:55:17.5770570Z adding 'torch/fft/__init__.py' 2025-07-24T03:55:17.5771680Z adding 'torch/func/__init__.py' 2025-07-24T03:55:17.5775310Z adding 'torch/futures/__init__.py' 2025-07-24T03:55:17.5777590Z adding 'torch/fx/__init__.py' 2025-07-24T03:55:17.5778150Z adding 'torch/fx/_compatibility.py' 2025-07-24T03:55:17.5782810Z adding 'torch/fx/_graph_pickler.py' 2025-07-24T03:55:17.5784910Z adding 'torch/fx/_lazy_graph_module.py' 2025-07-24T03:55:17.5786170Z adding 'torch/fx/_pytree.py' 2025-07-24T03:55:17.5797820Z adding 'torch/fx/_symbolic_trace.py' 2025-07-24T03:55:17.5798820Z adding 'torch/fx/_utils.py' 2025-07-24T03:55:17.5799980Z adding 'torch/fx/annotate.py' 2025-07-24T03:55:17.5800820Z adding 'torch/fx/config.py' 2025-07-24T03:55:17.5818120Z adding 'torch/fx/graph.py' 2025-07-24T03:55:17.5827940Z adding 'torch/fx/graph_module.py' 2025-07-24T03:55:17.5829400Z adding 'torch/fx/immutable_collections.py' 2025-07-24T03:55:17.5834040Z adding 'torch/fx/interpreter.py' 2025-07-24T03:55:17.5842170Z adding 'torch/fx/node.py' 2025-07-24T03:55:17.5847720Z adding 'torch/fx/operator_schemas.py' 2025-07-24T03:55:17.5854180Z adding 'torch/fx/proxy.py' 2025-07-24T03:55:17.5858230Z adding 'torch/fx/subgraph_rewriter.py' 2025-07-24T03:55:17.5859520Z adding 'torch/fx/tensor_type.py' 2025-07-24T03:55:17.5862360Z adding 'torch/fx/traceback.py' 2025-07-24T03:55:17.5863390Z adding 'torch/fx/experimental/__init__.py' 2025-07-24T03:55:17.5864380Z adding 'torch/fx/experimental/_backward_state.py' 2025-07-24T03:55:17.5866450Z adding 'torch/fx/experimental/_config.py' 2025-07-24T03:55:17.5867200Z adding 'torch/fx/experimental/_constant_symnode.py' 2025-07-24T03:55:17.5868750Z adding 'torch/fx/experimental/_dynamism.py' 2025-07-24T03:55:17.5878800Z adding 'torch/fx/experimental/accelerator_partitioner.py' 2025-07-24T03:55:17.5882390Z adding 'torch/fx/experimental/const_fold.py' 2025-07-24T03:55:17.5883010Z adding 'torch/fx/experimental/debug.py' 2025-07-24T03:55:17.5890120Z adding 'torch/fx/experimental/graph_gradual_typechecker.py' 2025-07-24T03:55:17.5892480Z adding 'torch/fx/experimental/merge_matmul.py' 2025-07-24T03:55:17.5895310Z adding 'torch/fx/experimental/meta_tracer.py' 2025-07-24T03:55:17.5896700Z adding 'torch/fx/experimental/normalize.py' 2025-07-24T03:55:17.5901300Z adding 'torch/fx/experimental/optimization.py' 2025-07-24T03:55:17.5904280Z adding 'torch/fx/experimental/partitioner_utils.py' 2025-07-24T03:55:17.5925860Z adding 'torch/fx/experimental/proxy_tensor.py' 2025-07-24T03:55:17.5931040Z adding 'torch/fx/experimental/recording.py' 2025-07-24T03:55:17.5931940Z adding 'torch/fx/experimental/refinement_types.py' 2025-07-24T03:55:17.5933930Z adding 'torch/fx/experimental/rewriter.py' 2025-07-24T03:55:17.5935340Z adding 'torch/fx/experimental/schema_type_annotation.py' 2025-07-24T03:55:17.5948120Z adding 'torch/fx/experimental/sym_node.py' 2025-07-24T03:55:17.6029050Z adding 'torch/fx/experimental/symbolic_shapes.py' 2025-07-24T03:55:17.6032000Z adding 'torch/fx/experimental/unify_refinements.py' 2025-07-24T03:55:17.6039310Z adding 'torch/fx/experimental/validator.py' 2025-07-24T03:55:17.6040650Z adding 'torch/fx/experimental/migrate_gradual_types/__init__.py' 2025-07-24T03:55:17.6043940Z adding 'torch/fx/experimental/migrate_gradual_types/constraint.py' 2025-07-24T03:55:17.6052650Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_generator.py' 2025-07-24T03:55:17.6060970Z adding 'torch/fx/experimental/migrate_gradual_types/constraint_transformation.py' 2025-07-24T03:55:17.6061970Z adding 'torch/fx/experimental/migrate_gradual_types/operation.py' 2025-07-24T03:55:17.6065380Z adding 'torch/fx/experimental/migrate_gradual_types/transform_to_z3.py' 2025-07-24T03:55:17.6066340Z adding 'torch/fx/experimental/migrate_gradual_types/util.py' 2025-07-24T03:55:17.6068400Z adding 'torch/fx/experimental/migrate_gradual_types/z3_types.py' 2025-07-24T03:55:17.6069110Z adding 'torch/fx/experimental/unification/__init__.py' 2025-07-24T03:55:17.6070380Z adding 'torch/fx/experimental/unification/core.py' 2025-07-24T03:55:17.6071400Z adding 'torch/fx/experimental/unification/dispatch.py' 2025-07-24T03:55:17.6072970Z adding 'torch/fx/experimental/unification/match.py' 2025-07-24T03:55:17.6074330Z adding 'torch/fx/experimental/unification/more.py' 2025-07-24T03:55:17.6077270Z adding 'torch/fx/experimental/unification/unification_tools.py' 2025-07-24T03:55:17.6078300Z adding 'torch/fx/experimental/unification/utils.py' 2025-07-24T03:55:17.6079620Z adding 'torch/fx/experimental/unification/variable.py' 2025-07-24T03:55:17.6080810Z adding 'torch/fx/experimental/unification/multipledispatch/__init__.py' 2025-07-24T03:55:17.6082310Z adding 'torch/fx/experimental/unification/multipledispatch/conflict.py' 2025-07-24T03:55:17.6083500Z adding 'torch/fx/experimental/unification/multipledispatch/core.py' 2025-07-24T03:55:17.6087270Z adding 'torch/fx/experimental/unification/multipledispatch/dispatcher.py' 2025-07-24T03:55:17.6088600Z adding 'torch/fx/experimental/unification/multipledispatch/utils.py' 2025-07-24T03:55:17.6090000Z adding 'torch/fx/experimental/unification/multipledispatch/variadic.py' 2025-07-24T03:55:17.6091160Z adding 'torch/fx/passes/__init__.py' 2025-07-24T03:55:17.6095150Z adding 'torch/fx/passes/_tensorify_python_scalars.py' 2025-07-24T03:55:17.6096090Z adding 'torch/fx/passes/annotate_getitem_nodes.py' 2025-07-24T03:55:17.6097570Z adding 'torch/fx/passes/fake_tensor_prop.py' 2025-07-24T03:55:17.6101480Z adding 'torch/fx/passes/graph_drawer.py' 2025-07-24T03:55:17.6102900Z adding 'torch/fx/passes/graph_manipulation.py' 2025-07-24T03:55:17.6105110Z adding 'torch/fx/passes/graph_transform_observer.py' 2025-07-24T03:55:17.6112010Z adding 'torch/fx/passes/net_min_base.py' 2025-07-24T03:55:17.6114170Z adding 'torch/fx/passes/operator_support.py' 2025-07-24T03:55:17.6115240Z adding 'torch/fx/passes/param_fetch.py' 2025-07-24T03:55:17.6117700Z adding 'torch/fx/passes/pass_manager.py' 2025-07-24T03:55:17.6125650Z adding 'torch/fx/passes/reinplace.py' 2025-07-24T03:55:17.6131490Z adding 'torch/fx/passes/runtime_assert.py' 2025-07-24T03:55:17.6133990Z adding 'torch/fx/passes/shape_prop.py' 2025-07-24T03:55:17.6139880Z adding 'torch/fx/passes/split_module.py' 2025-07-24T03:55:17.6143070Z adding 'torch/fx/passes/split_utils.py' 2025-07-24T03:55:17.6150200Z adding 'torch/fx/passes/splitter_base.py' 2025-07-24T03:55:17.6153410Z adding 'torch/fx/passes/tools_common.py' 2025-07-24T03:55:17.6154380Z adding 'torch/fx/passes/backends/__init__.py' 2025-07-24T03:55:17.6155530Z adding 'torch/fx/passes/backends/cudagraphs.py' 2025-07-24T03:55:17.6156620Z adding 'torch/fx/passes/dialect/__init__.py' 2025-07-24T03:55:17.6157550Z adding 'torch/fx/passes/dialect/common/__init__.py' 2025-07-24T03:55:17.6159550Z adding 'torch/fx/passes/dialect/common/cse_pass.py' 2025-07-24T03:55:17.6160190Z adding 'torch/fx/passes/infra/__init__.py' 2025-07-24T03:55:17.6164110Z adding 'torch/fx/passes/infra/partitioner.py' 2025-07-24T03:55:17.6165040Z adding 'torch/fx/passes/infra/pass_base.py' 2025-07-24T03:55:17.6167960Z adding 'torch/fx/passes/infra/pass_manager.py' 2025-07-24T03:55:17.6168640Z adding 'torch/fx/passes/tests/__init__.py' 2025-07-24T03:55:17.6169760Z adding 'torch/fx/passes/tests/test_pass_manager.py' 2025-07-24T03:55:17.6170750Z adding 'torch/fx/passes/utils/__init__.py' 2025-07-24T03:55:17.6172040Z adding 'torch/fx/passes/utils/common.py' 2025-07-24T03:55:17.6174950Z adding 'torch/fx/passes/utils/fuser_utils.py' 2025-07-24T03:55:17.6178970Z adding 'torch/fx/passes/utils/matcher_utils.py' 2025-07-24T03:55:17.6180290Z adding 'torch/fx/passes/utils/matcher_with_name_node_map_utils.py' 2025-07-24T03:55:17.6182350Z adding 'torch/fx/passes/utils/source_matcher_utils.py' 2025-07-24T03:55:17.6183650Z adding 'torch/include/clog.h' 2025-07-24T03:55:17.6191190Z adding 'torch/include/cpuinfo.h' 2025-07-24T03:55:17.6192080Z adding 'torch/include/experiments-config.h' 2025-07-24T03:55:17.6192880Z adding 'torch/include/fp16.h' 2025-07-24T03:55:17.6195660Z adding 'torch/include/fxdiv.h' 2025-07-24T03:55:17.6196320Z adding 'torch/include/libshm.h' 2025-07-24T03:55:17.6200590Z adding 'torch/include/nnpack.h' 2025-07-24T03:55:17.6204730Z adding 'torch/include/omp.h' 2025-07-24T03:55:17.6210390Z adding 'torch/include/psimd.h' 2025-07-24T03:55:17.6218790Z adding 'torch/include/pthreadpool.h' 2025-07-24T03:55:17.6220140Z adding 'torch/include/qnnpack_func.h' 2025-07-24T03:55:17.6235740Z adding 'torch/include/sleef.h' 2025-07-24T03:55:17.6258850Z adding 'torch/include/xnnpack.h' 2025-07-24T03:55:17.6262340Z adding 'torch/include/ATen/ATen.h' 2025-07-24T03:55:17.6263790Z adding 'torch/include/ATen/AccumulateType.h' 2025-07-24T03:55:17.6264630Z adding 'torch/include/ATen/ArrayRef.h' 2025-07-24T03:55:17.6265410Z adding 'torch/include/ATen/Backend.h' 2025-07-24T03:55:17.6266160Z adding 'torch/include/ATen/Backtrace.h' 2025-07-24T03:55:17.6267160Z adding 'torch/include/ATen/BlasBackend.h' 2025-07-24T03:55:17.6269890Z adding 'torch/include/ATen/CPUApplyUtils.h' 2025-07-24T03:55:17.6270590Z adding 'torch/include/ATen/CPUFixedAllocator.h' 2025-07-24T03:55:17.6271640Z adding 'torch/include/ATen/CPUFunctions.h' 2025-07-24T03:55:17.6275000Z adding 'torch/include/ATen/CPUFunctions_inl.h' 2025-07-24T03:55:17.6275780Z adding 'torch/include/ATen/CPUGeneratorImpl.h' 2025-07-24T03:55:17.6276890Z adding 'torch/include/ATen/CUDAFunctions.h' 2025-07-24T03:55:17.6280460Z adding 'torch/include/ATen/CUDAFunctions_inl.h' 2025-07-24T03:55:17.6281330Z adding 'torch/include/ATen/CachedTensorUtils.h' 2025-07-24T03:55:17.6282520Z adding 'torch/include/ATen/CollapseDims.h' 2025-07-24T03:55:17.6283710Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions.h' 2025-07-24T03:55:17.6287590Z adding 'torch/include/ATen/CompositeExplicitAutogradFunctions_inl.h' 2025-07-24T03:55:17.6288660Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions.h' 2025-07-24T03:55:17.6291360Z adding 'torch/include/ATen/CompositeExplicitAutogradNonFunctionalFunctions_inl.h' 2025-07-24T03:55:17.6292140Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions.h' 2025-07-24T03:55:17.6295590Z adding 'torch/include/ATen/CompositeImplicitAutogradFunctions_inl.h' 2025-07-24T03:55:17.6296590Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions.h' 2025-07-24T03:55:17.6297520Z adding 'torch/include/ATen/CompositeImplicitAutogradNestedTensorFunctions_inl.h' 2025-07-24T03:55:17.6298360Z adding 'torch/include/ATen/Config.h' 2025-07-24T03:55:17.6303090Z adding 'torch/include/ATen/Context.h' 2025-07-24T03:55:17.6303990Z adding 'torch/include/ATen/DLConvertor.h' 2025-07-24T03:55:17.6304730Z adding 'torch/include/ATen/Device.h' 2025-07-24T03:55:17.6306020Z adding 'torch/include/ATen/DeviceAccelerator.h' 2025-07-24T03:55:17.6306970Z adding 'torch/include/ATen/DeviceGuard.h' 2025-07-24T03:55:17.6307720Z adding 'torch/include/ATen/DimVector.h' 2025-07-24T03:55:17.6308420Z adding 'torch/include/ATen/Dimname.h' 2025-07-24T03:55:17.6313650Z adding 'torch/include/ATen/Dispatch.h' 2025-07-24T03:55:17.6318350Z adding 'torch/include/ATen/Dispatch_v2.h' 2025-07-24T03:55:17.6319260Z adding 'torch/include/ATen/DynamicLibrary.h' 2025-07-24T03:55:17.6320390Z adding 'torch/include/ATen/EmptyTensor.h' 2025-07-24T03:55:17.6321370Z adding 'torch/include/ATen/ExpandBase.h' 2025-07-24T03:55:17.6324500Z adding 'torch/include/ATen/ExpandUtils.h' 2025-07-24T03:55:17.6325020Z adding 'torch/include/ATen/Formatting.h' 2025-07-24T03:55:17.6326050Z adding 'torch/include/ATen/FuncTorchTLS.h' 2025-07-24T03:55:17.6328670Z adding 'torch/include/ATen/FunctionalStorageImpl.h' 2025-07-24T03:55:17.6333070Z adding 'torch/include/ATen/FunctionalTensorWrapper.h' 2025-07-24T03:55:17.6338950Z adding 'torch/include/ATen/Functions.h' 2025-07-24T03:55:17.6339640Z adding 'torch/include/ATen/Generator.h' 2025-07-24T03:55:17.6340880Z adding 'torch/include/ATen/InferSize.h' 2025-07-24T03:55:17.6341860Z adding 'torch/include/ATen/InitialTensorOptions.h' 2025-07-24T03:55:17.6342650Z adding 'torch/include/ATen/Layout.h' 2025-07-24T03:55:17.6343610Z adding 'torch/include/ATen/LegacyBatchedFallback.h' 2025-07-24T03:55:17.6345720Z adding 'torch/include/ATen/LegacyBatchedTensorImpl.h' 2025-07-24T03:55:17.6346420Z adding 'torch/include/ATen/LegacyVmapMode.h' 2025-07-24T03:55:17.6348920Z adding 'torch/include/ATen/LegacyVmapTransforms.h' 2025-07-24T03:55:17.6349530Z adding 'torch/include/ATen/LinalgBackend.h' 2025-07-24T03:55:17.6350570Z adding 'torch/include/ATen/MPSFunctions.h' 2025-07-24T03:55:17.6353170Z adding 'torch/include/ATen/MPSFunctions_inl.h' 2025-07-24T03:55:17.6354210Z adding 'torch/include/ATen/MapAllocator.h' 2025-07-24T03:55:17.6355440Z adding 'torch/include/ATen/MatrixRef.h' 2025-07-24T03:55:17.6356370Z adding 'torch/include/ATen/MemoryOverlap.h' 2025-07-24T03:55:17.6357560Z adding 'torch/include/ATen/MetaFunctions.h' 2025-07-24T03:55:17.6359810Z adding 'torch/include/ATen/MetaFunctions_inl.h' 2025-07-24T03:55:17.6361990Z adding 'torch/include/ATen/MethodOperators.h' 2025-07-24T03:55:17.6362590Z adding 'torch/include/ATen/NamedTensor.h' 2025-07-24T03:55:17.6364660Z adding 'torch/include/ATen/NamedTensorUtils.h' 2025-07-24T03:55:17.6370650Z adding 'torch/include/ATen/NativeFunctions.h' 2025-07-24T03:55:17.6376670Z adding 'torch/include/ATen/NativeMetaFunctions.h' 2025-07-24T03:55:17.6379480Z adding 'torch/include/ATen/NestedTensorImpl.h' 2025-07-24T03:55:17.6380440Z adding 'torch/include/ATen/NumericUtils.h' 2025-07-24T03:55:17.6381440Z adding 'torch/include/ATen/OpMathType.h' 2025-07-24T03:55:17.6383470Z adding 'torch/include/ATen/OpaqueTensorImpl.h' 2025-07-24T03:55:17.6389800Z adding 'torch/include/ATen/Operators.h' 2025-07-24T03:55:17.6390560Z adding 'torch/include/ATen/PTThreadPool.h' 2025-07-24T03:55:17.6391330Z adding 'torch/include/ATen/PadNd.h' 2025-07-24T03:55:17.6392420Z adding 'torch/include/ATen/Parallel-inl.h' 2025-07-24T03:55:17.6393900Z adding 'torch/include/ATen/Parallel.h' 2025-07-24T03:55:17.6394720Z adding 'torch/include/ATen/ParallelFuture.h' 2025-07-24T03:55:17.6395540Z adding 'torch/include/ATen/ParallelNative.h' 2025-07-24T03:55:17.6396530Z adding 'torch/include/ATen/ParallelOpenMP.h' 2025-07-24T03:55:17.6397540Z adding 'torch/include/ATen/PythonTorchFunctionTLS.h' 2025-07-24T03:55:17.6398410Z adding 'torch/include/ATen/ROCmFABackend.h' 2025-07-24T03:55:17.6570100Z adding 'torch/include/ATen/RedispatchFunctions.h' 2025-07-24T03:55:17.6667110Z adding 'torch/include/ATen/RegistrationDeclarations.h' 2025-07-24T03:55:17.6671960Z adding 'torch/include/ATen/SDPBackend.h' 2025-07-24T03:55:17.6673280Z adding 'torch/include/ATen/SavedTensorHooks.h' 2025-07-24T03:55:17.6674070Z adding 'torch/include/ATen/Scalar.h' 2025-07-24T03:55:17.6675200Z adding 'torch/include/ATen/ScalarOps.h' 2025-07-24T03:55:17.6676000Z adding 'torch/include/ATen/ScalarType.h' 2025-07-24T03:55:17.6676980Z adding 'torch/include/ATen/SequenceNumber.h' 2025-07-24T03:55:17.6677740Z adding 'torch/include/ATen/SmallVector.h' 2025-07-24T03:55:17.6680120Z adding 'torch/include/ATen/SparseCsrTensorImpl.h' 2025-07-24T03:55:17.6683240Z adding 'torch/include/ATen/SparseCsrTensorUtils.h' 2025-07-24T03:55:17.6686600Z adding 'torch/include/ATen/SparseTensorImpl.h' 2025-07-24T03:55:17.6687190Z adding 'torch/include/ATen/Storage.h' 2025-07-24T03:55:17.6688220Z adding 'torch/include/ATen/StorageUtils.h' 2025-07-24T03:55:17.6688980Z adding 'torch/include/ATen/Tensor.h' 2025-07-24T03:55:17.6689920Z adding 'torch/include/ATen/TensorAccessor.h' 2025-07-24T03:55:17.6691330Z adding 'torch/include/ATen/TensorGeometry.h' 2025-07-24T03:55:17.6697200Z adding 'torch/include/ATen/TensorIndexing.h' 2025-07-24T03:55:17.6705840Z adding 'torch/include/ATen/TensorIterator.h' 2025-07-24T03:55:17.6706990Z adding 'torch/include/ATen/TensorIteratorInternal.h' 2025-07-24T03:55:17.6708510Z adding 'torch/include/ATen/TensorMeta.h' 2025-07-24T03:55:17.6709810Z adding 'torch/include/ATen/TensorNames.h' 2025-07-24T03:55:17.6710990Z adding 'torch/include/ATen/TensorOperators.h' 2025-07-24T03:55:17.6711770Z adding 'torch/include/ATen/TensorOptions.h' 2025-07-24T03:55:17.6713140Z adding 'torch/include/ATen/TensorSubclassLikeUtils.h' 2025-07-24T03:55:17.6715070Z adding 'torch/include/ATen/TensorUtils.h' 2025-07-24T03:55:17.6715640Z adding 'torch/include/ATen/ThreadLocalPythonObjects.h' 2025-07-24T03:55:17.6717230Z adding 'torch/include/ATen/ThreadLocalState.h' 2025-07-24T03:55:17.6718950Z adding 'torch/include/ATen/TracerMode.h' 2025-07-24T03:55:17.6719670Z adding 'torch/include/ATen/TypeDefault.h' 2025-07-24T03:55:17.6721080Z adding 'torch/include/ATen/Utils.h' 2025-07-24T03:55:17.6721880Z adding 'torch/include/ATen/Version.h' 2025-07-24T03:55:17.6839170Z adding 'torch/include/ATen/VmapGeneratedPlumbing.h' 2025-07-24T03:55:17.6848280Z adding 'torch/include/ATen/WrapDimUtils.h' 2025-07-24T03:55:17.6849090Z adding 'torch/include/ATen/WrapDimUtilsMulti.h' 2025-07-24T03:55:17.6855740Z adding 'torch/include/ATen/autocast_mode.h' 2025-07-24T03:55:17.6856650Z adding 'torch/include/ATen/ceil_div.h' 2025-07-24T03:55:17.6858970Z adding 'torch/include/ATen/code_template.h' 2025-07-24T03:55:17.6860080Z adding 'torch/include/ATen/cpp_custom_type_hack.h' 2025-07-24T03:55:17.6861060Z adding 'torch/include/ATen/div_rtn.h' 2025-07-24T03:55:17.6864020Z adding 'torch/include/ATen/dlpack.h' 2025-07-24T03:55:17.6864630Z adding 'torch/include/ATen/jit_macros.h' 2025-07-24T03:55:17.6865640Z adding 'torch/include/ATen/jiterator_macros.h' 2025-07-24T03:55:17.6870860Z adding 'torch/include/ATen/record_function.h' 2025-07-24T03:55:17.6873110Z adding 'torch/include/ATen/core/ATenGeneral.h' 2025-07-24T03:55:17.6873710Z adding 'torch/include/ATen/core/ATenOpList.h' 2025-07-24T03:55:17.6874600Z adding 'torch/include/ATen/core/ATen_fwd.h' 2025-07-24T03:55:17.6876540Z adding 'torch/include/ATen/core/ATen_pch.h' 2025-07-24T03:55:17.6877190Z adding 'torch/include/ATen/core/Array.h' 2025-07-24T03:55:17.6877940Z adding 'torch/include/ATen/core/Backtrace.h' 2025-07-24T03:55:17.6884410Z adding 'torch/include/ATen/core/CachingHostAllocator.h' 2025-07-24T03:55:17.6885280Z adding 'torch/include/ATen/core/CheckMemoryFormat.h' 2025-07-24T03:55:17.6886940Z adding 'torch/include/ATen/core/DeprecatedTypeProperties.h' 2025-07-24T03:55:17.6887730Z adding 'torch/include/ATen/core/DeprecatedTypePropertiesRegistry.h' 2025-07-24T03:55:17.6891120Z adding 'torch/include/ATen/core/Dict.h' 2025-07-24T03:55:17.6892890Z adding 'torch/include/ATen/core/Dict_inl.h' 2025-07-24T03:55:17.6893590Z adding 'torch/include/ATen/core/DimVector.h' 2025-07-24T03:55:17.6894530Z adding 'torch/include/ATen/core/Dimname.h' 2025-07-24T03:55:17.6897090Z adding 'torch/include/ATen/core/DistributionsHelper.h' 2025-07-24T03:55:17.6897780Z adding 'torch/include/ATen/core/Formatting.h' 2025-07-24T03:55:17.6899990Z adding 'torch/include/ATen/core/Generator.h' 2025-07-24T03:55:17.6900750Z adding 'torch/include/ATen/core/GeneratorForPrivateuseone.h' 2025-07-24T03:55:17.6905370Z adding 'torch/include/ATen/core/IListRef.h' 2025-07-24T03:55:17.6906790Z adding 'torch/include/ATen/core/IListRef_inl.h' 2025-07-24T03:55:17.6908790Z adding 'torch/include/ATen/core/LegacyTypeDispatch.h' 2025-07-24T03:55:17.6911960Z adding 'torch/include/ATen/core/List.h' 2025-07-24T03:55:17.6914200Z adding 'torch/include/ATen/core/List_inl.h' 2025-07-24T03:55:17.6916270Z adding 'torch/include/ATen/core/MT19937RNGEngine.h' 2025-07-24T03:55:17.6917690Z adding 'torch/include/ATen/core/NamedTensor.h' 2025-07-24T03:55:17.6919700Z adding 'torch/include/ATen/core/NestedIntSymNodeImpl.h' 2025-07-24T03:55:17.6921810Z adding 'torch/include/ATen/core/PhiloxRNGEngine.h' 2025-07-24T03:55:17.6922580Z adding 'torch/include/ATen/core/PythonFallbackKernel.h' 2025-07-24T03:55:17.6923530Z adding 'torch/include/ATen/core/PythonOpRegistrationTrampoline.h' 2025-07-24T03:55:17.6924650Z adding 'torch/include/ATen/core/QuantizerBase.h' 2025-07-24T03:55:17.6925470Z adding 'torch/include/ATen/core/Range.h' 2025-07-24T03:55:17.6926420Z adding 'torch/include/ATen/core/Reduction.h' 2025-07-24T03:55:17.6927140Z adding 'torch/include/ATen/core/Scalar.h' 2025-07-24T03:55:17.6927880Z adding 'torch/include/ATen/core/ScalarType.h' 2025-07-24T03:55:17.6929020Z adding 'torch/include/ATen/core/Tensor.h' 2025-07-24T03:55:17.6931390Z adding 'torch/include/ATen/core/TensorAccessor.h' 2025-07-24T03:55:17.6939920Z adding 'torch/include/ATen/core/TensorBase.h' 2025-07-24T03:55:17.6973750Z adding 'torch/include/ATen/core/TensorBody.h' 2025-07-24T03:55:17.6976130Z adding 'torch/include/ATen/core/TorchDispatchUtils.h' 2025-07-24T03:55:17.6977660Z adding 'torch/include/ATen/core/TransformationHelper.h' 2025-07-24T03:55:17.6978450Z adding 'torch/include/ATen/core/UndefinedTensorImpl.h' 2025-07-24T03:55:17.6979480Z adding 'torch/include/ATen/core/UnsafeFromTH.h' 2025-07-24T03:55:17.6980840Z adding 'torch/include/ATen/core/VariableHooksInterface.h' 2025-07-24T03:55:17.6981960Z adding 'torch/include/ATen/core/Variadic.h' 2025-07-24T03:55:17.6983100Z adding 'torch/include/ATen/core/Vitals.h' 2025-07-24T03:55:17.6985060Z adding 'torch/include/ATen/core/alias_info.h' 2025-07-24T03:55:17.6994330Z adding 'torch/include/ATen/core/aten_interned_strings.h' 2025-07-24T03:55:17.6996410Z adding 'torch/include/ATen/core/blob.h' 2025-07-24T03:55:17.6997400Z adding 'torch/include/ATen/core/builtin_function.h' 2025-07-24T03:55:17.7000810Z adding 'torch/include/ATen/core/class_type.h' 2025-07-24T03:55:17.7001620Z adding 'torch/include/ATen/core/custom_class.h' 2025-07-24T03:55:17.7004320Z adding 'torch/include/ATen/core/dynamic_type.h' 2025-07-24T03:55:17.7005040Z adding 'torch/include/ATen/core/enum_tag.h' 2025-07-24T03:55:17.7006280Z adding 'torch/include/ATen/core/enum_type.h' 2025-07-24T03:55:17.7007690Z adding 'torch/include/ATen/core/function.h' 2025-07-24T03:55:17.7013440Z adding 'torch/include/ATen/core/function_schema.h' 2025-07-24T03:55:17.7014480Z adding 'torch/include/ATen/core/function_schema_inl.h' 2025-07-24T03:55:17.7015480Z adding 'torch/include/ATen/core/functional.h' 2025-07-24T03:55:17.7016310Z adding 'torch/include/ATen/core/grad_mode.h' 2025-07-24T03:55:17.7019350Z adding 'torch/include/ATen/core/interned_strings.h' 2025-07-24T03:55:17.7020170Z adding 'torch/include/ATen/core/interned_strings_class.h' 2025-07-24T03:55:17.7031830Z adding 'torch/include/ATen/core/ivalue.h' 2025-07-24T03:55:17.7049820Z adding 'torch/include/ATen/core/ivalue_inl.h' 2025-07-24T03:55:17.7051180Z adding 'torch/include/ATen/core/ivalue_to.h' 2025-07-24T03:55:17.7065050Z adding 'torch/include/ATen/core/jit_type.h' 2025-07-24T03:55:17.7069910Z adding 'torch/include/ATen/core/jit_type_base.h' 2025-07-24T03:55:17.7071190Z adding 'torch/include/ATen/core/operator_name.h' 2025-07-24T03:55:17.7072950Z adding 'torch/include/ATen/core/qualified_name.h' 2025-07-24T03:55:17.7073950Z adding 'torch/include/ATen/core/rref_interface.h' 2025-07-24T03:55:17.7075970Z adding 'torch/include/ATen/core/stack.h' 2025-07-24T03:55:17.7078030Z adding 'torch/include/ATen/core/symbol.h' 2025-07-24T03:55:17.7078830Z adding 'torch/include/ATen/core/type_factory.h' 2025-07-24T03:55:17.7079760Z adding 'torch/include/ATen/core/type_ptr.h' 2025-07-24T03:55:17.7080500Z adding 'torch/include/ATen/core/typeid.h' 2025-07-24T03:55:17.7083530Z adding 'torch/include/ATen/core/boxing/BoxedKernel.h' 2025-07-24T03:55:17.7084530Z adding 'torch/include/ATen/core/boxing/BoxedKernel_impl.h' 2025-07-24T03:55:17.7086850Z adding 'torch/include/ATen/core/boxing/KernelFunction.h' 2025-07-24T03:55:17.7089210Z adding 'torch/include/ATen/core/boxing/KernelFunction_impl.h' 2025-07-24T03:55:17.7089990Z adding 'torch/include/ATen/core/boxing/OperatorKernel.h' 2025-07-24T03:55:17.7091420Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoFunctor.h' 2025-07-24T03:55:17.7092460Z adding 'torch/include/ATen/core/boxing/impl/WrapFunctionIntoRuntimeFunctor.h' 2025-07-24T03:55:17.7095450Z adding 'torch/include/ATen/core/boxing/impl/boxing.h' 2025-07-24T03:55:17.7100790Z adding 'torch/include/ATen/core/boxing/impl/make_boxed_from_unboxed_functor.h' 2025-07-24T03:55:17.7102040Z adding 'torch/include/ATen/core/boxing/impl/test_helpers.h' 2025-07-24T03:55:17.7103770Z adding 'torch/include/ATen/core/dispatch/CppSignature.h' 2025-07-24T03:55:17.7106500Z adding 'torch/include/ATen/core/dispatch/DispatchKeyExtractor.h' 2025-07-24T03:55:17.7113860Z adding 'torch/include/ATen/core/dispatch/Dispatcher.h' 2025-07-24T03:55:17.7114710Z adding 'torch/include/ATen/core/dispatch/ObservedOperators.h' 2025-07-24T03:55:17.7118150Z adding 'torch/include/ATen/core/dispatch/OperatorEntry.h' 2025-07-24T03:55:17.7118970Z adding 'torch/include/ATen/core/dispatch/OperatorOptions.h' 2025-07-24T03:55:17.7119880Z adding 'torch/include/ATen/core/dispatch/RegistrationHandleRAII.h' 2025-07-24T03:55:17.7121460Z adding 'torch/include/ATen/core/op_registration/adaption.h' 2025-07-24T03:55:17.7123210Z adding 'torch/include/ATen/core/op_registration/infer_schema.h' 2025-07-24T03:55:17.7125270Z adding 'torch/include/ATen/core/op_registration/op_allowlist.h' 2025-07-24T03:55:17.7129610Z adding 'torch/include/ATen/core/op_registration/op_registration.h' 2025-07-24T03:55:17.7130520Z adding 'torch/include/ATen/cpu/FlushDenormal.h' 2025-07-24T03:55:17.7131400Z adding 'torch/include/ATen/cpu/Utils.h' 2025-07-24T03:55:17.7133490Z adding 'torch/include/ATen/cpu/vml.h' 2025-07-24T03:55:17.7134400Z adding 'torch/include/ATen/cpu/vec/functional.h' 2025-07-24T03:55:17.7137070Z adding 'torch/include/ATen/cpu/vec/functional_base.h' 2025-07-24T03:55:17.7140150Z adding 'torch/include/ATen/cpu/vec/functional_bfloat16.h' 2025-07-24T03:55:17.7141170Z adding 'torch/include/ATen/cpu/vec/intrinsics.h' 2025-07-24T03:55:17.7142190Z adding 'torch/include/ATen/cpu/vec/vec.h' 2025-07-24T03:55:17.7149780Z adding 'torch/include/ATen/cpu/vec/vec_base.h' 2025-07-24T03:55:17.7150790Z adding 'torch/include/ATen/cpu/vec/vec_convert.h' 2025-07-24T03:55:17.7152390Z adding 'torch/include/ATen/cpu/vec/vec_half.h' 2025-07-24T03:55:17.7154790Z adding 'torch/include/ATen/cpu/vec/vec_mask.h' 2025-07-24T03:55:17.7157140Z adding 'torch/include/ATen/cpu/vec/vec_n.h' 2025-07-24T03:55:17.7158310Z adding 'torch/include/ATen/cpu/vec/vec_quant.h' 2025-07-24T03:55:17.7160250Z adding 'torch/include/ATen/cpu/vec/sve/sve_helper.h' 2025-07-24T03:55:17.7163490Z adding 'torch/include/ATen/cpu/vec/sve/vec_bfloat16.h' 2025-07-24T03:55:17.7165200Z adding 'torch/include/ATen/cpu/vec/sve/vec_common_sve.h' 2025-07-24T03:55:17.7168270Z adding 'torch/include/ATen/cpu/vec/sve/vec_double.h' 2025-07-24T03:55:17.7172470Z adding 'torch/include/ATen/cpu/vec/sve/vec_float.h' 2025-07-24T03:55:17.7175870Z adding 'torch/include/ATen/cpu/vec/sve/vec_int.h' 2025-07-24T03:55:17.7178820Z adding 'torch/include/ATen/cpu/vec/sve/vec_qint.h' 2025-07-24T03:55:17.7179830Z adding 'torch/include/ATen/cpu/vec/vec128/vec128.h' 2025-07-24T03:55:17.7183540Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_bfloat16_neon.h' 2025-07-24T03:55:17.7184510Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_convert.h' 2025-07-24T03:55:17.7188030Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_float_neon.h' 2025-07-24T03:55:17.7191370Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_half_neon.h' 2025-07-24T03:55:17.7193270Z adding 'torch/include/ATen/cpu/vec/vec128/vec128_reduced_precision_common_neon.h' 2025-07-24T03:55:17.7195450Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vld1_neon.h' 2025-07-24T03:55:17.7196060Z adding 'torch/include/ATen/cpu/vec/vec256/missing_vst1_neon.h' 2025-07-24T03:55:17.7198890Z adding 'torch/include/ATen/cpu/vec/vec256/vec256.h' 2025-07-24T03:55:17.7203000Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_16bit_float.h' 2025-07-24T03:55:17.7205090Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_bfloat16.h' 2025-07-24T03:55:17.7208640Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_double.h' 2025-07-24T03:55:17.7212560Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_complex_float.h' 2025-07-24T03:55:17.7214780Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_convert.h' 2025-07-24T03:55:17.7217340Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_double.h' 2025-07-24T03:55:17.7221810Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_float.h' 2025-07-24T03:55:17.7223540Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_half.h' 2025-07-24T03:55:17.7231920Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_int.h' 2025-07-24T03:55:17.7234310Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_mask.h' 2025-07-24T03:55:17.7240810Z adding 'torch/include/ATen/cpu/vec/vec256/vec256_qint.h' 2025-07-24T03:55:17.7242310Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_bfloat16_vsx.h' 2025-07-24T03:55:17.7244450Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_common_vsx.h' 2025-07-24T03:55:17.7248860Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_double_vsx.h' 2025-07-24T03:55:17.7253210Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_complex_float_vsx.h' 2025-07-24T03:55:17.7255970Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_double_vsx.h' 2025-07-24T03:55:17.7258810Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_float_vsx.h' 2025-07-24T03:55:17.7261210Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int16_vsx.h' 2025-07-24T03:55:17.7263330Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int32_vsx.h' 2025-07-24T03:55:17.7265390Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_int64_vsx.h' 2025-07-24T03:55:17.7267450Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint32_vsx.h' 2025-07-24T03:55:17.7270750Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_qint8_vsx.h' 2025-07-24T03:55:17.7273690Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vec256_quint8_vsx.h' 2025-07-24T03:55:17.7277510Z adding 'torch/include/ATen/cpu/vec/vec256/vsx/vsx_helpers.h' 2025-07-24T03:55:17.7292320Z adding 'torch/include/ATen/cpu/vec/vec256/zarch/vec256_zarch.h' 2025-07-24T03:55:17.7295340Z adding 'torch/include/ATen/cpu/vec/vec512/vec512.h' 2025-07-24T03:55:17.7305270Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_bfloat16.h' 2025-07-24T03:55:17.7309800Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_double.h' 2025-07-24T03:55:17.7315330Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_complex_float.h' 2025-07-24T03:55:17.7317530Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_convert.h' 2025-07-24T03:55:17.7320100Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_double.h' 2025-07-24T03:55:17.7325040Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float.h' 2025-07-24T03:55:17.7328880Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_float8.h' 2025-07-24T03:55:17.7336110Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_int.h' 2025-07-24T03:55:17.7338830Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_mask.h' 2025-07-24T03:55:17.7345970Z adding 'torch/include/ATen/cpu/vec/vec512/vec512_qint.h' 2025-07-24T03:55:17.7347540Z adding 'torch/include/ATen/cuda/ATenCUDAGeneral.h' 2025-07-24T03:55:17.7348490Z adding 'torch/include/ATen/cuda/ApplyGridUtils.cuh' 2025-07-24T03:55:17.7349630Z adding 'torch/include/ATen/cuda/AsmUtils.cuh' 2025-07-24T03:55:17.7353500Z adding 'torch/include/ATen/cuda/Atomic.cuh' 2025-07-24T03:55:17.7357770Z adding 'torch/include/ATen/cuda/CUDAApplyUtils.cuh' 2025-07-24T03:55:17.7360280Z adding 'torch/include/ATen/cuda/CUDABlas.h' 2025-07-24T03:55:17.7360900Z adding 'torch/include/ATen/cuda/CUDAContext.h' 2025-07-24T03:55:17.7362320Z adding 'torch/include/ATen/cuda/CUDAContextLight.h' 2025-07-24T03:55:17.7363380Z adding 'torch/include/ATen/cuda/CUDADataType.h' 2025-07-24T03:55:17.7364260Z adding 'torch/include/ATen/cuda/CUDADevice.h' 2025-07-24T03:55:17.7366750Z adding 'torch/include/ATen/cuda/CUDAEvent.h' 2025-07-24T03:55:17.7368870Z adding 'torch/include/ATen/cuda/CUDAGeneratorImpl.h' 2025-07-24T03:55:17.7369890Z adding 'torch/include/ATen/cuda/CUDAGraph.h' 2025-07-24T03:55:17.7370980Z adding 'torch/include/ATen/cuda/CUDAGraphsUtils.cuh' 2025-07-24T03:55:17.7372000Z adding 'torch/include/ATen/cuda/CUDASparse.h' 2025-07-24T03:55:17.7374290Z adding 'torch/include/ATen/cuda/CUDASparseBlas.h' 2025-07-24T03:55:17.7375850Z adding 'torch/include/ATen/cuda/CUDASparseDescriptors.h' 2025-07-24T03:55:17.7376710Z adding 'torch/include/ATen/cuda/CUDATensorMethods.cuh' 2025-07-24T03:55:17.7377490Z adding 'torch/include/ATen/cuda/CUDAUtils.h' 2025-07-24T03:55:17.7378730Z adding 'torch/include/ATen/cuda/CachingHostAllocator.h' 2025-07-24T03:55:17.7379860Z adding 'torch/include/ATen/cuda/DeviceUtils.cuh' 2025-07-24T03:55:17.7380750Z adding 'torch/include/ATen/cuda/EmptyTensor.h' 2025-07-24T03:55:17.7383120Z adding 'torch/include/ATen/cuda/Exceptions.h' 2025-07-24T03:55:17.7384230Z adding 'torch/include/ATen/cuda/NumericLimits.cuh' 2025-07-24T03:55:17.7385070Z adding 'torch/include/ATen/cuda/PeerToPeerAccess.h' 2025-07-24T03:55:17.7385820Z adding 'torch/include/ATen/cuda/PhiloxCudaState.h' 2025-07-24T03:55:17.7386620Z adding 'torch/include/ATen/cuda/PhiloxUtils.cuh' 2025-07-24T03:55:17.7387520Z adding 'torch/include/ATen/cuda/PinnedMemoryAllocator.h' 2025-07-24T03:55:17.7388610Z adding 'torch/include/ATen/cuda/ScanUtils.cuh' 2025-07-24T03:55:17.7389450Z adding 'torch/include/ATen/cuda/Sleep.h' 2025-07-24T03:55:17.7390300Z adding 'torch/include/ATen/cuda/ThrustAllocator.h' 2025-07-24T03:55:17.7391520Z adding 'torch/include/ATen/cuda/cub-RadixSortPairs.cuh' 2025-07-24T03:55:17.7395820Z adding 'torch/include/ATen/cuda/cub.cuh' 2025-07-24T03:55:17.7396900Z adding 'torch/include/ATen/cuda/cub.h' 2025-07-24T03:55:17.7397910Z adding 'torch/include/ATen/cuda/cub_definitions.cuh' 2025-07-24T03:55:17.7398930Z adding 'torch/include/ATen/cuda/jiterator.h' 2025-07-24T03:55:17.7400930Z adding 'torch/include/ATen/cuda/jiterator_impl.h' 2025-07-24T03:55:17.7401360Z adding 'torch/include/ATen/cuda/llvm_jit_strings.h' 2025-07-24T03:55:17.7402950Z adding 'torch/include/ATen/cuda/detail/CUDAHooks.h' 2025-07-24T03:55:17.7405500Z adding 'torch/include/ATen/cuda/detail/DeviceThreadHandles.h' 2025-07-24T03:55:17.7406220Z adding 'torch/include/ATen/cuda/detail/IndexUtils.cuh' 2025-07-24T03:55:17.7407770Z adding 'torch/include/ATen/cuda/detail/IntegerDivider.cuh' 2025-07-24T03:55:17.7408770Z adding 'torch/include/ATen/cuda/detail/KernelUtils.h' 2025-07-24T03:55:17.7409680Z adding 'torch/include/ATen/cuda/detail/LazyNVRTC.h' 2025-07-24T03:55:17.7411110Z adding 'torch/include/ATen/cuda/detail/OffsetCalculator.cuh' 2025-07-24T03:55:17.7412160Z adding 'torch/include/ATen/cuda/detail/PhiloxCudaStateRaw.cuh' 2025-07-24T03:55:17.7413380Z adding 'torch/include/ATen/cuda/detail/TensorInfo.cuh' 2025-07-24T03:55:17.7414540Z adding 'torch/include/ATen/cuda/detail/UnpackRaw.cuh' 2025-07-24T03:55:17.7418330Z adding 'torch/include/ATen/cuda/tunable/GemmCommon.h' 2025-07-24T03:55:17.7421660Z adding 'torch/include/ATen/cuda/tunable/GemmHipblaslt.h' 2025-07-24T03:55:17.7423360Z adding 'torch/include/ATen/cuda/tunable/GemmRocblas.h' 2025-07-24T03:55:17.7424590Z adding 'torch/include/ATen/cuda/tunable/StreamTimer.h' 2025-07-24T03:55:17.7426750Z adding 'torch/include/ATen/cuda/tunable/Tunable.h' 2025-07-24T03:55:17.7428150Z adding 'torch/include/ATen/cuda/tunable/TunableGemm.h' 2025-07-24T03:55:17.7431580Z adding 'torch/include/ATen/cuda/tunable/TunableOp.h' 2025-07-24T03:55:17.7435260Z adding 'torch/include/ATen/cudnn/Descriptors.h' 2025-07-24T03:55:17.7435950Z adding 'torch/include/ATen/cudnn/Handle.h' 2025-07-24T03:55:17.7436820Z adding 'torch/include/ATen/cudnn/Handles.h' 2025-07-24T03:55:17.7437670Z adding 'torch/include/ATen/cudnn/Types.h' 2025-07-24T03:55:17.7438660Z adding 'torch/include/ATen/cudnn/Utils.h' 2025-07-24T03:55:17.7439560Z adding 'torch/include/ATen/cudnn/cudnn-wrapper.h' 2025-07-24T03:55:17.7441140Z adding 'torch/include/ATen/detail/AcceleratorHooksInterface.h' 2025-07-24T03:55:17.7443300Z adding 'torch/include/ATen/detail/CUDAHooksInterface.h' 2025-07-24T03:55:17.7444260Z adding 'torch/include/ATen/detail/FunctionTraits.h' 2025-07-24T03:55:17.7445380Z adding 'torch/include/ATen/detail/HIPHooksInterface.h' 2025-07-24T03:55:17.7446330Z adding 'torch/include/ATen/detail/HPUHooksInterface.h' 2025-07-24T03:55:17.7447260Z adding 'torch/include/ATen/detail/IPUHooksInterface.h' 2025-07-24T03:55:17.7448350Z adding 'torch/include/ATen/detail/MAIAHooksInterface.h' 2025-07-24T03:55:17.7449660Z adding 'torch/include/ATen/detail/MPSHooksInterface.h' 2025-07-24T03:55:17.7450920Z adding 'torch/include/ATen/detail/MTIAHooksInterface.h' 2025-07-24T03:55:17.7452050Z adding 'torch/include/ATen/detail/PrivateUse1HooksInterface.h' 2025-07-24T03:55:17.7453220Z adding 'torch/include/ATen/detail/XPUHooksInterface.h' 2025-07-24T03:55:17.7454680Z adding 'torch/include/ATen/functorch/ADInterpreters.h' 2025-07-24T03:55:17.7458240Z adding 'torch/include/ATen/functorch/BatchRulesHelper.h' 2025-07-24T03:55:17.7459270Z adding 'torch/include/ATen/functorch/BatchedFallback.h' 2025-07-24T03:55:17.7461590Z adding 'torch/include/ATen/functorch/BatchedTensorImpl.h' 2025-07-24T03:55:17.7462700Z adding 'torch/include/ATen/functorch/BatchingMetaprogramming.h' 2025-07-24T03:55:17.7464580Z adding 'torch/include/ATen/functorch/DynamicLayer.h' 2025-07-24T03:55:17.7465310Z adding 'torch/include/ATen/functorch/FunctionalizeInterpreter.h' 2025-07-24T03:55:17.7468580Z adding 'torch/include/ATen/functorch/Interpreter.h' 2025-07-24T03:55:17.7471040Z adding 'torch/include/ATen/functorch/LegacyVmapTransforms.h' 2025-07-24T03:55:17.7471480Z adding 'torch/include/ATen/functorch/Macros.h' 2025-07-24T03:55:17.7472780Z adding 'torch/include/ATen/functorch/PlumbingHelper.h' 2025-07-24T03:55:17.7474800Z adding 'torch/include/ATen/functorch/TensorWrapper.h' 2025-07-24T03:55:17.7475400Z adding 'torch/include/ATen/functorch/VmapInterpreter.h' 2025-07-24T03:55:17.7476960Z adding 'torch/include/ATen/hip/impl/HIPAllocatorMasqueradingAsCUDA.h' 2025-07-24T03:55:17.7477890Z adding 'torch/include/ATen/hip/impl/HIPCachingAllocatorMasqueradingAsCUDA.h' 2025-07-24T03:55:17.7481290Z adding 'torch/include/ATen/hip/impl/HIPGuardImplMasqueradingAsCUDA.h' 2025-07-24T03:55:17.7482520Z adding 'torch/include/ATen/hip/impl/HIPStreamMasqueradingAsCUDA.h' 2025-07-24T03:55:17.7483570Z adding 'torch/include/ATen/metal/Context.h' 2025-07-24T03:55:17.7485840Z adding 'torch/include/ATen/miopen/Descriptors.h' 2025-07-24T03:55:17.7486740Z adding 'torch/include/ATen/miopen/Exceptions.h' 2025-07-24T03:55:17.7487530Z adding 'torch/include/ATen/miopen/Handle.h' 2025-07-24T03:55:17.7488340Z adding 'torch/include/ATen/miopen/Types.h' 2025-07-24T03:55:17.7489170Z adding 'torch/include/ATen/miopen/Utils.h' 2025-07-24T03:55:17.7490160Z adding 'torch/include/ATen/miopen/miopen-wrapper.h' 2025-07-24T03:55:17.7491390Z adding 'torch/include/ATen/mps/EmptyTensor.h' 2025-07-24T03:55:17.7492950Z adding 'torch/include/ATen/mps/IndexKernels.h' 2025-07-24T03:55:17.7497860Z adding 'torch/include/ATen/mps/MPSAllocator.h' 2025-07-24T03:55:17.7498950Z adding 'torch/include/ATen/mps/MPSAllocatorInterface.h' 2025-07-24T03:55:17.7500040Z adding 'torch/include/ATen/mps/MPSDevice.h' 2025-07-24T03:55:17.7501520Z adding 'torch/include/ATen/mps/MPSEvent.h' 2025-07-24T03:55:17.7502510Z adding 'torch/include/ATen/mps/MPSGeneratorImpl.h' 2025-07-24T03:55:17.7504630Z adding 'torch/include/ATen/mps/MPSGuardImpl.h' 2025-07-24T03:55:17.7505280Z adding 'torch/include/ATen/mps/MPSHooks.h' 2025-07-24T03:55:17.7509430Z adding 'torch/include/ATen/mps/MPSProfiler.h' 2025-07-24T03:55:17.7510650Z adding 'torch/include/ATen/mps/MPSStream.h' 2025-07-24T03:55:17.7513270Z adding 'torch/include/ATen/native/Activation.h' 2025-07-24T03:55:17.7514070Z adding 'torch/include/ATen/native/AdaptivePooling.h' 2025-07-24T03:55:17.7514940Z adding 'torch/include/ATen/native/AmpKernels.h' 2025-07-24T03:55:17.7517100Z adding 'torch/include/ATen/native/BatchLinearAlgebra.h' 2025-07-24T03:55:17.7518270Z adding 'torch/include/ATen/native/BinaryOps.h' 2025-07-24T03:55:17.7520640Z adding 'torch/include/ATen/native/BucketizationUtils.h' 2025-07-24T03:55:17.7522010Z adding 'torch/include/ATen/native/CPUBlas.h' 2025-07-24T03:55:17.7523160Z adding 'torch/include/ATen/native/CPUFallback.h' 2025-07-24T03:55:17.7524140Z adding 'torch/include/ATen/native/CanUse32BitIndexMath.h' 2025-07-24T03:55:17.7525520Z adding 'torch/include/ATen/native/ComplexHelper.h' 2025-07-24T03:55:17.7526450Z adding 'torch/include/ATen/native/CompositeRandomAccessor.h' 2025-07-24T03:55:17.7528370Z adding 'torch/include/ATen/native/CompositeRandomAccessorCommon.h' 2025-07-24T03:55:17.7531850Z adding 'torch/include/ATen/native/ConvUtils.h' 2025-07-24T03:55:17.7532480Z adding 'torch/include/ATen/native/ConvolutionMM3d.h' 2025-07-24T03:55:17.7533300Z adding 'torch/include/ATen/native/Copy.h' 2025-07-24T03:55:17.7534130Z adding 'torch/include/ATen/native/Cross.h' 2025-07-24T03:55:17.7536270Z adding 'torch/include/ATen/native/DilatedConvolutionUtils.h' 2025-07-24T03:55:17.7539060Z adding 'torch/include/ATen/native/DispatchStub.h' 2025-07-24T03:55:17.7539710Z adding 'torch/include/ATen/native/Distance.h' 2025-07-24T03:55:17.7548440Z adding 'torch/include/ATen/native/DistributionTemplates.h' 2025-07-24T03:55:17.7548810Z adding 'torch/include/ATen/native/Distributions.h' 2025-07-24T03:55:17.7549460Z adding 'torch/include/ATen/native/EmbeddingBag.h' 2025-07-24T03:55:17.7550270Z adding 'torch/include/ATen/native/Fill.h' 2025-07-24T03:55:17.7553810Z adding 'torch/include/ATen/native/ForeachUtils.h' 2025-07-24T03:55:17.7554900Z adding 'torch/include/ATen/native/FractionalMaxPooling.h' 2025-07-24T03:55:17.7555790Z adding 'torch/include/ATen/native/FunctionOfAMatrixUtils.h' 2025-07-24T03:55:17.7556570Z adding 'torch/include/ATen/native/FusedAdagrad.h' 2025-07-24T03:55:17.7557440Z adding 'torch/include/ATen/native/FusedAdam.h' 2025-07-24T03:55:17.7558400Z adding 'torch/include/ATen/native/FusedSGD.h' 2025-07-24T03:55:17.7559260Z adding 'torch/include/ATen/native/Gelu.h' 2025-07-24T03:55:17.7561670Z adding 'torch/include/ATen/native/GridSampler.h' 2025-07-24T03:55:17.7562710Z adding 'torch/include/ATen/native/GridSamplerUtils.h' 2025-07-24T03:55:17.7563720Z adding 'torch/include/ATen/native/Histogram.h' 2025-07-24T03:55:17.7564670Z adding 'torch/include/ATen/native/IndexKernel.h' 2025-07-24T03:55:17.7566680Z adding 'torch/include/ATen/native/IndexingUtils.h' 2025-07-24T03:55:17.7567460Z adding 'torch/include/ATen/native/Lerp.h' 2025-07-24T03:55:17.7568390Z adding 'torch/include/ATen/native/LinearAlgebra.h' 2025-07-24T03:55:17.7574710Z adding 'torch/include/ATen/native/LinearAlgebraUtils.h' 2025-07-24T03:55:17.7575570Z adding 'torch/include/ATen/native/LossMulti.h' 2025-07-24T03:55:17.7604810Z adding 'torch/include/ATen/native/Math.h' 2025-07-24T03:55:17.7606940Z adding 'torch/include/ATen/native/MathBitFallThroughLists.h' 2025-07-24T03:55:17.7609040Z adding 'torch/include/ATen/native/MathBitsFallback.h' 2025-07-24T03:55:17.7610050Z adding 'torch/include/ATen/native/MaxPooling.h' 2025-07-24T03:55:17.7611130Z adding 'torch/include/ATen/native/NonEmptyUtils.h' 2025-07-24T03:55:17.7612270Z adding 'torch/include/ATen/native/NonSymbolicBC.h' 2025-07-24T03:55:17.7613180Z adding 'torch/include/ATen/native/Normalization.h' 2025-07-24T03:55:17.7614240Z adding 'torch/include/ATen/native/Padding.h' 2025-07-24T03:55:17.7615370Z adding 'torch/include/ATen/native/PixelShuffle.h' 2025-07-24T03:55:17.7616250Z adding 'torch/include/ATen/native/PointwiseOps.h' 2025-07-24T03:55:17.7619130Z adding 'torch/include/ATen/native/Pool.h' 2025-07-24T03:55:17.7619880Z adding 'torch/include/ATen/native/Pow.h' 2025-07-24T03:55:17.7621080Z adding 'torch/include/ATen/native/RNN.h' 2025-07-24T03:55:17.7621930Z adding 'torch/include/ATen/native/RangeFactories.h' 2025-07-24T03:55:17.7623000Z adding 'torch/include/ATen/native/RangeUtils.h' 2025-07-24T03:55:17.7623840Z adding 'torch/include/ATen/native/ReduceAllOps.h' 2025-07-24T03:55:17.7624930Z adding 'torch/include/ATen/native/ReduceOps.h' 2025-07-24T03:55:17.7628330Z adding 'torch/include/ATen/native/ReduceOpsUtils.h' 2025-07-24T03:55:17.7629050Z adding 'torch/include/ATen/native/ReductionType.h' 2025-07-24T03:55:17.7630070Z adding 'torch/include/ATen/native/Repeat.h' 2025-07-24T03:55:17.7632620Z adding 'torch/include/ATen/native/Resize.h' 2025-07-24T03:55:17.7633560Z adding 'torch/include/ATen/native/ResizeCommon.h' 2025-07-24T03:55:17.7634820Z adding 'torch/include/ATen/native/ScatterGatherChecks.h' 2025-07-24T03:55:17.7635720Z adding 'torch/include/ATen/native/SegmentReduce.h' 2025-07-24T03:55:17.7638650Z adding 'torch/include/ATen/native/SharedReduceOps.h' 2025-07-24T03:55:17.7639520Z adding 'torch/include/ATen/native/SobolEngineOpsUtils.h' 2025-07-24T03:55:17.7640320Z adding 'torch/include/ATen/native/Sorting.h' 2025-07-24T03:55:17.7641390Z adding 'torch/include/ATen/native/SortingUtils.h' 2025-07-24T03:55:17.7643630Z adding 'torch/include/ATen/native/SparseTensorUtils.h' 2025-07-24T03:55:17.7644640Z adding 'torch/include/ATen/native/SpectralOpsUtils.h' 2025-07-24T03:55:17.7646240Z adding 'torch/include/ATen/native/StridedRandomAccessor.h' 2025-07-24T03:55:17.7647340Z adding 'torch/include/ATen/native/TensorAdvancedIndexing.h' 2025-07-24T03:55:17.7648870Z adding 'torch/include/ATen/native/TensorAdvancedIndexingUtils.h' 2025-07-24T03:55:17.7649760Z adding 'torch/include/ATen/native/TensorCompare.h' 2025-07-24T03:55:17.7650650Z adding 'torch/include/ATen/native/TensorConversions.h' 2025-07-24T03:55:17.7651670Z adding 'torch/include/ATen/native/TensorDimApply.h' 2025-07-24T03:55:17.7653750Z adding 'torch/include/ATen/native/TensorFactories.h' 2025-07-24T03:55:17.7654210Z adding 'torch/include/ATen/native/TensorIterator.h' 2025-07-24T03:55:17.7655320Z adding 'torch/include/ATen/native/TensorIteratorDynamicCasting.h' 2025-07-24T03:55:17.7656040Z adding 'torch/include/ATen/native/TensorProperties.h' 2025-07-24T03:55:17.7658050Z adding 'torch/include/ATen/native/TensorShape.h' 2025-07-24T03:55:17.7658780Z adding 'torch/include/ATen/native/TensorTransformations.h' 2025-07-24T03:55:17.7659900Z adding 'torch/include/ATen/native/TopKImpl.h' 2025-07-24T03:55:17.7660790Z adding 'torch/include/ATen/native/TransposeType.h' 2025-07-24T03:55:17.7662050Z adding 'torch/include/ATen/native/TriangularOpsUtils.h' 2025-07-24T03:55:17.7662880Z adding 'torch/include/ATen/native/TypeProperties.h' 2025-07-24T03:55:17.7664110Z adding 'torch/include/ATen/native/UnaryOps.h' 2025-07-24T03:55:17.7665050Z adding 'torch/include/ATen/native/Unfold2d.h' 2025-07-24T03:55:17.7666030Z adding 'torch/include/ATen/native/Unfold3d.h' 2025-07-24T03:55:17.7667310Z adding 'torch/include/ATen/native/UnfoldBackward.h' 2025-07-24T03:55:17.7671260Z adding 'torch/include/ATen/native/UpSample.h' 2025-07-24T03:55:17.7672050Z adding 'torch/include/ATen/native/batch_norm.h' 2025-07-24T03:55:17.7673110Z adding 'torch/include/ATen/native/group_norm.h' 2025-07-24T03:55:17.7674490Z adding 'torch/include/ATen/native/im2col.h' 2025-07-24T03:55:17.7676380Z adding 'torch/include/ATen/native/im2col_shape_check.h' 2025-07-24T03:55:17.7677460Z adding 'torch/include/ATen/native/layer_norm.h' 2025-07-24T03:55:17.7678390Z adding 'torch/include/ATen/native/verbose_wrapper.h' 2025-07-24T03:55:17.7679550Z adding 'torch/include/ATen/native/vol2col.h' 2025-07-24T03:55:17.7682250Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/fbgemm_utils.h' 2025-07-24T03:55:17.7683110Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/packed_params.h' 2025-07-24T03:55:17.7684500Z adding 'torch/include/ATen/native/ao_sparse/quantized/cpu/qnnpack_utils.h' 2025-07-24T03:55:17.7685860Z adding 'torch/include/ATen/native/cpu/AtomicAddFloat.h' 2025-07-24T03:55:17.7686740Z adding 'torch/include/ATen/native/cpu/CatKernel.h' 2025-07-24T03:55:17.7687590Z adding 'torch/include/ATen/native/cpu/ChannelShuffleKernel.h' 2025-07-24T03:55:17.7688510Z adding 'torch/include/ATen/native/cpu/CopyKernel.h' 2025-07-24T03:55:17.7689390Z adding 'torch/include/ATen/native/cpu/DepthwiseConvKernel.h' 2025-07-24T03:55:17.7692330Z adding 'torch/include/ATen/native/cpu/DistributionTemplates.h' 2025-07-24T03:55:17.7693280Z adding 'torch/include/ATen/native/cpu/Elu.h' 2025-07-24T03:55:17.7694510Z adding 'torch/include/ATen/native/cpu/Gelu.h' 2025-07-24T03:55:17.7695450Z adding 'torch/include/ATen/native/cpu/GridSamplerKernel.h' 2025-07-24T03:55:17.7696720Z adding 'torch/include/ATen/native/cpu/IndexKernelUtils.h' 2025-07-24T03:55:17.7697630Z adding 'torch/include/ATen/native/cpu/Intrinsics.h' 2025-07-24T03:55:17.7698790Z adding 'torch/include/ATen/native/cpu/IsContiguous.h' 2025-07-24T03:55:17.7699960Z adding 'torch/include/ATen/native/cpu/LogAddExp.h' 2025-07-24T03:55:17.7702780Z adding 'torch/include/ATen/native/cpu/LogSoftmaxKernelImpl.h' 2025-07-24T03:55:17.7705620Z adding 'torch/include/ATen/native/cpu/Loops.h' 2025-07-24T03:55:17.7706450Z adding 'torch/include/ATen/native/cpu/MaxUnpoolKernel.h' 2025-07-24T03:55:17.7707250Z adding 'torch/include/ATen/native/cpu/PixelShuffleKernel.h' 2025-07-24T03:55:17.7710290Z adding 'torch/include/ATen/native/cpu/Reduce.h' 2025-07-24T03:55:17.7712070Z adding 'torch/include/ATen/native/cpu/ReduceUtils.h' 2025-07-24T03:55:17.7713110Z adding 'torch/include/ATen/native/cpu/ReducedPrecisionFloatGemvFastPathKernel.h' 2025-07-24T03:55:17.7713850Z adding 'torch/include/ATen/native/cpu/SampledAddmmKernel.h' 2025-07-24T03:55:17.7715890Z adding 'torch/include/ATen/native/cpu/SerialStackImpl.h' 2025-07-24T03:55:17.7716370Z adding 'torch/include/ATen/native/cpu/SoftmaxKernel.h' 2025-07-24T03:55:17.7717440Z adding 'torch/include/ATen/native/cpu/SpmmReduceKernel.h' 2025-07-24T03:55:17.7718260Z adding 'torch/include/ATen/native/cpu/StackKernel.h' 2025-07-24T03:55:17.7727770Z adding 'torch/include/ATen/native/cpu/UpSampleKernelAVXAntialias.h' 2025-07-24T03:55:17.7728530Z adding 'torch/include/ATen/native/cpu/WeightNormKernel.h' 2025-07-24T03:55:17.7732000Z adding 'torch/include/ATen/native/cpu/avx_mathfun.h' 2025-07-24T03:55:17.7732860Z adding 'torch/include/ATen/native/cpu/int_mm_kernel.h' 2025-07-24T03:55:17.7733820Z adding 'torch/include/ATen/native/cpu/mixed_data_type.h' 2025-07-24T03:55:17.7735880Z adding 'torch/include/ATen/native/cpu/moments_utils.h' 2025-07-24T03:55:17.7737660Z adding 'torch/include/ATen/native/cpu/utils.h' 2025-07-24T03:55:17.7739110Z adding 'torch/include/ATen/native/cpu/zmath.h' 2025-07-24T03:55:17.7741130Z adding 'torch/include/ATen/native/cuda/Activation.h' 2025-07-24T03:55:17.7741810Z adding 'torch/include/ATen/native/cuda/BinaryInternal.h' 2025-07-24T03:55:17.7744710Z adding 'torch/include/ATen/native/cuda/CUDAJitLoops.cuh' 2025-07-24T03:55:17.7750520Z adding 'torch/include/ATen/native/cuda/CUDALoops.cuh' 2025-07-24T03:55:17.7751570Z adding 'torch/include/ATen/native/cuda/CompositeRandomAccessor.h' 2025-07-24T03:55:17.7752340Z adding 'torch/include/ATen/native/cuda/Copy.h' 2025-07-24T03:55:17.7756920Z adding 'torch/include/ATen/native/cuda/CuFFTPlanCache.h' 2025-07-24T03:55:17.7757780Z adding 'torch/include/ATen/native/cuda/CuFFTUtils.h' 2025-07-24T03:55:17.7758630Z adding 'torch/include/ATen/native/cuda/DeviceSqrt.cuh' 2025-07-24T03:55:17.7763570Z adding 'torch/include/ATen/native/cuda/DistributionTemplates.h' 2025-07-24T03:55:17.7764350Z adding 'torch/include/ATen/native/cuda/Distributions.h' 2025-07-24T03:55:17.7765290Z adding 'torch/include/ATen/native/cuda/EmbeddingBackwardKernel.cuh' 2025-07-24T03:55:17.7768040Z adding 'torch/include/ATen/native/cuda/ForeachFunctors.cuh' 2025-07-24T03:55:17.7768710Z adding 'torch/include/ATen/native/cuda/ForeachMinMaxFunctors.cuh' 2025-07-24T03:55:17.7771160Z adding 'torch/include/ATen/native/cuda/GridSampler.cuh' 2025-07-24T03:55:17.7771760Z adding 'torch/include/ATen/native/cuda/GridSampler.h' 2025-07-24T03:55:17.7772560Z adding 'torch/include/ATen/native/cuda/GroupMM.h' 2025-07-24T03:55:17.7774570Z adding 'torch/include/ATen/native/cuda/GroupMMCommon.cuh' 2025-07-24T03:55:17.7775170Z adding 'torch/include/ATen/native/cuda/IndexKernel.h' 2025-07-24T03:55:17.7776200Z adding 'torch/include/ATen/native/cuda/IndexKernelUtils.h' 2025-07-24T03:55:17.7778360Z adding 'torch/include/ATen/native/cuda/JitLoops.cuh' 2025-07-24T03:55:17.7780880Z adding 'torch/include/ATen/native/cuda/KernelUtils.cuh' 2025-07-24T03:55:17.7781540Z adding 'torch/include/ATen/native/cuda/LaunchUtils.h' 2025-07-24T03:55:17.7784110Z adding 'torch/include/ATen/native/cuda/Loops.cuh' 2025-07-24T03:55:17.7805870Z adding 'torch/include/ATen/native/cuda/Math.cuh' 2025-07-24T03:55:17.7810800Z adding 'torch/include/ATen/native/cuda/MemoryAccess.cuh' 2025-07-24T03:55:17.7811810Z adding 'torch/include/ATen/native/cuda/MiscUtils.h' 2025-07-24T03:55:17.7814640Z adding 'torch/include/ATen/native/cuda/MultiTensorApply.cuh' 2025-07-24T03:55:17.7825510Z adding 'torch/include/ATen/native/cuda/Normalization.cuh' 2025-07-24T03:55:17.7828900Z adding 'torch/include/ATen/native/cuda/PersistentSoftmax.cuh' 2025-07-24T03:55:17.7829960Z adding 'torch/include/ATen/native/cuda/Pow.cuh' 2025-07-24T03:55:17.7831200Z adding 'torch/include/ATen/native/cuda/Randperm.cuh' 2025-07-24T03:55:17.7841450Z adding 'torch/include/ATen/native/cuda/Reduce.cuh' 2025-07-24T03:55:17.7842260Z adding 'torch/include/ATen/native/cuda/ReduceOps.h' 2025-07-24T03:55:17.7843360Z adding 'torch/include/ATen/native/cuda/Resize.h' 2025-07-24T03:55:17.7844440Z adding 'torch/include/ATen/native/cuda/RowwiseScaledMM.h' 2025-07-24T03:55:17.7845300Z adding 'torch/include/ATen/native/cuda/ScaledGroupMM.h' 2025-07-24T03:55:17.7846130Z adding 'torch/include/ATen/native/cuda/ScanKernels.h' 2025-07-24T03:55:17.7850200Z adding 'torch/include/ATen/native/cuda/ScanUtils.cuh' 2025-07-24T03:55:17.7850790Z adding 'torch/include/ATen/native/cuda/Sort.h' 2025-07-24T03:55:17.7851650Z adding 'torch/include/ATen/native/cuda/SortStable.h' 2025-07-24T03:55:17.7854420Z adding 'torch/include/ATen/native/cuda/SortUtils.cuh' 2025-07-24T03:55:17.7854980Z adding 'torch/include/ATen/native/cuda/Sorting.h' 2025-07-24T03:55:17.7856990Z adding 'torch/include/ATen/native/cuda/SortingCommon.cuh' 2025-07-24T03:55:17.7860260Z adding 'torch/include/ATen/native/cuda/SortingRadixSelect.cuh' 2025-07-24T03:55:17.7864420Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.cuh' 2025-07-24T03:55:17.7864980Z adding 'torch/include/ATen/native/cuda/TensorModeKernel.h' 2025-07-24T03:55:17.7867060Z adding 'torch/include/ATen/native/cuda/TensorTopK.h' 2025-07-24T03:55:17.7867680Z adding 'torch/include/ATen/native/cuda/UniqueCub.cuh' 2025-07-24T03:55:17.7870570Z adding 'torch/include/ATen/native/cuda/UpSample.cuh' 2025-07-24T03:55:17.7871500Z adding 'torch/include/ATen/native/cuda/block_reduce.cuh' 2025-07-24T03:55:17.7872660Z adding 'torch/include/ATen/native/cuda/cutlass_common.cuh' 2025-07-24T03:55:17.7873600Z adding 'torch/include/ATen/native/cuda/fused_adam_amsgrad_impl.cuh' 2025-07-24T03:55:17.7874450Z adding 'torch/include/ATen/native/cuda/fused_adam_impl.cuh' 2025-07-24T03:55:17.7876620Z adding 'torch/include/ATen/native/cuda/fused_adam_utils.cuh' 2025-07-24T03:55:17.7877480Z adding 'torch/include/ATen/native/cuda/fused_adamw_amsgrad_impl.cuh' 2025-07-24T03:55:17.7878360Z adding 'torch/include/ATen/native/cuda/fused_adamw_impl.cuh' 2025-07-24T03:55:17.7880660Z adding 'torch/include/ATen/native/cuda/im2col.cuh' 2025-07-24T03:55:17.7882250Z adding 'torch/include/ATen/native/cuda/jit_utils.h' 2025-07-24T03:55:17.7887030Z adding 'torch/include/ATen/native/cuda/reduction_template.cuh' 2025-07-24T03:55:17.7887780Z adding 'torch/include/ATen/native/cuda/thread_constants.h' 2025-07-24T03:55:17.7890190Z adding 'torch/include/ATen/native/cuda/vol2col.cuh' 2025-07-24T03:55:17.7891190Z adding 'torch/include/ATen/native/hip/ck_bgemm.h' 2025-07-24T03:55:17.7892330Z adding 'torch/include/ATen/native/hip/ck_gemm.h' 2025-07-24T03:55:17.7895010Z adding 'torch/include/ATen/native/hip/ck_gemm_template.h' 2025-07-24T03:55:17.7895780Z adding 'torch/include/ATen/native/hip/ck_types.h' 2025-07-24T03:55:17.7897320Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_collection.h' 2025-07-24T03:55:17.7899710Z adding 'torch/include/ATen/native/hip/bgemm_kernels/bgemm_kernel_template.h' 2025-07-24T03:55:17.7900410Z adding 'torch/include/ATen/native/kleidiai/kai_kernels.h' 2025-07-24T03:55:17.7901530Z adding 'torch/include/ATen/native/kleidiai/kai_pack.h' 2025-07-24T03:55:17.7902860Z adding 'torch/include/ATen/native/kleidiai/kai_ukernel_interface.h' 2025-07-24T03:55:17.7904290Z adding 'torch/include/ATen/native/metal/MetalCommandBuffer.h' 2025-07-24T03:55:17.7905190Z adding 'torch/include/ATen/native/metal/MetalContext.h' 2025-07-24T03:55:17.7906220Z adding 'torch/include/ATen/native/metal/MetalConvParams.h' 2025-07-24T03:55:17.7907180Z adding 'torch/include/ATen/native/metal/MetalDevice.h' 2025-07-24T03:55:17.7908450Z adding 'torch/include/ATen/native/metal/MetalNeuronType.h' 2025-07-24T03:55:17.7909750Z adding 'torch/include/ATen/native/metal/MetalPrepackOpContext.h' 2025-07-24T03:55:17.7915460Z adding 'torch/include/ATen/native/metal/MetalShaders.h' 2025-07-24T03:55:17.7916430Z adding 'torch/include/ATen/native/metal/MetalTensorImpl.h' 2025-07-24T03:55:17.7917430Z adding 'torch/include/ATen/native/metal/MetalTensorImplStorage.h' 2025-07-24T03:55:17.7918760Z adding 'torch/include/ATen/native/metal/MetalTensorUtils.h' 2025-07-24T03:55:17.7919910Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNClampOp.h' 2025-07-24T03:55:17.7920850Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNConvOp.h' 2025-07-24T03:55:17.7921780Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNFullyConnectedOp.h' 2025-07-24T03:55:17.7922860Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNNeuronOp.h' 2025-07-24T03:55:17.7923730Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNOp.h' 2025-07-24T03:55:17.7925010Z adding 'torch/include/ATen/native/metal/mpscnn/MPSCNNUtils.h' 2025-07-24T03:55:17.7926530Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImage+Tensor.h' 2025-07-24T03:55:17.7927840Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageUtils.h' 2025-07-24T03:55:17.7928840Z adding 'torch/include/ATen/native/metal/mpscnn/MPSImageWrapper.h' 2025-07-24T03:55:17.7930150Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MPSCNNTests.h' 2025-07-24T03:55:17.7931010Z adding 'torch/include/ATen/native/metal/mpscnn/tests/MetalOpTestRunner.h' 2025-07-24T03:55:17.7932280Z adding 'torch/include/ATen/native/metal/ops/MetalConvolution.h' 2025-07-24T03:55:17.7933050Z adding 'torch/include/ATen/native/metal/ops/MetalCopy.h' 2025-07-24T03:55:17.7934440Z adding 'torch/include/ATen/native/mkldnn/xpu/Conv.h' 2025-07-24T03:55:17.7935470Z adding 'torch/include/ATen/native/mkldnn/xpu/FusionUtils.h' 2025-07-24T03:55:17.7939670Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Attr.h' 2025-07-24T03:55:17.7943100Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/DnnlExt.h' 2025-07-24T03:55:17.7944070Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/LRUCache.h' 2025-07-24T03:55:17.7945430Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/Utils.h' 2025-07-24T03:55:17.7947060Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNN.h' 2025-07-24T03:55:17.7948260Z adding 'torch/include/ATen/native/mkldnn/xpu/detail/oneDNNContext.h' 2025-07-24T03:55:17.7949350Z adding 'torch/include/ATen/native/mps/Copy.h' 2025-07-24T03:55:17.7950410Z adding 'torch/include/ATen/native/mps/MPSGraphSequoiaOps.h' 2025-07-24T03:55:17.7951620Z adding 'torch/include/ATen/native/mps/MPSGraphSonomaOps.h' 2025-07-24T03:55:17.7953770Z adding 'torch/include/ATen/native/mps/MPSGraphVenturaOps.h' 2025-07-24T03:55:17.7954970Z adding 'torch/include/ATen/native/mps/MetalShaderLibrary.h' 2025-07-24T03:55:17.7959860Z adding 'torch/include/ATen/native/mps/OperationUtils.h' 2025-07-24T03:55:17.7960820Z adding 'torch/include/ATen/native/mps/TensorFactory.h' 2025-07-24T03:55:17.7962070Z adding 'torch/include/ATen/native/mps/kernels/Pooling.h' 2025-07-24T03:55:17.7962910Z adding 'torch/include/ATen/native/mps/kernels/UpSample.h' 2025-07-24T03:55:17.7963980Z adding 'torch/include/ATen/native/mps/operations/BinaryKernel.h' 2025-07-24T03:55:17.7965110Z adding 'torch/include/ATen/native/mps/operations/FusedAdamAmsgradKernelImpl.h' 2025-07-24T03:55:17.7965940Z adding 'torch/include/ATen/native/mps/operations/FusedAdamKernelImpl.h' 2025-07-24T03:55:17.7966800Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWAmsgradKernelImpl.h' 2025-07-24T03:55:17.7967600Z adding 'torch/include/ATen/native/mps/operations/FusedAdamWKernelImpl.h' 2025-07-24T03:55:17.7970750Z adding 'torch/include/ATen/native/mps/operations/MultiTensorApply.h' 2025-07-24T03:55:17.7971630Z adding 'torch/include/ATen/native/mtia/EmptyTensor.h' 2025-07-24T03:55:17.7972740Z adding 'torch/include/ATen/native/nested/NestedTensorBinaryOps.h' 2025-07-24T03:55:17.7973880Z adding 'torch/include/ATen/native/nested/NestedTensorMath.h' 2025-07-24T03:55:17.7975330Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerFunctions.h' 2025-07-24T03:55:17.7976250Z adding 'torch/include/ATen/native/nested/NestedTensorTransformerUtils.h' 2025-07-24T03:55:17.7979870Z adding 'torch/include/ATen/native/nested/NestedTensorUtils.h' 2025-07-24T03:55:17.7981050Z adding 'torch/include/ATen/native/quantized/AffineQuantizer.h' 2025-07-24T03:55:17.7982260Z adding 'torch/include/ATen/native/quantized/AffineQuantizerBase.h' 2025-07-24T03:55:17.7983260Z adding 'torch/include/ATen/native/quantized/ConvUtils.h' 2025-07-24T03:55:17.7984050Z adding 'torch/include/ATen/native/quantized/Copy.h' 2025-07-24T03:55:17.7985040Z adding 'torch/include/ATen/native/quantized/FakeQuantAffine.h' 2025-07-24T03:55:17.7986060Z adding 'torch/include/ATen/native/quantized/IndexKernel.h' 2025-07-24T03:55:17.7987280Z adding 'torch/include/ATen/native/quantized/PackedParams.h' 2025-07-24T03:55:17.7988090Z adding 'torch/include/ATen/native/quantized/library.h' 2025-07-24T03:55:17.7990650Z adding 'torch/include/ATen/native/quantized/cpu/ACLUtils.h' 2025-07-24T03:55:17.7991430Z adding 'torch/include/ATen/native/quantized/cpu/BinaryOps.h' 2025-07-24T03:55:17.7992350Z adding 'torch/include/ATen/native/quantized/cpu/EmbeddingPackedParams.h' 2025-07-24T03:55:17.7995250Z adding 'torch/include/ATen/native/quantized/cpu/OnednnUtils.h' 2025-07-24T03:55:17.7998590Z adding 'torch/include/ATen/native/quantized/cpu/QnnpackUtils.h' 2025-07-24T03:55:17.8001140Z adding 'torch/include/ATen/native/quantized/cpu/QuantUtils.h' 2025-07-24T03:55:17.8002700Z adding 'torch/include/ATen/native/quantized/cpu/QuantizedOps.h' 2025-07-24T03:55:17.8003560Z adding 'torch/include/ATen/native/quantized/cpu/RuyUtils.h' 2025-07-24T03:55:17.8006290Z adding 'torch/include/ATen/native/quantized/cpu/XnnpackUtils.h' 2025-07-24T03:55:17.8009020Z adding 'torch/include/ATen/native/quantized/cpu/conv_serialization.h' 2025-07-24T03:55:17.8011370Z adding 'torch/include/ATen/native/quantized/cpu/fbgemm_utils.h' 2025-07-24T03:55:17.8011880Z adding 'torch/include/ATen/native/quantized/cpu/init_qnnpack.h' 2025-07-24T03:55:17.8012890Z adding 'torch/include/ATen/native/quantized/cpu/qconv.h' 2025-07-24T03:55:17.8013990Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag.h' 2025-07-24T03:55:17.8014890Z adding 'torch/include/ATen/native/quantized/cpu/qembeddingbag_prepack.h' 2025-07-24T03:55:17.8015860Z adding 'torch/include/ATen/native/quantized/cpu/qlinear.h' 2025-07-24T03:55:17.8018460Z adding 'torch/include/ATen/native/quantized/cudnn/utils.h' 2025-07-24T03:55:17.8019770Z adding 'torch/include/ATen/native/transformers/attention.h' 2025-07-24T03:55:17.8021090Z adding 'torch/include/ATen/native/transformers/sdp_utils.h' 2025-07-24T03:55:17.8024640Z adding 'torch/include/ATen/native/transformers/sdp_utils_cpp.h' 2025-07-24T03:55:17.8025600Z adding 'torch/include/ATen/native/transformers/cuda/sdp_utils.h' 2025-07-24T03:55:17.8027720Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/flash_api.h' 2025-07-24T03:55:17.8028620Z adding 'torch/include/ATen/native/transformers/cuda/flash_attn/static_switch.h' 2025-07-24T03:55:17.8031160Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/debug_utils.h' 2025-07-24T03:55:17.8032820Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm_kernel_utils.h' 2025-07-24T03:55:17.8051050Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_backward.h' 2025-07-24T03:55:17.8062630Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernel_forward.h' 2025-07-24T03:55:17.8063600Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/pytorch_utils.h' 2025-07-24T03:55:17.8068380Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_pipelined.h' 2025-07-24T03:55:17.8070200Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_rescale_output.h' 2025-07-24T03:55:17.8071960Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/epilogue/epilogue_thread_apply_logsumexp.h' 2025-07-24T03:55:17.8073340Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma.h' 2025-07-24T03:55:17.8075610Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_base.h' 2025-07-24T03:55:17.8080370Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_multistage.h' 2025-07-24T03:55:17.8083480Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/custom_mma_pipelined.h' 2025-07-24T03:55:17.8084750Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/find_default_mma.h' 2025-07-24T03:55:17.8087550Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_accum_lambda_iterator.h' 2025-07-24T03:55:17.8099520Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/gemm/mma_from_smem.h' 2025-07-24T03:55:17.8101850Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/default_warp_iterator_from_smem.h' 2025-07-24T03:55:17.8105810Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/epilogue_predicated_tile_iterator.h' 2025-07-24T03:55:17.8106650Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/make_residual_last.h' 2025-07-24T03:55:17.8113360Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_access_iterator_residual_last.h' 2025-07-24T03:55:17.8118980Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/predicated_tile_iterator_residual_last.h' 2025-07-24T03:55:17.8120230Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/transpose_warp_iterator.h' 2025-07-24T03:55:17.8122950Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/iterators/warp_iterator_from_smem.h' 2025-07-24T03:55:17.8130510Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassB.h' 2025-07-24T03:55:17.8135200Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/kernels/cutlassF.h' 2025-07-24T03:55:17.8135690Z adding 'torch/include/ATen/native/transformers/cuda/mem_eff_attention/transform/tile_smem_loader.h' 2025-07-24T03:55:17.8136610Z adding 'torch/include/ATen/native/transformers/hip/aotriton_adapter.h' 2025-07-24T03:55:17.8139690Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/flash_api.h' 2025-07-24T03:55:17.8140810Z adding 'torch/include/ATen/native/transformers/hip/flash_attn/ck/me_ck_api.h' 2025-07-24T03:55:17.8141820Z adding 'torch/include/ATen/native/utils/Factory.h' 2025-07-24T03:55:17.8142810Z adding 'torch/include/ATen/native/utils/ParamUtils.h' 2025-07-24T03:55:17.8144220Z adding 'torch/include/ATen/native/utils/ParamsHash.h' 2025-07-24T03:55:17.8200560Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d.h' 2025-07-24T03:55:17.8201360Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward.h' 2025-07-24T03:55:17.8202490Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8203590Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cpu_dispatch.h' 2025-07-24T03:55:17.8204480Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8205340Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_mps_dispatch.h' 2025-07-24T03:55:17.8206210Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_native.h' 2025-07-24T03:55:17.8207410Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_backward_ops.h' 2025-07-24T03:55:17.8208430Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8209280Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-24T03:55:17.8210120Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-24T03:55:17.8211130Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_mps_dispatch.h' 2025-07-24T03:55:17.8212020Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_native.h' 2025-07-24T03:55:17.8213010Z adding 'torch/include/ATen/ops/_adaptive_avg_pool2d_ops.h' 2025-07-24T03:55:17.8214090Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d.h' 2025-07-24T03:55:17.8215240Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward.h' 2025-07-24T03:55:17.8216230Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8217050Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-24T03:55:17.8217880Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8218930Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_native.h' 2025-07-24T03:55:17.8219920Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_backward_ops.h' 2025-07-24T03:55:17.8220880Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8221680Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-24T03:55:17.8222660Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-24T03:55:17.8223530Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_native.h' 2025-07-24T03:55:17.8224520Z adding 'torch/include/ATen/ops/_adaptive_avg_pool3d_ops.h' 2025-07-24T03:55:17.8225360Z adding 'torch/include/ATen/ops/_add_batch_dim.h' 2025-07-24T03:55:17.8226510Z adding 'torch/include/ATen/ops/_add_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8227300Z adding 'torch/include/ATen/ops/_add_batch_dim_native.h' 2025-07-24T03:55:17.8228220Z adding 'torch/include/ATen/ops/_add_batch_dim_ops.h' 2025-07-24T03:55:17.8229220Z adding 'torch/include/ATen/ops/_add_relu.h' 2025-07-24T03:55:17.8230420Z adding 'torch/include/ATen/ops/_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8231310Z adding 'torch/include/ATen/ops/_add_relu_cpu_dispatch.h' 2025-07-24T03:55:17.8232160Z adding 'torch/include/ATen/ops/_add_relu_meta_dispatch.h' 2025-07-24T03:55:17.8233020Z adding 'torch/include/ATen/ops/_add_relu_native.h' 2025-07-24T03:55:17.8234410Z adding 'torch/include/ATen/ops/_add_relu_ops.h' 2025-07-24T03:55:17.8235470Z adding 'torch/include/ATen/ops/_addmm_activation.h' 2025-07-24T03:55:17.8236500Z adding 'torch/include/ATen/ops/_addmm_activation_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.8237320Z adding 'torch/include/ATen/ops/_addmm_activation_cpu_dispatch.h' 2025-07-24T03:55:17.8238350Z adding 'torch/include/ATen/ops/_addmm_activation_cuda_dispatch.h' 2025-07-24T03:55:17.8239250Z adding 'torch/include/ATen/ops/_addmm_activation_meta.h' 2025-07-24T03:55:17.8240120Z adding 'torch/include/ATen/ops/_addmm_activation_meta_dispatch.h' 2025-07-24T03:55:17.8240960Z adding 'torch/include/ATen/ops/_addmm_activation_native.h' 2025-07-24T03:55:17.8242150Z adding 'torch/include/ATen/ops/_addmm_activation_ops.h' 2025-07-24T03:55:17.8243130Z adding 'torch/include/ATen/ops/_aminmax.h' 2025-07-24T03:55:17.8244150Z adding 'torch/include/ATen/ops/_aminmax_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8244970Z adding 'torch/include/ATen/ops/_aminmax_cpu_dispatch.h' 2025-07-24T03:55:17.8246000Z adding 'torch/include/ATen/ops/_aminmax_cuda_dispatch.h' 2025-07-24T03:55:17.8246870Z adding 'torch/include/ATen/ops/_aminmax_native.h' 2025-07-24T03:55:17.8247920Z adding 'torch/include/ATen/ops/_aminmax_ops.h' 2025-07-24T03:55:17.8249000Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale.h' 2025-07-24T03:55:17.8250210Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8251030Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cpu_dispatch.h' 2025-07-24T03:55:17.8251870Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_cuda_dispatch.h' 2025-07-24T03:55:17.8252690Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_mps_dispatch.h' 2025-07-24T03:55:17.8253750Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_native.h' 2025-07-24T03:55:17.8254820Z adding 'torch/include/ATen/ops/_amp_foreach_non_finite_check_and_unscale_ops.h' 2025-07-24T03:55:17.8255770Z adding 'torch/include/ATen/ops/_amp_update_scale.h' 2025-07-24T03:55:17.8256790Z adding 'torch/include/ATen/ops/_amp_update_scale_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8257800Z adding 'torch/include/ATen/ops/_amp_update_scale_cpu_dispatch.h' 2025-07-24T03:55:17.8258640Z adding 'torch/include/ATen/ops/_amp_update_scale_cuda_dispatch.h' 2025-07-24T03:55:17.8259510Z adding 'torch/include/ATen/ops/_amp_update_scale_meta_dispatch.h' 2025-07-24T03:55:17.8260360Z adding 'torch/include/ATen/ops/_amp_update_scale_mps_dispatch.h' 2025-07-24T03:55:17.8261440Z adding 'torch/include/ATen/ops/_amp_update_scale_native.h' 2025-07-24T03:55:17.8262590Z adding 'torch/include/ATen/ops/_amp_update_scale_ops.h' 2025-07-24T03:55:17.8263470Z adding 'torch/include/ATen/ops/_assert_async.h' 2025-07-24T03:55:17.8264390Z adding 'torch/include/ATen/ops/_assert_async_cpu_dispatch.h' 2025-07-24T03:55:17.8265410Z adding 'torch/include/ATen/ops/_assert_async_cuda_dispatch.h' 2025-07-24T03:55:17.8266270Z adding 'torch/include/ATen/ops/_assert_async_native.h' 2025-07-24T03:55:17.8267230Z adding 'torch/include/ATen/ops/_assert_async_ops.h' 2025-07-24T03:55:17.8268060Z adding 'torch/include/ATen/ops/_assert_scalar.h' 2025-07-24T03:55:17.8269210Z adding 'torch/include/ATen/ops/_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8269990Z adding 'torch/include/ATen/ops/_assert_scalar_native.h' 2025-07-24T03:55:17.8270930Z adding 'torch/include/ATen/ops/_assert_scalar_ops.h' 2025-07-24T03:55:17.8272020Z adding 'torch/include/ATen/ops/_assert_tensor_metadata.h' 2025-07-24T03:55:17.8273310Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8274170Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_meta_dispatch.h' 2025-07-24T03:55:17.8275050Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_native.h' 2025-07-24T03:55:17.8276000Z adding 'torch/include/ATen/ops/_assert_tensor_metadata_ops.h' 2025-07-24T03:55:17.8277020Z adding 'torch/include/ATen/ops/_autocast_to_full_precision.h' 2025-07-24T03:55:17.8278030Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8278810Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_native.h' 2025-07-24T03:55:17.8279760Z adding 'torch/include/ATen/ops/_autocast_to_full_precision_ops.h' 2025-07-24T03:55:17.8280780Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision.h' 2025-07-24T03:55:17.8281760Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8282530Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_native.h' 2025-07-24T03:55:17.8283450Z adding 'torch/include/ATen/ops/_autocast_to_reduced_precision_ops.h' 2025-07-24T03:55:17.8284390Z adding 'torch/include/ATen/ops/_backward.h' 2025-07-24T03:55:17.8285390Z adding 'torch/include/ATen/ops/_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8286160Z adding 'torch/include/ATen/ops/_backward_native.h' 2025-07-24T03:55:17.8287100Z adding 'torch/include/ATen/ops/_backward_ops.h' 2025-07-24T03:55:17.8288210Z adding 'torch/include/ATen/ops/_batch_norm_impl_index.h' 2025-07-24T03:55:17.8289230Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward.h' 2025-07-24T03:55:17.8290270Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8291070Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_native.h' 2025-07-24T03:55:17.8292260Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_backward_ops.h' 2025-07-24T03:55:17.8293240Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8294040Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_native.h' 2025-07-24T03:55:17.8294990Z adding 'torch/include/ATen/ops/_batch_norm_impl_index_ops.h' 2025-07-24T03:55:17.8296190Z adding 'torch/include/ATen/ops/_batch_norm_no_update.h' 2025-07-24T03:55:17.8297230Z adding 'torch/include/ATen/ops/_batch_norm_no_update_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8298040Z adding 'torch/include/ATen/ops/_batch_norm_no_update_native.h' 2025-07-24T03:55:17.8299120Z adding 'torch/include/ATen/ops/_batch_norm_no_update_ops.h' 2025-07-24T03:55:17.8300420Z adding 'torch/include/ATen/ops/_batch_norm_with_update.h' 2025-07-24T03:55:17.8301430Z adding 'torch/include/ATen/ops/_batch_norm_with_update_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8302260Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cpu_dispatch.h' 2025-07-24T03:55:17.8303140Z adding 'torch/include/ATen/ops/_batch_norm_with_update_cuda_dispatch.h' 2025-07-24T03:55:17.8304210Z adding 'torch/include/ATen/ops/_batch_norm_with_update_mps_dispatch.h' 2025-07-24T03:55:17.8305190Z adding 'torch/include/ATen/ops/_batch_norm_with_update_native.h' 2025-07-24T03:55:17.8306350Z adding 'torch/include/ATen/ops/_batch_norm_with_update_ops.h' 2025-07-24T03:55:17.8307210Z adding 'torch/include/ATen/ops/_cast_Byte.h' 2025-07-24T03:55:17.8308370Z adding 'torch/include/ATen/ops/_cast_Byte_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8309150Z adding 'torch/include/ATen/ops/_cast_Byte_native.h' 2025-07-24T03:55:17.8310040Z adding 'torch/include/ATen/ops/_cast_Byte_ops.h' 2025-07-24T03:55:17.8310870Z adding 'torch/include/ATen/ops/_cast_Char.h' 2025-07-24T03:55:17.8312000Z adding 'torch/include/ATen/ops/_cast_Char_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8312780Z adding 'torch/include/ATen/ops/_cast_Char_native.h' 2025-07-24T03:55:17.8313670Z adding 'torch/include/ATen/ops/_cast_Char_ops.h' 2025-07-24T03:55:17.8314510Z adding 'torch/include/ATen/ops/_cast_Double.h' 2025-07-24T03:55:17.8315660Z adding 'torch/include/ATen/ops/_cast_Double_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8316420Z adding 'torch/include/ATen/ops/_cast_Double_native.h' 2025-07-24T03:55:17.8317300Z adding 'torch/include/ATen/ops/_cast_Double_ops.h' 2025-07-24T03:55:17.8318140Z adding 'torch/include/ATen/ops/_cast_Float.h' 2025-07-24T03:55:17.8319300Z adding 'torch/include/ATen/ops/_cast_Float_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8320050Z adding 'torch/include/ATen/ops/_cast_Float_native.h' 2025-07-24T03:55:17.8320960Z adding 'torch/include/ATen/ops/_cast_Float_ops.h' 2025-07-24T03:55:17.8321810Z adding 'torch/include/ATen/ops/_cast_Half.h' 2025-07-24T03:55:17.8323020Z adding 'torch/include/ATen/ops/_cast_Half_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8323710Z adding 'torch/include/ATen/ops/_cast_Half_native.h' 2025-07-24T03:55:17.8324600Z adding 'torch/include/ATen/ops/_cast_Half_ops.h' 2025-07-24T03:55:17.8325440Z adding 'torch/include/ATen/ops/_cast_Int.h' 2025-07-24T03:55:17.8326570Z adding 'torch/include/ATen/ops/_cast_Int_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8345350Z adding 'torch/include/ATen/ops/_cast_Int_native.h' 2025-07-24T03:55:17.8346170Z adding 'torch/include/ATen/ops/_cast_Int_ops.h' 2025-07-24T03:55:17.8347060Z adding 'torch/include/ATen/ops/_cast_Long.h' 2025-07-24T03:55:17.8349310Z adding 'torch/include/ATen/ops/_cast_Long_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8349900Z adding 'torch/include/ATen/ops/_cast_Long_native.h' 2025-07-24T03:55:17.8350790Z adding 'torch/include/ATen/ops/_cast_Long_ops.h' 2025-07-24T03:55:17.8351630Z adding 'torch/include/ATen/ops/_cast_Short.h' 2025-07-24T03:55:17.8352810Z adding 'torch/include/ATen/ops/_cast_Short_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8353570Z adding 'torch/include/ATen/ops/_cast_Short_native.h' 2025-07-24T03:55:17.8354470Z adding 'torch/include/ATen/ops/_cast_Short_ops.h' 2025-07-24T03:55:17.8355380Z adding 'torch/include/ATen/ops/_cdist_backward.h' 2025-07-24T03:55:17.8356570Z adding 'torch/include/ATen/ops/_cdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8357410Z adding 'torch/include/ATen/ops/_cdist_backward_cpu_dispatch.h' 2025-07-24T03:55:17.8358220Z adding 'torch/include/ATen/ops/_cdist_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8359070Z adding 'torch/include/ATen/ops/_cdist_backward_native.h' 2025-07-24T03:55:17.8360240Z adding 'torch/include/ATen/ops/_cdist_backward_ops.h' 2025-07-24T03:55:17.8361160Z adding 'torch/include/ATen/ops/_cdist_forward.h' 2025-07-24T03:55:17.8362160Z adding 'torch/include/ATen/ops/_cdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8362970Z adding 'torch/include/ATen/ops/_cdist_forward_cpu_dispatch.h' 2025-07-24T03:55:17.8363990Z adding 'torch/include/ATen/ops/_cdist_forward_cuda_dispatch.h' 2025-07-24T03:55:17.8364810Z adding 'torch/include/ATen/ops/_cdist_forward_mps_dispatch.h' 2025-07-24T03:55:17.8365660Z adding 'torch/include/ATen/ops/_cdist_forward_native.h' 2025-07-24T03:55:17.8366630Z adding 'torch/include/ATen/ops/_cdist_forward_ops.h' 2025-07-24T03:55:17.8367750Z adding 'torch/include/ATen/ops/_cholesky_solve_helper.h' 2025-07-24T03:55:17.8368750Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8369560Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cpu_dispatch.h' 2025-07-24T03:55:17.8370440Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_cuda_dispatch.h' 2025-07-24T03:55:17.8371420Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_native.h' 2025-07-24T03:55:17.8372410Z adding 'torch/include/ATen/ops/_cholesky_solve_helper_ops.h' 2025-07-24T03:55:17.8373270Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor.h' 2025-07-24T03:55:17.8374290Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8375250Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_native.h' 2025-07-24T03:55:17.8376150Z adding 'torch/include/ATen/ops/_choose_qparams_per_tensor_ops.h' 2025-07-24T03:55:17.8377010Z adding 'torch/include/ATen/ops/_chunk_cat.h' 2025-07-24T03:55:17.8377980Z adding 'torch/include/ATen/ops/_chunk_cat_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8379000Z adding 'torch/include/ATen/ops/_chunk_cat_cuda_dispatch.h' 2025-07-24T03:55:17.8379860Z adding 'torch/include/ATen/ops/_chunk_cat_native.h' 2025-07-24T03:55:17.8380810Z adding 'torch/include/ATen/ops/_chunk_cat_ops.h' 2025-07-24T03:55:17.8381690Z adding 'torch/include/ATen/ops/_coalesce.h' 2025-07-24T03:55:17.8382860Z adding 'torch/include/ATen/ops/_coalesce_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8383750Z adding 'torch/include/ATen/ops/_coalesce_native.h' 2025-07-24T03:55:17.8384660Z adding 'torch/include/ATen/ops/_coalesce_ops.h' 2025-07-24T03:55:17.8385550Z adding 'torch/include/ATen/ops/_coalesced.h' 2025-07-24T03:55:17.8386710Z adding 'torch/include/ATen/ops/_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8387520Z adding 'torch/include/ATen/ops/_coalesced_meta_dispatch.h' 2025-07-24T03:55:17.8388350Z adding 'torch/include/ATen/ops/_coalesced_native.h' 2025-07-24T03:55:17.8389370Z adding 'torch/include/ATen/ops/_coalesced_ops.h' 2025-07-24T03:55:17.8390560Z adding 'torch/include/ATen/ops/_compute_linear_combination.h' 2025-07-24T03:55:17.8391490Z adding 'torch/include/ATen/ops/_compute_linear_combination_cpu_dispatch.h' 2025-07-24T03:55:17.8392320Z adding 'torch/include/ATen/ops/_compute_linear_combination_cuda_dispatch.h' 2025-07-24T03:55:17.8393150Z adding 'torch/include/ATen/ops/_compute_linear_combination_native.h' 2025-07-24T03:55:17.8394280Z adding 'torch/include/ATen/ops/_compute_linear_combination_ops.h' 2025-07-24T03:55:17.8395100Z adding 'torch/include/ATen/ops/_conj.h' 2025-07-24T03:55:17.8396040Z adding 'torch/include/ATen/ops/_conj_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8396840Z adding 'torch/include/ATen/ops/_conj_copy.h' 2025-07-24T03:55:17.8397980Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8398900Z adding 'torch/include/ATen/ops/_conj_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.8399640Z adding 'torch/include/ATen/ops/_conj_copy_native.h' 2025-07-24T03:55:17.8400680Z adding 'torch/include/ATen/ops/_conj_copy_ops.h' 2025-07-24T03:55:17.8401740Z adding 'torch/include/ATen/ops/_conj_native.h' 2025-07-24T03:55:17.8402640Z adding 'torch/include/ATen/ops/_conj_ops.h' 2025-07-24T03:55:17.8403530Z adding 'torch/include/ATen/ops/_conj_physical.h' 2025-07-24T03:55:17.8404500Z adding 'torch/include/ATen/ops/_conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8405480Z adding 'torch/include/ATen/ops/_conj_physical_native.h' 2025-07-24T03:55:17.8406390Z adding 'torch/include/ATen/ops/_conj_physical_ops.h' 2025-07-24T03:55:17.8407640Z adding 'torch/include/ATen/ops/_conv_depthwise2d.h' 2025-07-24T03:55:17.8408630Z adding 'torch/include/ATen/ops/_conv_depthwise2d_cuda_dispatch.h' 2025-07-24T03:55:17.8409730Z adding 'torch/include/ATen/ops/_conv_depthwise2d_native.h' 2025-07-24T03:55:17.8410740Z adding 'torch/include/ATen/ops/_conv_depthwise2d_ops.h' 2025-07-24T03:55:17.8411770Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr.h' 2025-07-24T03:55:17.8412840Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.8413770Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cpu_dispatch.h' 2025-07-24T03:55:17.8414670Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_cuda_dispatch.h' 2025-07-24T03:55:17.8415510Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta.h' 2025-07-24T03:55:17.8416360Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_meta_dispatch.h' 2025-07-24T03:55:17.8417400Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_native.h' 2025-07-24T03:55:17.8418390Z adding 'torch/include/ATen/ops/_convert_indices_from_coo_to_csr_ops.h' 2025-07-24T03:55:17.8419310Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo.h' 2025-07-24T03:55:17.8420370Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.8421360Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cpu_dispatch.h' 2025-07-24T03:55:17.8422260Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_cuda_dispatch.h' 2025-07-24T03:55:17.8423080Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta.h' 2025-07-24T03:55:17.8423950Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_meta_dispatch.h' 2025-07-24T03:55:17.8425030Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_native.h' 2025-07-24T03:55:17.8425990Z adding 'torch/include/ATen/ops/_convert_indices_from_csr_to_coo_ops.h' 2025-07-24T03:55:17.8426840Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack.h' 2025-07-24T03:55:17.8427750Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_cuda_dispatch.h' 2025-07-24T03:55:17.8428780Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu.h' 2025-07-24T03:55:17.8429700Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_cpu_dispatch.h' 2025-07-24T03:55:17.8430530Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_native.h' 2025-07-24T03:55:17.8431470Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_for_cpu_ops.h' 2025-07-24T03:55:17.8432490Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_mps_dispatch.h' 2025-07-24T03:55:17.8433340Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_native.h' 2025-07-24T03:55:17.8434220Z adding 'torch/include/ATen/ops/_convert_weight_to_int4pack_ops.h' 2025-07-24T03:55:17.8435830Z adding 'torch/include/ATen/ops/_convolution.h' 2025-07-24T03:55:17.8437020Z adding 'torch/include/ATen/ops/_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8437940Z adding 'torch/include/ATen/ops/_convolution_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8439000Z adding 'torch/include/ATen/ops/_convolution_double_backward.h' 2025-07-24T03:55:17.8440030Z adding 'torch/include/ATen/ops/_convolution_double_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8441020Z adding 'torch/include/ATen/ops/_convolution_double_backward_native.h' 2025-07-24T03:55:17.8442040Z adding 'torch/include/ATen/ops/_convolution_double_backward_ops.h' 2025-07-24T03:55:17.8443000Z adding 'torch/include/ATen/ops/_convolution_mode.h' 2025-07-24T03:55:17.8444000Z adding 'torch/include/ATen/ops/_convolution_mode_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8445000Z adding 'torch/include/ATen/ops/_convolution_mode_native.h' 2025-07-24T03:55:17.8445950Z adding 'torch/include/ATen/ops/_convolution_mode_ops.h' 2025-07-24T03:55:17.8446870Z adding 'torch/include/ATen/ops/_convolution_native.h' 2025-07-24T03:55:17.8447990Z adding 'torch/include/ATen/ops/_convolution_ops.h' 2025-07-24T03:55:17.8449080Z adding 'torch/include/ATen/ops/_copy_from.h' 2025-07-24T03:55:17.8450060Z adding 'torch/include/ATen/ops/_copy_from_and_resize.h' 2025-07-24T03:55:17.8451020Z adding 'torch/include/ATen/ops/_copy_from_and_resize_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8451840Z adding 'torch/include/ATen/ops/_copy_from_and_resize_mps_dispatch.h' 2025-07-24T03:55:17.8452870Z adding 'torch/include/ATen/ops/_copy_from_and_resize_native.h' 2025-07-24T03:55:17.8453790Z adding 'torch/include/ATen/ops/_copy_from_and_resize_ops.h' 2025-07-24T03:55:17.8454720Z adding 'torch/include/ATen/ops/_copy_from_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8455560Z adding 'torch/include/ATen/ops/_copy_from_mps_dispatch.h' 2025-07-24T03:55:17.8456550Z adding 'torch/include/ATen/ops/_copy_from_native.h' 2025-07-24T03:55:17.8457520Z adding 'torch/include/ATen/ops/_copy_from_ops.h' 2025-07-24T03:55:17.8458380Z adding 'torch/include/ATen/ops/_cslt_compress.h' 2025-07-24T03:55:17.8459260Z adding 'torch/include/ATen/ops/_cslt_compress_cuda_dispatch.h' 2025-07-24T03:55:17.8460270Z adding 'torch/include/ATen/ops/_cslt_compress_native.h' 2025-07-24T03:55:17.8461150Z adding 'torch/include/ATen/ops/_cslt_compress_ops.h' 2025-07-24T03:55:17.8462080Z adding 'torch/include/ATen/ops/_cslt_sparse_mm.h' 2025-07-24T03:55:17.8463010Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_cuda_dispatch.h' 2025-07-24T03:55:17.8464050Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_native.h' 2025-07-24T03:55:17.8465070Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_ops.h' 2025-07-24T03:55:17.8465990Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search.h' 2025-07-24T03:55:17.8466940Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_cuda_dispatch.h' 2025-07-24T03:55:17.8467930Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_native.h' 2025-07-24T03:55:17.8468890Z adding 'torch/include/ATen/ops/_cslt_sparse_mm_search_ops.h' 2025-07-24T03:55:17.8469910Z adding 'torch/include/ATen/ops/_ctc_loss.h' 2025-07-24T03:55:17.8470980Z adding 'torch/include/ATen/ops/_ctc_loss_backward.h' 2025-07-24T03:55:17.8472220Z adding 'torch/include/ATen/ops/_ctc_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8473080Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cpu_dispatch.h' 2025-07-24T03:55:17.8473950Z adding 'torch/include/ATen/ops/_ctc_loss_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8474850Z adding 'torch/include/ATen/ops/_ctc_loss_backward_native.h' 2025-07-24T03:55:17.8476150Z adding 'torch/include/ATen/ops/_ctc_loss_backward_ops.h' 2025-07-24T03:55:17.8477160Z adding 'torch/include/ATen/ops/_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8477990Z adding 'torch/include/ATen/ops/_ctc_loss_cpu_dispatch.h' 2025-07-24T03:55:17.8478840Z adding 'torch/include/ATen/ops/_ctc_loss_cuda_dispatch.h' 2025-07-24T03:55:17.8479890Z adding 'torch/include/ATen/ops/_ctc_loss_meta_dispatch.h' 2025-07-24T03:55:17.8480810Z adding 'torch/include/ATen/ops/_ctc_loss_native.h' 2025-07-24T03:55:17.8481940Z adding 'torch/include/ATen/ops/_ctc_loss_ops.h' 2025-07-24T03:55:17.8483090Z adding 'torch/include/ATen/ops/_cudnn_attention_forward.h' 2025-07-24T03:55:17.8484270Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_cuda_dispatch.h' 2025-07-24T03:55:17.8485160Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_native.h' 2025-07-24T03:55:17.8486240Z adding 'torch/include/ATen/ops/_cudnn_attention_forward_ops.h' 2025-07-24T03:55:17.8487220Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss.h' 2025-07-24T03:55:17.8488440Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8489290Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-24T03:55:17.8490160Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_native.h' 2025-07-24T03:55:17.8491250Z adding 'torch/include/ATen/ops/_cudnn_ctc_loss_ops.h' 2025-07-24T03:55:17.8492470Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state.h' 2025-07-24T03:55:17.8493530Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8494430Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_cuda_dispatch.h' 2025-07-24T03:55:17.8495330Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_native.h' 2025-07-24T03:55:17.8496590Z adding 'torch/include/ATen/ops/_cudnn_init_dropout_state_ops.h' 2025-07-24T03:55:17.8498570Z adding 'torch/include/ATen/ops/_cudnn_rnn.h' 2025-07-24T03:55:17.8499890Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward.h' 2025-07-24T03:55:17.8501120Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8502240Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8503270Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_native.h' 2025-07-24T03:55:17.8504570Z adding 'torch/include/ATen/ops/_cudnn_rnn_backward_ops.h' 2025-07-24T03:55:17.8505640Z adding 'torch/include/ATen/ops/_cudnn_rnn_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8506760Z adding 'torch/include/ATen/ops/_cudnn_rnn_cuda_dispatch.h' 2025-07-24T03:55:17.8507940Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight.h' 2025-07-24T03:55:17.8509020Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8509880Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_cuda_dispatch.h' 2025-07-24T03:55:17.8510910Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_native.h' 2025-07-24T03:55:17.8511980Z adding 'torch/include/ATen/ops/_cudnn_rnn_flatten_weight_ops.h' 2025-07-24T03:55:17.8512880Z adding 'torch/include/ATen/ops/_cudnn_rnn_native.h' 2025-07-24T03:55:17.8514090Z adding 'torch/include/ATen/ops/_cudnn_rnn_ops.h' 2025-07-24T03:55:17.8515130Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache.h' 2025-07-24T03:55:17.8516130Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8516880Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_native.h' 2025-07-24T03:55:17.8517820Z adding 'torch/include/ATen/ops/_cufft_clear_plan_cache_ops.h' 2025-07-24T03:55:17.8518860Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size.h' 2025-07-24T03:55:17.8519910Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8520690Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_native.h' 2025-07-24T03:55:17.8521630Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_max_size_ops.h' 2025-07-24T03:55:17.8522610Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size.h' 2025-07-24T03:55:17.8523600Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8524330Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_native.h' 2025-07-24T03:55:17.8525240Z adding 'torch/include/ATen/ops/_cufft_get_plan_cache_size_ops.h' 2025-07-24T03:55:17.8526280Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size.h' 2025-07-24T03:55:17.8527260Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8528010Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_native.h' 2025-07-24T03:55:17.8528910Z adding 'torch/include/ATen/ops/_cufft_set_plan_cache_max_size_ops.h' 2025-07-24T03:55:17.8529920Z adding 'torch/include/ATen/ops/_cummax_helper.h' 2025-07-24T03:55:17.8530830Z adding 'torch/include/ATen/ops/_cummax_helper_cpu_dispatch.h' 2025-07-24T03:55:17.8531640Z adding 'torch/include/ATen/ops/_cummax_helper_cuda_dispatch.h' 2025-07-24T03:55:17.8532460Z adding 'torch/include/ATen/ops/_cummax_helper_mps_dispatch.h' 2025-07-24T03:55:17.8533470Z adding 'torch/include/ATen/ops/_cummax_helper_native.h' 2025-07-24T03:55:17.8534400Z adding 'torch/include/ATen/ops/_cummax_helper_ops.h' 2025-07-24T03:55:17.8535240Z adding 'torch/include/ATen/ops/_cummin_helper.h' 2025-07-24T03:55:17.8536130Z adding 'torch/include/ATen/ops/_cummin_helper_cpu_dispatch.h' 2025-07-24T03:55:17.8537170Z adding 'torch/include/ATen/ops/_cummin_helper_cuda_dispatch.h' 2025-07-24T03:55:17.8537970Z adding 'torch/include/ATen/ops/_cummin_helper_mps_dispatch.h' 2025-07-24T03:55:17.8538810Z adding 'torch/include/ATen/ops/_cummin_helper_native.h' 2025-07-24T03:55:17.8539700Z adding 'torch/include/ATen/ops/_cummin_helper_ops.h' 2025-07-24T03:55:17.8540770Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap.h' 2025-07-24T03:55:17.8541720Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8542480Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_native.h' 2025-07-24T03:55:17.8543440Z adding 'torch/include/ATen/ops/_debug_has_internal_overlap_ops.h' 2025-07-24T03:55:17.8544390Z adding 'torch/include/ATen/ops/_dimI.h' 2025-07-24T03:55:17.8545230Z adding 'torch/include/ATen/ops/_dimI_native.h' 2025-07-24T03:55:17.8546110Z adding 'torch/include/ATen/ops/_dimI_ops.h' 2025-07-24T03:55:17.8546930Z adding 'torch/include/ATen/ops/_dimV.h' 2025-07-24T03:55:17.8547940Z adding 'torch/include/ATen/ops/_dimV_native.h' 2025-07-24T03:55:17.8548830Z adding 'torch/include/ATen/ops/_dimV_ops.h' 2025-07-24T03:55:17.8549680Z adding 'torch/include/ATen/ops/_dim_arange.h' 2025-07-24T03:55:17.8550610Z adding 'torch/include/ATen/ops/_dim_arange_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8551540Z adding 'torch/include/ATen/ops/_dim_arange_native.h' 2025-07-24T03:55:17.8552430Z adding 'torch/include/ATen/ops/_dim_arange_ops.h' 2025-07-24T03:55:17.8553320Z adding 'torch/include/ATen/ops/_dirichlet_grad.h' 2025-07-24T03:55:17.8554320Z adding 'torch/include/ATen/ops/_dirichlet_grad_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8555350Z adding 'torch/include/ATen/ops/_dirichlet_grad_cpu_dispatch.h' 2025-07-24T03:55:17.8556130Z adding 'torch/include/ATen/ops/_dirichlet_grad_cuda_dispatch.h' 2025-07-24T03:55:17.8556960Z adding 'torch/include/ATen/ops/_dirichlet_grad_native.h' 2025-07-24T03:55:17.8557900Z adding 'torch/include/ATen/ops/_dirichlet_grad_ops.h' 2025-07-24T03:55:17.8558960Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit.h' 2025-07-24T03:55:17.8559880Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_cpu_dispatch.h' 2025-07-24T03:55:17.8560710Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_native.h' 2025-07-24T03:55:17.8561620Z adding 'torch/include/ATen/ops/_dyn_quant_matmul_4bit_ops.h' 2025-07-24T03:55:17.8562710Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight.h' 2025-07-24T03:55:17.8563620Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_cpu_dispatch.h' 2025-07-24T03:55:17.8564450Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_native.h' 2025-07-24T03:55:17.8565400Z adding 'torch/include/ATen/ops/_dyn_quant_pack_4bit_weight_ops.h' 2025-07-24T03:55:17.8566810Z adding 'torch/include/ATen/ops/_efficient_attention_backward.h' 2025-07-24T03:55:17.8567860Z adding 'torch/include/ATen/ops/_efficient_attention_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8568730Z adding 'torch/include/ATen/ops/_efficient_attention_backward_native.h' 2025-07-24T03:55:17.8570210Z adding 'torch/include/ATen/ops/_efficient_attention_backward_ops.h' 2025-07-24T03:55:17.8571480Z adding 'torch/include/ATen/ops/_efficient_attention_forward.h' 2025-07-24T03:55:17.8572550Z adding 'torch/include/ATen/ops/_efficient_attention_forward_cuda_dispatch.h' 2025-07-24T03:55:17.8573470Z adding 'torch/include/ATen/ops/_efficient_attention_forward_native.h' 2025-07-24T03:55:17.8574450Z adding 'torch/include/ATen/ops/_efficient_attention_forward_ops.h' 2025-07-24T03:55:17.8575850Z adding 'torch/include/ATen/ops/_efficientzerotensor.h' 2025-07-24T03:55:17.8576870Z adding 'torch/include/ATen/ops/_efficientzerotensor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8577720Z adding 'torch/include/ATen/ops/_efficientzerotensor_cpu_dispatch.h' 2025-07-24T03:55:17.8578570Z adding 'torch/include/ATen/ops/_efficientzerotensor_cuda_dispatch.h' 2025-07-24T03:55:17.8579620Z adding 'torch/include/ATen/ops/_efficientzerotensor_meta_dispatch.h' 2025-07-24T03:55:17.8580490Z adding 'torch/include/ATen/ops/_efficientzerotensor_mps_dispatch.h' 2025-07-24T03:55:17.8581360Z adding 'torch/include/ATen/ops/_efficientzerotensor_native.h' 2025-07-24T03:55:17.8582340Z adding 'torch/include/ATen/ops/_efficientzerotensor_ops.h' 2025-07-24T03:55:17.8583570Z adding 'torch/include/ATen/ops/_embedding_bag.h' 2025-07-24T03:55:17.8584680Z adding 'torch/include/ATen/ops/_embedding_bag_backward.h' 2025-07-24T03:55:17.8585630Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cpu_dispatch.h' 2025-07-24T03:55:17.8586490Z adding 'torch/include/ATen/ops/_embedding_bag_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8587540Z adding 'torch/include/ATen/ops/_embedding_bag_backward_native.h' 2025-07-24T03:55:17.8588540Z adding 'torch/include/ATen/ops/_embedding_bag_backward_ops.h' 2025-07-24T03:55:17.8589540Z adding 'torch/include/ATen/ops/_embedding_bag_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8590420Z adding 'torch/include/ATen/ops/_embedding_bag_cpu_dispatch.h' 2025-07-24T03:55:17.8591450Z adding 'torch/include/ATen/ops/_embedding_bag_cuda_dispatch.h' 2025-07-24T03:55:17.8592710Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward.h' 2025-07-24T03:55:17.8593820Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8594660Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cpu_dispatch.h' 2025-07-24T03:55:17.8595710Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8596630Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_native.h' 2025-07-24T03:55:17.8597700Z adding 'torch/include/ATen/ops/_embedding_bag_dense_backward_ops.h' 2025-07-24T03:55:17.8598740Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only.h' 2025-07-24T03:55:17.8599940Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8600780Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cpu_dispatch.h' 2025-07-24T03:55:17.8601660Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_cuda_dispatch.h' 2025-07-24T03:55:17.8602540Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_native.h' 2025-07-24T03:55:17.8603830Z adding 'torch/include/ATen/ops/_embedding_bag_forward_only_ops.h' 2025-07-24T03:55:17.8604700Z adding 'torch/include/ATen/ops/_embedding_bag_native.h' 2025-07-24T03:55:17.8605770Z adding 'torch/include/ATen/ops/_embedding_bag_ops.h' 2025-07-24T03:55:17.8606830Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward.h' 2025-07-24T03:55:17.8608020Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8608830Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cpu_dispatch.h' 2025-07-24T03:55:17.8609700Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8610560Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_native.h' 2025-07-24T03:55:17.8611750Z adding 'torch/include/ATen/ops/_embedding_bag_per_sample_weights_backward_ops.h' 2025-07-24T03:55:17.8612740Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward.h' 2025-07-24T03:55:17.8613760Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8614560Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_native.h' 2025-07-24T03:55:17.8615710Z adding 'torch/include/ATen/ops/_embedding_bag_sparse_backward_ops.h' 2025-07-24T03:55:17.8617090Z adding 'torch/include/ATen/ops/_empty_affine_quantized.h' 2025-07-24T03:55:17.8618200Z adding 'torch/include/ATen/ops/_empty_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8619110Z adding 'torch/include/ATen/ops/_empty_affine_quantized_cpu_dispatch.h' 2025-07-24T03:55:17.8620150Z adding 'torch/include/ATen/ops/_empty_affine_quantized_native.h' 2025-07-24T03:55:17.8621200Z adding 'torch/include/ATen/ops/_empty_affine_quantized_ops.h' 2025-07-24T03:55:17.8622660Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized.h' 2025-07-24T03:55:17.8623710Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8624860Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_cpu_dispatch.h' 2025-07-24T03:55:17.8625700Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_native.h' 2025-07-24T03:55:17.8626750Z adding 'torch/include/ATen/ops/_empty_per_channel_affine_quantized_ops.h' 2025-07-24T03:55:17.8627580Z adding 'torch/include/ATen/ops/_euclidean_dist.h' 2025-07-24T03:55:17.8628740Z adding 'torch/include/ATen/ops/_euclidean_dist_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8629520Z adding 'torch/include/ATen/ops/_euclidean_dist_native.h' 2025-07-24T03:55:17.8630450Z adding 'torch/include/ATen/ops/_euclidean_dist_ops.h' 2025-07-24T03:55:17.8631470Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine.h' 2025-07-24T03:55:17.8632610Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward.h' 2025-07-24T03:55:17.8633580Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cpu_dispatch.h' 2025-07-24T03:55:17.8634420Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8635270Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_native.h' 2025-07-24T03:55:17.8636420Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_backward_ops.h' 2025-07-24T03:55:17.8637430Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8638220Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cpu_dispatch.h' 2025-07-24T03:55:17.8639060Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_cuda_dispatch.h' 2025-07-24T03:55:17.8640120Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_native.h' 2025-07-24T03:55:17.8641140Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_channel_affine_ops.h' 2025-07-24T03:55:17.8642090Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine.h' 2025-07-24T03:55:17.8643030Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward.h' 2025-07-24T03:55:17.8644110Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cpu_dispatch.h' 2025-07-24T03:55:17.8644980Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8645820Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_native.h' 2025-07-24T03:55:17.8646770Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_backward_ops.h' 2025-07-24T03:55:17.8647940Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8648780Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cpu_dispatch.h' 2025-07-24T03:55:17.8649610Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_cuda_dispatch.h' 2025-07-24T03:55:17.8650480Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_native.h' 2025-07-24T03:55:17.8651660Z adding 'torch/include/ATen/ops/_fake_quantize_learnable_per_tensor_affine_ops.h' 2025-07-24T03:55:17.8652690Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams.h' 2025-07-24T03:55:17.8653710Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8654530Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cpu_dispatch.h' 2025-07-24T03:55:17.8655630Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_cuda_dispatch.h' 2025-07-24T03:55:17.8656500Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_native.h' 2025-07-24T03:55:17.8657550Z adding 'torch/include/ATen/ops/_fake_quantize_per_tensor_affine_cachemask_tensor_qparams_ops.h' 2025-07-24T03:55:17.8658530Z adding 'torch/include/ATen/ops/_fft_c2c.h' 2025-07-24T03:55:17.8659620Z adding 'torch/include/ATen/ops/_fft_c2c_cpu_dispatch.h' 2025-07-24T03:55:17.8660510Z adding 'torch/include/ATen/ops/_fft_c2c_cuda_dispatch.h' 2025-07-24T03:55:17.8661380Z adding 'torch/include/ATen/ops/_fft_c2c_mps_dispatch.h' 2025-07-24T03:55:17.8662240Z adding 'torch/include/ATen/ops/_fft_c2c_native.h' 2025-07-24T03:55:17.8663410Z adding 'torch/include/ATen/ops/_fft_c2c_ops.h' 2025-07-24T03:55:17.8664460Z adding 'torch/include/ATen/ops/_fft_c2r.h' 2025-07-24T03:55:17.8665400Z adding 'torch/include/ATen/ops/_fft_c2r_cpu_dispatch.h' 2025-07-24T03:55:17.8666270Z adding 'torch/include/ATen/ops/_fft_c2r_cuda_dispatch.h' 2025-07-24T03:55:17.8667300Z adding 'torch/include/ATen/ops/_fft_c2r_mps_dispatch.h' 2025-07-24T03:55:17.8668150Z adding 'torch/include/ATen/ops/_fft_c2r_native.h' 2025-07-24T03:55:17.8669130Z adding 'torch/include/ATen/ops/_fft_c2r_ops.h' 2025-07-24T03:55:17.8670050Z adding 'torch/include/ATen/ops/_fft_r2c.h' 2025-07-24T03:55:17.8671120Z adding 'torch/include/ATen/ops/_fft_r2c_cpu_dispatch.h' 2025-07-24T03:55:17.8671980Z adding 'torch/include/ATen/ops/_fft_r2c_cuda_dispatch.h' 2025-07-24T03:55:17.8672790Z adding 'torch/include/ATen/ops/_fft_r2c_mps_dispatch.h' 2025-07-24T03:55:17.8673700Z adding 'torch/include/ATen/ops/_fft_r2c_native.h' 2025-07-24T03:55:17.8674800Z adding 'torch/include/ATen/ops/_fft_r2c_ops.h' 2025-07-24T03:55:17.8675720Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask.h' 2025-07-24T03:55:17.8676640Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_cuda_dispatch.h' 2025-07-24T03:55:17.8677470Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_meta_dispatch.h' 2025-07-24T03:55:17.8678470Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_native.h' 2025-07-24T03:55:17.8683540Z adding 'torch/include/ATen/ops/_fill_mem_eff_dropout_mask_ops.h' 2025-07-24T03:55:17.8683780Z adding 'torch/include/ATen/ops/_flash_attention_backward.h' 2025-07-24T03:55:17.8683940Z adding 'torch/include/ATen/ops/_flash_attention_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8684390Z adding 'torch/include/ATen/ops/_flash_attention_backward_native.h' 2025-07-24T03:55:17.8684510Z adding 'torch/include/ATen/ops/_flash_attention_backward_ops.h' 2025-07-24T03:55:17.8684730Z adding 'torch/include/ATen/ops/_flash_attention_forward.h' 2025-07-24T03:55:17.8685870Z adding 'torch/include/ATen/ops/_flash_attention_forward_cuda_dispatch.h' 2025-07-24T03:55:17.8686940Z adding 'torch/include/ATen/ops/_flash_attention_forward_native.h' 2025-07-24T03:55:17.8687910Z adding 'torch/include/ATen/ops/_flash_attention_forward_ops.h' 2025-07-24T03:55:17.8688790Z adding 'torch/include/ATen/ops/_foobar.h' 2025-07-24T03:55:17.8689760Z adding 'torch/include/ATen/ops/_foobar_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8690750Z adding 'torch/include/ATen/ops/_foobar_cpu_dispatch.h' 2025-07-24T03:55:17.8691590Z adding 'torch/include/ATen/ops/_foobar_native.h' 2025-07-24T03:55:17.8692520Z adding 'torch/include/ATen/ops/_foobar_ops.h' 2025-07-24T03:55:17.8693420Z adding 'torch/include/ATen/ops/_foreach_abs.h' 2025-07-24T03:55:17.8694590Z adding 'torch/include/ATen/ops/_foreach_abs_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8695380Z adding 'torch/include/ATen/ops/_foreach_abs_cuda_dispatch.h' 2025-07-24T03:55:17.8696230Z adding 'torch/include/ATen/ops/_foreach_abs_native.h' 2025-07-24T03:55:17.8697190Z adding 'torch/include/ATen/ops/_foreach_abs_ops.h' 2025-07-24T03:55:17.8698270Z adding 'torch/include/ATen/ops/_foreach_acos.h' 2025-07-24T03:55:17.8699270Z adding 'torch/include/ATen/ops/_foreach_acos_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8700040Z adding 'torch/include/ATen/ops/_foreach_acos_cuda_dispatch.h' 2025-07-24T03:55:17.8700860Z adding 'torch/include/ATen/ops/_foreach_acos_native.h' 2025-07-24T03:55:17.8702040Z adding 'torch/include/ATen/ops/_foreach_acos_ops.h' 2025-07-24T03:55:17.8703180Z adding 'torch/include/ATen/ops/_foreach_add.h' 2025-07-24T03:55:17.8704310Z adding 'torch/include/ATen/ops/_foreach_add_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8705140Z adding 'torch/include/ATen/ops/_foreach_add_cuda_dispatch.h' 2025-07-24T03:55:17.8706310Z adding 'torch/include/ATen/ops/_foreach_add_native.h' 2025-07-24T03:55:17.8707940Z adding 'torch/include/ATen/ops/_foreach_add_ops.h' 2025-07-24T03:55:17.8708870Z adding 'torch/include/ATen/ops/_foreach_addcdiv.h' 2025-07-24T03:55:17.8709980Z adding 'torch/include/ATen/ops/_foreach_addcdiv_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8711010Z adding 'torch/include/ATen/ops/_foreach_addcdiv_cuda_dispatch.h' 2025-07-24T03:55:17.8712000Z adding 'torch/include/ATen/ops/_foreach_addcdiv_native.h' 2025-07-24T03:55:17.8713370Z adding 'torch/include/ATen/ops/_foreach_addcdiv_ops.h' 2025-07-24T03:55:17.8714500Z adding 'torch/include/ATen/ops/_foreach_addcmul.h' 2025-07-24T03:55:17.8715780Z adding 'torch/include/ATen/ops/_foreach_addcmul_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8716620Z adding 'torch/include/ATen/ops/_foreach_addcmul_cuda_dispatch.h' 2025-07-24T03:55:17.8717610Z adding 'torch/include/ATen/ops/_foreach_addcmul_native.h' 2025-07-24T03:55:17.8718960Z adding 'torch/include/ATen/ops/_foreach_addcmul_ops.h' 2025-07-24T03:55:17.8720130Z adding 'torch/include/ATen/ops/_foreach_asin.h' 2025-07-24T03:55:17.8721120Z adding 'torch/include/ATen/ops/_foreach_asin_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8721910Z adding 'torch/include/ATen/ops/_foreach_asin_cuda_dispatch.h' 2025-07-24T03:55:17.8722730Z adding 'torch/include/ATen/ops/_foreach_asin_native.h' 2025-07-24T03:55:17.8723860Z adding 'torch/include/ATen/ops/_foreach_asin_ops.h' 2025-07-24T03:55:17.8724790Z adding 'torch/include/ATen/ops/_foreach_atan.h' 2025-07-24T03:55:17.8725710Z adding 'torch/include/ATen/ops/_foreach_atan_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8726510Z adding 'torch/include/ATen/ops/_foreach_atan_cuda_dispatch.h' 2025-07-24T03:55:17.8727520Z adding 'torch/include/ATen/ops/_foreach_atan_native.h' 2025-07-24T03:55:17.8728480Z adding 'torch/include/ATen/ops/_foreach_atan_ops.h' 2025-07-24T03:55:17.8729380Z adding 'torch/include/ATen/ops/_foreach_ceil.h' 2025-07-24T03:55:17.8730310Z adding 'torch/include/ATen/ops/_foreach_ceil_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8731280Z adding 'torch/include/ATen/ops/_foreach_ceil_cuda_dispatch.h' 2025-07-24T03:55:17.8732110Z adding 'torch/include/ATen/ops/_foreach_ceil_native.h' 2025-07-24T03:55:17.8733030Z adding 'torch/include/ATen/ops/_foreach_ceil_ops.h' 2025-07-24T03:55:17.8734160Z adding 'torch/include/ATen/ops/_foreach_clamp_max.h' 2025-07-24T03:55:17.8735370Z adding 'torch/include/ATen/ops/_foreach_clamp_max_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8736230Z adding 'torch/include/ATen/ops/_foreach_clamp_max_cuda_dispatch.h' 2025-07-24T03:55:17.8737130Z adding 'torch/include/ATen/ops/_foreach_clamp_max_native.h' 2025-07-24T03:55:17.8738350Z adding 'torch/include/ATen/ops/_foreach_clamp_max_ops.h' 2025-07-24T03:55:17.8739610Z adding 'torch/include/ATen/ops/_foreach_clamp_min.h' 2025-07-24T03:55:17.8740660Z adding 'torch/include/ATen/ops/_foreach_clamp_min_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8741490Z adding 'torch/include/ATen/ops/_foreach_clamp_min_cuda_dispatch.h' 2025-07-24T03:55:17.8742410Z adding 'torch/include/ATen/ops/_foreach_clamp_min_native.h' 2025-07-24T03:55:17.8744070Z adding 'torch/include/ATen/ops/_foreach_clamp_min_ops.h' 2025-07-24T03:55:17.8744750Z adding 'torch/include/ATen/ops/_foreach_copy.h' 2025-07-24T03:55:17.8745740Z adding 'torch/include/ATen/ops/_foreach_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8746530Z adding 'torch/include/ATen/ops/_foreach_copy_cuda_dispatch.h' 2025-07-24T03:55:17.8747560Z adding 'torch/include/ATen/ops/_foreach_copy_native.h' 2025-07-24T03:55:17.8748540Z adding 'torch/include/ATen/ops/_foreach_copy_ops.h' 2025-07-24T03:55:17.8749430Z adding 'torch/include/ATen/ops/_foreach_cos.h' 2025-07-24T03:55:17.8750450Z adding 'torch/include/ATen/ops/_foreach_cos_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8751350Z adding 'torch/include/ATen/ops/_foreach_cos_cuda_dispatch.h' 2025-07-24T03:55:17.8752190Z adding 'torch/include/ATen/ops/_foreach_cos_native.h' 2025-07-24T03:55:17.8753120Z adding 'torch/include/ATen/ops/_foreach_cos_ops.h' 2025-07-24T03:55:17.8754010Z adding 'torch/include/ATen/ops/_foreach_cosh.h' 2025-07-24T03:55:17.8755120Z adding 'torch/include/ATen/ops/_foreach_cosh_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8755930Z adding 'torch/include/ATen/ops/_foreach_cosh_cuda_dispatch.h' 2025-07-24T03:55:17.8756740Z adding 'torch/include/ATen/ops/_foreach_cosh_native.h' 2025-07-24T03:55:17.8757660Z adding 'torch/include/ATen/ops/_foreach_cosh_ops.h' 2025-07-24T03:55:17.8758970Z adding 'torch/include/ATen/ops/_foreach_div.h' 2025-07-24T03:55:17.8760020Z adding 'torch/include/ATen/ops/_foreach_div_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8760840Z adding 'torch/include/ATen/ops/_foreach_div_cuda_dispatch.h' 2025-07-24T03:55:17.8761820Z adding 'torch/include/ATen/ops/_foreach_div_native.h' 2025-07-24T03:55:17.8763760Z adding 'torch/include/ATen/ops/_foreach_div_ops.h' 2025-07-24T03:55:17.8764290Z adding 'torch/include/ATen/ops/_foreach_erf.h' 2025-07-24T03:55:17.8765250Z adding 'torch/include/ATen/ops/_foreach_erf_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8765990Z adding 'torch/include/ATen/ops/_foreach_erf_cuda_dispatch.h' 2025-07-24T03:55:17.8767000Z adding 'torch/include/ATen/ops/_foreach_erf_native.h' 2025-07-24T03:55:17.8767960Z adding 'torch/include/ATen/ops/_foreach_erf_ops.h' 2025-07-24T03:55:17.8768810Z adding 'torch/include/ATen/ops/_foreach_erfc.h' 2025-07-24T03:55:17.8769760Z adding 'torch/include/ATen/ops/_foreach_erfc_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8770710Z adding 'torch/include/ATen/ops/_foreach_erfc_cuda_dispatch.h' 2025-07-24T03:55:17.8771550Z adding 'torch/include/ATen/ops/_foreach_erfc_native.h' 2025-07-24T03:55:17.8772460Z adding 'torch/include/ATen/ops/_foreach_erfc_ops.h' 2025-07-24T03:55:17.8773330Z adding 'torch/include/ATen/ops/_foreach_exp.h' 2025-07-24T03:55:17.8774440Z adding 'torch/include/ATen/ops/_foreach_exp_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8775240Z adding 'torch/include/ATen/ops/_foreach_exp_cuda_dispatch.h' 2025-07-24T03:55:17.8776050Z adding 'torch/include/ATen/ops/_foreach_exp_native.h' 2025-07-24T03:55:17.8776980Z adding 'torch/include/ATen/ops/_foreach_exp_ops.h' 2025-07-24T03:55:17.8778040Z adding 'torch/include/ATen/ops/_foreach_expm1.h' 2025-07-24T03:55:17.8779000Z adding 'torch/include/ATen/ops/_foreach_expm1_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8779790Z adding 'torch/include/ATen/ops/_foreach_expm1_cuda_dispatch.h' 2025-07-24T03:55:17.8780630Z adding 'torch/include/ATen/ops/_foreach_expm1_native.h' 2025-07-24T03:55:17.8781750Z adding 'torch/include/ATen/ops/_foreach_expm1_ops.h' 2025-07-24T03:55:17.8782630Z adding 'torch/include/ATen/ops/_foreach_floor.h' 2025-07-24T03:55:17.8783590Z adding 'torch/include/ATen/ops/_foreach_floor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8784360Z adding 'torch/include/ATen/ops/_foreach_floor_cuda_dispatch.h' 2025-07-24T03:55:17.8785380Z adding 'torch/include/ATen/ops/_foreach_floor_native.h' 2025-07-24T03:55:17.8786330Z adding 'torch/include/ATen/ops/_foreach_floor_ops.h' 2025-07-24T03:55:17.8787190Z adding 'torch/include/ATen/ops/_foreach_frac.h' 2025-07-24T03:55:17.8788130Z adding 'torch/include/ATen/ops/_foreach_frac_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8789090Z adding 'torch/include/ATen/ops/_foreach_frac_cuda_dispatch.h' 2025-07-24T03:55:17.8789930Z adding 'torch/include/ATen/ops/_foreach_frac_native.h' 2025-07-24T03:55:17.8790830Z adding 'torch/include/ATen/ops/_foreach_frac_ops.h' 2025-07-24T03:55:17.8791900Z adding 'torch/include/ATen/ops/_foreach_lerp.h' 2025-07-24T03:55:17.8793150Z adding 'torch/include/ATen/ops/_foreach_lerp_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8794030Z adding 'torch/include/ATen/ops/_foreach_lerp_cuda_dispatch.h' 2025-07-24T03:55:17.8794940Z adding 'torch/include/ATen/ops/_foreach_lerp_native.h' 2025-07-24T03:55:17.8796180Z adding 'torch/include/ATen/ops/_foreach_lerp_ops.h' 2025-07-24T03:55:17.8797290Z adding 'torch/include/ATen/ops/_foreach_lgamma.h' 2025-07-24T03:55:17.8798600Z adding 'torch/include/ATen/ops/_foreach_lgamma_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8799400Z adding 'torch/include/ATen/ops/_foreach_lgamma_cuda_dispatch.h' 2025-07-24T03:55:17.8800250Z adding 'torch/include/ATen/ops/_foreach_lgamma_native.h' 2025-07-24T03:55:17.8801380Z adding 'torch/include/ATen/ops/_foreach_lgamma_ops.h' 2025-07-24T03:55:17.8802280Z adding 'torch/include/ATen/ops/_foreach_log.h' 2025-07-24T03:55:17.8803170Z adding 'torch/include/ATen/ops/_foreach_log10.h' 2025-07-24T03:55:17.8804130Z adding 'torch/include/ATen/ops/_foreach_log10_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8805320Z adding 'torch/include/ATen/ops/_foreach_log10_cuda_dispatch.h' 2025-07-24T03:55:17.8806420Z adding 'torch/include/ATen/ops/_foreach_log10_native.h' 2025-07-24T03:55:17.8807580Z adding 'torch/include/ATen/ops/_foreach_log10_ops.h' 2025-07-24T03:55:17.8808470Z adding 'torch/include/ATen/ops/_foreach_log1p.h' 2025-07-24T03:55:17.8809480Z adding 'torch/include/ATen/ops/_foreach_log1p_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8810230Z adding 'torch/include/ATen/ops/_foreach_log1p_cuda_dispatch.h' 2025-07-24T03:55:17.8811230Z adding 'torch/include/ATen/ops/_foreach_log1p_native.h' 2025-07-24T03:55:17.8812200Z adding 'torch/include/ATen/ops/_foreach_log1p_ops.h' 2025-07-24T03:55:17.8813060Z adding 'torch/include/ATen/ops/_foreach_log2.h' 2025-07-24T03:55:17.8814030Z adding 'torch/include/ATen/ops/_foreach_log2_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8815010Z adding 'torch/include/ATen/ops/_foreach_log2_cuda_dispatch.h' 2025-07-24T03:55:17.8815860Z adding 'torch/include/ATen/ops/_foreach_log2_native.h' 2025-07-24T03:55:17.8816800Z adding 'torch/include/ATen/ops/_foreach_log2_ops.h' 2025-07-24T03:55:17.8817760Z adding 'torch/include/ATen/ops/_foreach_log_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8818750Z adding 'torch/include/ATen/ops/_foreach_log_cuda_dispatch.h' 2025-07-24T03:55:17.8819600Z adding 'torch/include/ATen/ops/_foreach_log_native.h' 2025-07-24T03:55:17.8820530Z adding 'torch/include/ATen/ops/_foreach_log_ops.h' 2025-07-24T03:55:17.8821400Z adding 'torch/include/ATen/ops/_foreach_max.h' 2025-07-24T03:55:17.8822560Z adding 'torch/include/ATen/ops/_foreach_max_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8823430Z adding 'torch/include/ATen/ops/_foreach_max_cuda_dispatch.h' 2025-07-24T03:55:17.8824230Z adding 'torch/include/ATen/ops/_foreach_max_native.h' 2025-07-24T03:55:17.8825200Z adding 'torch/include/ATen/ops/_foreach_max_ops.h' 2025-07-24T03:55:17.8826420Z adding 'torch/include/ATen/ops/_foreach_maximum.h' 2025-07-24T03:55:17.8827490Z adding 'torch/include/ATen/ops/_foreach_maximum_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8828350Z adding 'torch/include/ATen/ops/_foreach_maximum_cuda_dispatch.h' 2025-07-24T03:55:17.8829270Z adding 'torch/include/ATen/ops/_foreach_maximum_native.h' 2025-07-24T03:55:17.8830930Z adding 'torch/include/ATen/ops/_foreach_maximum_ops.h' 2025-07-24T03:55:17.8831820Z adding 'torch/include/ATen/ops/_foreach_minimum.h' 2025-07-24T03:55:17.8832890Z adding 'torch/include/ATen/ops/_foreach_minimum_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8833780Z adding 'torch/include/ATen/ops/_foreach_minimum_cuda_dispatch.h' 2025-07-24T03:55:17.8834900Z adding 'torch/include/ATen/ops/_foreach_minimum_native.h' 2025-07-24T03:55:17.8836210Z adding 'torch/include/ATen/ops/_foreach_minimum_ops.h' 2025-07-24T03:55:17.8837350Z adding 'torch/include/ATen/ops/_foreach_mul.h' 2025-07-24T03:55:17.8838400Z adding 'torch/include/ATen/ops/_foreach_mul_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8839450Z adding 'torch/include/ATen/ops/_foreach_mul_cuda_dispatch.h' 2025-07-24T03:55:17.8840490Z adding 'torch/include/ATen/ops/_foreach_mul_native.h' 2025-07-24T03:55:17.8841800Z adding 'torch/include/ATen/ops/_foreach_mul_ops.h' 2025-07-24T03:55:17.8842820Z adding 'torch/include/ATen/ops/_foreach_neg.h' 2025-07-24T03:55:17.8843940Z adding 'torch/include/ATen/ops/_foreach_neg_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8844750Z adding 'torch/include/ATen/ops/_foreach_neg_cuda_dispatch.h' 2025-07-24T03:55:17.8845580Z adding 'torch/include/ATen/ops/_foreach_neg_native.h' 2025-07-24T03:55:17.8846520Z adding 'torch/include/ATen/ops/_foreach_neg_ops.h' 2025-07-24T03:55:17.8847630Z adding 'torch/include/ATen/ops/_foreach_norm.h' 2025-07-24T03:55:17.8848640Z adding 'torch/include/ATen/ops/_foreach_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8849490Z adding 'torch/include/ATen/ops/_foreach_norm_cuda_dispatch.h' 2025-07-24T03:55:17.8850340Z adding 'torch/include/ATen/ops/_foreach_norm_native.h' 2025-07-24T03:55:17.8851490Z adding 'torch/include/ATen/ops/_foreach_norm_ops.h' 2025-07-24T03:55:17.8852540Z adding 'torch/include/ATen/ops/_foreach_pow.h' 2025-07-24T03:55:17.8853590Z adding 'torch/include/ATen/ops/_foreach_pow_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8854420Z adding 'torch/include/ATen/ops/_foreach_pow_cuda_dispatch.h' 2025-07-24T03:55:17.8855570Z adding 'torch/include/ATen/ops/_foreach_pow_native.h' 2025-07-24T03:55:17.8856840Z adding 'torch/include/ATen/ops/_foreach_pow_ops.h' 2025-07-24T03:55:17.8857770Z adding 'torch/include/ATen/ops/_foreach_reciprocal.h' 2025-07-24T03:55:17.8858770Z adding 'torch/include/ATen/ops/_foreach_reciprocal_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8859710Z adding 'torch/include/ATen/ops/_foreach_reciprocal_cuda_dispatch.h' 2025-07-24T03:55:17.8860580Z adding 'torch/include/ATen/ops/_foreach_reciprocal_native.h' 2025-07-24T03:55:17.8861540Z adding 'torch/include/ATen/ops/_foreach_reciprocal_ops.h' 2025-07-24T03:55:17.8862390Z adding 'torch/include/ATen/ops/_foreach_round.h' 2025-07-24T03:55:17.8863520Z adding 'torch/include/ATen/ops/_foreach_round_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8864340Z adding 'torch/include/ATen/ops/_foreach_round_cuda_dispatch.h' 2025-07-24T03:55:17.8865160Z adding 'torch/include/ATen/ops/_foreach_round_native.h' 2025-07-24T03:55:17.8866110Z adding 'torch/include/ATen/ops/_foreach_round_ops.h' 2025-07-24T03:55:17.8867140Z adding 'torch/include/ATen/ops/_foreach_rsqrt.h' 2025-07-24T03:55:17.8868130Z adding 'torch/include/ATen/ops/_foreach_rsqrt_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8868920Z adding 'torch/include/ATen/ops/_foreach_rsqrt_cuda_dispatch.h' 2025-07-24T03:55:17.8869770Z adding 'torch/include/ATen/ops/_foreach_rsqrt_native.h' 2025-07-24T03:55:17.8870860Z adding 'torch/include/ATen/ops/_foreach_rsqrt_ops.h' 2025-07-24T03:55:17.8871750Z adding 'torch/include/ATen/ops/_foreach_sigmoid.h' 2025-07-24T03:55:17.8872710Z adding 'torch/include/ATen/ops/_foreach_sigmoid_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8873510Z adding 'torch/include/ATen/ops/_foreach_sigmoid_cuda_dispatch.h' 2025-07-24T03:55:17.8874530Z adding 'torch/include/ATen/ops/_foreach_sigmoid_native.h' 2025-07-24T03:55:17.8875480Z adding 'torch/include/ATen/ops/_foreach_sigmoid_ops.h' 2025-07-24T03:55:17.8876330Z adding 'torch/include/ATen/ops/_foreach_sign.h' 2025-07-24T03:55:17.8877280Z adding 'torch/include/ATen/ops/_foreach_sign_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8878240Z adding 'torch/include/ATen/ops/_foreach_sign_cuda_dispatch.h' 2025-07-24T03:55:17.8879100Z adding 'torch/include/ATen/ops/_foreach_sign_native.h' 2025-07-24T03:55:17.8880100Z adding 'torch/include/ATen/ops/_foreach_sign_ops.h' 2025-07-24T03:55:17.8880940Z adding 'torch/include/ATen/ops/_foreach_sin.h' 2025-07-24T03:55:17.8882090Z adding 'torch/include/ATen/ops/_foreach_sin_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8882900Z adding 'torch/include/ATen/ops/_foreach_sin_cuda_dispatch.h' 2025-07-24T03:55:17.8883740Z adding 'torch/include/ATen/ops/_foreach_sin_native.h' 2025-07-24T03:55:17.8884680Z adding 'torch/include/ATen/ops/_foreach_sin_ops.h' 2025-07-24T03:55:17.8885710Z adding 'torch/include/ATen/ops/_foreach_sinh.h' 2025-07-24T03:55:17.8886660Z adding 'torch/include/ATen/ops/_foreach_sinh_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8887450Z adding 'torch/include/ATen/ops/_foreach_sinh_cuda_dispatch.h' 2025-07-24T03:55:17.8888260Z adding 'torch/include/ATen/ops/_foreach_sinh_native.h' 2025-07-24T03:55:17.8889360Z adding 'torch/include/ATen/ops/_foreach_sinh_ops.h' 2025-07-24T03:55:17.8890240Z adding 'torch/include/ATen/ops/_foreach_sqrt.h' 2025-07-24T03:55:17.8891190Z adding 'torch/include/ATen/ops/_foreach_sqrt_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8891970Z adding 'torch/include/ATen/ops/_foreach_sqrt_cuda_dispatch.h' 2025-07-24T03:55:17.8892990Z adding 'torch/include/ATen/ops/_foreach_sqrt_native.h' 2025-07-24T03:55:17.8893950Z adding 'torch/include/ATen/ops/_foreach_sqrt_ops.h' 2025-07-24T03:55:17.8895000Z adding 'torch/include/ATen/ops/_foreach_sub.h' 2025-07-24T03:55:17.8896020Z adding 'torch/include/ATen/ops/_foreach_sub_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8897040Z adding 'torch/include/ATen/ops/_foreach_sub_cuda_dispatch.h' 2025-07-24T03:55:17.8897990Z adding 'torch/include/ATen/ops/_foreach_sub_native.h' 2025-07-24T03:55:17.8899240Z adding 'torch/include/ATen/ops/_foreach_sub_ops.h' 2025-07-24T03:55:17.8900110Z adding 'torch/include/ATen/ops/_foreach_tan.h' 2025-07-24T03:55:17.8901230Z adding 'torch/include/ATen/ops/_foreach_tan_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8902030Z adding 'torch/include/ATen/ops/_foreach_tan_cuda_dispatch.h' 2025-07-24T03:55:17.8902840Z adding 'torch/include/ATen/ops/_foreach_tan_native.h' 2025-07-24T03:55:17.8903780Z adding 'torch/include/ATen/ops/_foreach_tan_ops.h' 2025-07-24T03:55:17.8904800Z adding 'torch/include/ATen/ops/_foreach_tanh.h' 2025-07-24T03:55:17.8905770Z adding 'torch/include/ATen/ops/_foreach_tanh_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8906600Z adding 'torch/include/ATen/ops/_foreach_tanh_cuda_dispatch.h' 2025-07-24T03:55:17.8907390Z adding 'torch/include/ATen/ops/_foreach_tanh_native.h' 2025-07-24T03:55:17.8908540Z adding 'torch/include/ATen/ops/_foreach_tanh_ops.h' 2025-07-24T03:55:17.8909410Z adding 'torch/include/ATen/ops/_foreach_trunc.h' 2025-07-24T03:55:17.8910370Z adding 'torch/include/ATen/ops/_foreach_trunc_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8911150Z adding 'torch/include/ATen/ops/_foreach_trunc_cuda_dispatch.h' 2025-07-24T03:55:17.8912140Z adding 'torch/include/ATen/ops/_foreach_trunc_native.h' 2025-07-24T03:55:17.8913090Z adding 'torch/include/ATen/ops/_foreach_trunc_ops.h' 2025-07-24T03:55:17.8914020Z adding 'torch/include/ATen/ops/_foreach_zero.h' 2025-07-24T03:55:17.8914950Z adding 'torch/include/ATen/ops/_foreach_zero_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8915920Z adding 'torch/include/ATen/ops/_foreach_zero_cuda_dispatch.h' 2025-07-24T03:55:17.8916770Z adding 'torch/include/ATen/ops/_foreach_zero_native.h' 2025-07-24T03:55:17.8917720Z adding 'torch/include/ATen/ops/_foreach_zero_ops.h' 2025-07-24T03:55:17.8918600Z adding 'torch/include/ATen/ops/_functional_assert_async.h' 2025-07-24T03:55:17.8919700Z adding 'torch/include/ATen/ops/_functional_assert_async_cpu_dispatch.h' 2025-07-24T03:55:17.8920570Z adding 'torch/include/ATen/ops/_functional_assert_async_native.h' 2025-07-24T03:55:17.8921480Z adding 'torch/include/ATen/ops/_functional_assert_async_ops.h' 2025-07-24T03:55:17.8922330Z adding 'torch/include/ATen/ops/_functional_assert_scalar.h' 2025-07-24T03:55:17.8923490Z adding 'torch/include/ATen/ops/_functional_assert_scalar_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8924280Z adding 'torch/include/ATen/ops/_functional_assert_scalar_native.h' 2025-07-24T03:55:17.8925200Z adding 'torch/include/ATen/ops/_functional_assert_scalar_ops.h' 2025-07-24T03:55:17.8926070Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range.h' 2025-07-24T03:55:17.8927300Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8928070Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size.h' 2025-07-24T03:55:17.8929070Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8929820Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_native.h' 2025-07-24T03:55:17.8930950Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_for_size_ops.h' 2025-07-24T03:55:17.8931770Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_native.h' 2025-07-24T03:55:17.8932700Z adding 'torch/include/ATen/ops/_functional_sym_constrain_range_ops.h' 2025-07-24T03:55:17.8933860Z adding 'torch/include/ATen/ops/_fused_adagrad.h' 2025-07-24T03:55:17.8935140Z adding 'torch/include/ATen/ops/_fused_adagrad_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8936010Z adding 'torch/include/ATen/ops/_fused_adagrad_cpu_dispatch.h' 2025-07-24T03:55:17.8936950Z adding 'torch/include/ATen/ops/_fused_adagrad_native.h' 2025-07-24T03:55:17.8938550Z adding 'torch/include/ATen/ops/_fused_adagrad_ops.h' 2025-07-24T03:55:17.8939840Z adding 'torch/include/ATen/ops/_fused_adam.h' 2025-07-24T03:55:17.8941030Z adding 'torch/include/ATen/ops/_fused_adam_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8941900Z adding 'torch/include/ATen/ops/_fused_adam_cpu_dispatch.h' 2025-07-24T03:55:17.8942760Z adding 'torch/include/ATen/ops/_fused_adam_cuda_dispatch.h' 2025-07-24T03:55:17.8943790Z adding 'torch/include/ATen/ops/_fused_adam_mps_dispatch.h' 2025-07-24T03:55:17.8944840Z adding 'torch/include/ATen/ops/_fused_adam_native.h' 2025-07-24T03:55:17.8946450Z adding 'torch/include/ATen/ops/_fused_adam_ops.h' 2025-07-24T03:55:17.8947730Z adding 'torch/include/ATen/ops/_fused_adamw.h' 2025-07-24T03:55:17.8949040Z adding 'torch/include/ATen/ops/_fused_adamw_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8949900Z adding 'torch/include/ATen/ops/_fused_adamw_cpu_dispatch.h' 2025-07-24T03:55:17.8950760Z adding 'torch/include/ATen/ops/_fused_adamw_cuda_dispatch.h' 2025-07-24T03:55:17.8951600Z adding 'torch/include/ATen/ops/_fused_adamw_mps_dispatch.h' 2025-07-24T03:55:17.8952840Z adding 'torch/include/ATen/ops/_fused_adamw_native.h' 2025-07-24T03:55:17.8954740Z adding 'torch/include/ATen/ops/_fused_adamw_ops.h' 2025-07-24T03:55:17.8955300Z adding 'torch/include/ATen/ops/_fused_dropout.h' 2025-07-24T03:55:17.8956300Z adding 'torch/include/ATen/ops/_fused_dropout_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8957290Z adding 'torch/include/ATen/ops/_fused_dropout_cuda_dispatch.h' 2025-07-24T03:55:17.8958150Z adding 'torch/include/ATen/ops/_fused_dropout_native.h' 2025-07-24T03:55:17.8959140Z adding 'torch/include/ATen/ops/_fused_dropout_ops.h' 2025-07-24T03:55:17.8960320Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper.h' 2025-07-24T03:55:17.8961580Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8962440Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cpu_dispatch.h' 2025-07-24T03:55:17.8963310Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_cuda_dispatch.h' 2025-07-24T03:55:17.8964230Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_native.h' 2025-07-24T03:55:17.8965680Z adding 'torch/include/ATen/ops/_fused_moving_avg_obs_fq_helper_ops.h' 2025-07-24T03:55:17.8966520Z adding 'torch/include/ATen/ops/_fused_rms_norm.h' 2025-07-24T03:55:17.8967450Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward.h' 2025-07-24T03:55:17.8968390Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_cuda_dispatch.h' 2025-07-24T03:55:17.8969390Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_native.h' 2025-07-24T03:55:17.8970360Z adding 'torch/include/ATen/ops/_fused_rms_norm_backward_ops.h' 2025-07-24T03:55:17.8971330Z adding 'torch/include/ATen/ops/_fused_rms_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8972100Z adding 'torch/include/ATen/ops/_fused_rms_norm_cuda_dispatch.h' 2025-07-24T03:55:17.8973110Z adding 'torch/include/ATen/ops/_fused_rms_norm_mps_dispatch.h' 2025-07-24T03:55:17.8973970Z adding 'torch/include/ATen/ops/_fused_rms_norm_native.h' 2025-07-24T03:55:17.8974900Z adding 'torch/include/ATen/ops/_fused_rms_norm_ops.h' 2025-07-24T03:55:17.8975820Z adding 'torch/include/ATen/ops/_fused_sdp_choice.h' 2025-07-24T03:55:17.8976900Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cpu_dispatch.h' 2025-07-24T03:55:17.8977790Z adding 'torch/include/ATen/ops/_fused_sdp_choice_cuda_dispatch.h' 2025-07-24T03:55:17.8978660Z adding 'torch/include/ATen/ops/_fused_sdp_choice_meta_dispatch.h' 2025-07-24T03:55:17.8979510Z adding 'torch/include/ATen/ops/_fused_sdp_choice_native.h' 2025-07-24T03:55:17.8980630Z adding 'torch/include/ATen/ops/_fused_sdp_choice_ops.h' 2025-07-24T03:55:17.8981850Z adding 'torch/include/ATen/ops/_fused_sgd.h' 2025-07-24T03:55:17.8982980Z adding 'torch/include/ATen/ops/_fused_sgd_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8983820Z adding 'torch/include/ATen/ops/_fused_sgd_cpu_dispatch.h' 2025-07-24T03:55:17.8984850Z adding 'torch/include/ATen/ops/_fused_sgd_cuda_dispatch.h' 2025-07-24T03:55:17.8985730Z adding 'torch/include/ATen/ops/_fused_sgd_mps_dispatch.h' 2025-07-24T03:55:17.8986710Z adding 'torch/include/ATen/ops/_fused_sgd_native.h' 2025-07-24T03:55:17.8988310Z adding 'torch/include/ATen/ops/_fused_sgd_ops.h' 2025-07-24T03:55:17.8989190Z adding 'torch/include/ATen/ops/_fw_primal.h' 2025-07-24T03:55:17.8990200Z adding 'torch/include/ATen/ops/_fw_primal_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8991030Z adding 'torch/include/ATen/ops/_fw_primal_copy.h' 2025-07-24T03:55:17.8992060Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.8993180Z adding 'torch/include/ATen/ops/_fw_primal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.8993930Z adding 'torch/include/ATen/ops/_fw_primal_copy_native.h' 2025-07-24T03:55:17.8994880Z adding 'torch/include/ATen/ops/_fw_primal_copy_ops.h' 2025-07-24T03:55:17.8995680Z adding 'torch/include/ATen/ops/_fw_primal_native.h' 2025-07-24T03:55:17.8996780Z adding 'torch/include/ATen/ops/_fw_primal_ops.h' 2025-07-24T03:55:17.8997720Z adding 'torch/include/ATen/ops/_gather_sparse_backward.h' 2025-07-24T03:55:17.8998740Z adding 'torch/include/ATen/ops/_gather_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.8999540Z adding 'torch/include/ATen/ops/_gather_sparse_backward_native.h' 2025-07-24T03:55:17.9000680Z adding 'torch/include/ATen/ops/_gather_sparse_backward_ops.h' 2025-07-24T03:55:17.9001680Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback.h' 2025-07-24T03:55:17.9002620Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward.h' 2025-07-24T03:55:17.9003610Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9004600Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_native.h' 2025-07-24T03:55:17.9005620Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_backward_ops.h' 2025-07-24T03:55:17.9006590Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9007360Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_native.h' 2025-07-24T03:55:17.9008510Z adding 'torch/include/ATen/ops/_grid_sampler_2d_cpu_fallback_ops.h' 2025-07-24T03:55:17.9009390Z adding 'torch/include/ATen/ops/_grouped_mm.h' 2025-07-24T03:55:17.9010300Z adding 'torch/include/ATen/ops/_grouped_mm_cuda_dispatch.h' 2025-07-24T03:55:17.9011160Z adding 'torch/include/ATen/ops/_grouped_mm_native.h' 2025-07-24T03:55:17.9012310Z adding 'torch/include/ATen/ops/_grouped_mm_ops.h' 2025-07-24T03:55:17.9013230Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type.h' 2025-07-24T03:55:17.9014270Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9015010Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_native.h' 2025-07-24T03:55:17.9016100Z adding 'torch/include/ATen/ops/_has_compatible_shallow_copy_type_ops.h' 2025-07-24T03:55:17.9016970Z adding 'torch/include/ATen/ops/_has_same_storage_numel.h' 2025-07-24T03:55:17.9017970Z adding 'torch/include/ATen/ops/_has_same_storage_numel_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9018740Z adding 'torch/include/ATen/ops/_has_same_storage_numel_native.h' 2025-07-24T03:55:17.9019850Z adding 'torch/include/ATen/ops/_has_same_storage_numel_ops.h' 2025-07-24T03:55:17.9020850Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges.h' 2025-07-24T03:55:17.9021900Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9022730Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_cpu_dispatch.h' 2025-07-24T03:55:17.9023760Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_mps_dispatch.h' 2025-07-24T03:55:17.9025040Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_native.h' 2025-07-24T03:55:17.9026080Z adding 'torch/include/ATen/ops/_histogramdd_bin_edges_ops.h' 2025-07-24T03:55:17.9027130Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts.h' 2025-07-24T03:55:17.9028310Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9029120Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_cpu_dispatch.h' 2025-07-24T03:55:17.9030020Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_mps_dispatch.h' 2025-07-24T03:55:17.9030900Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_native.h' 2025-07-24T03:55:17.9032090Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_cts_ops.h' 2025-07-24T03:55:17.9033120Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors.h' 2025-07-24T03:55:17.9034130Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9034970Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_cpu_dispatch.h' 2025-07-24T03:55:17.9036130Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_mps_dispatch.h' 2025-07-24T03:55:17.9037130Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_native.h' 2025-07-24T03:55:17.9038160Z adding 'torch/include/ATen/ops/_histogramdd_from_bin_tensors_ops.h' 2025-07-24T03:55:17.9039120Z adding 'torch/include/ATen/ops/_index_put_impl.h' 2025-07-24T03:55:17.9040380Z adding 'torch/include/ATen/ops/_index_put_impl_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9041330Z adding 'torch/include/ATen/ops/_index_put_impl_cpu_dispatch.h' 2025-07-24T03:55:17.9042170Z adding 'torch/include/ATen/ops/_index_put_impl_cuda_dispatch.h' 2025-07-24T03:55:17.9043000Z adding 'torch/include/ATen/ops/_index_put_impl_meta_dispatch.h' 2025-07-24T03:55:17.9043980Z adding 'torch/include/ATen/ops/_index_put_impl_mps_dispatch.h' 2025-07-24T03:55:17.9044900Z adding 'torch/include/ATen/ops/_index_put_impl_native.h' 2025-07-24T03:55:17.9045930Z adding 'torch/include/ATen/ops/_index_put_impl_ops.h' 2025-07-24T03:55:17.9046780Z adding 'torch/include/ATen/ops/_indices.h' 2025-07-24T03:55:17.9047860Z adding 'torch/include/ATen/ops/_indices_copy.h' 2025-07-24T03:55:17.9048880Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9049900Z adding 'torch/include/ATen/ops/_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9050660Z adding 'torch/include/ATen/ops/_indices_copy_native.h' 2025-07-24T03:55:17.9051800Z adding 'torch/include/ATen/ops/_indices_copy_ops.h' 2025-07-24T03:55:17.9052710Z adding 'torch/include/ATen/ops/_indices_native.h' 2025-07-24T03:55:17.9053750Z adding 'torch/include/ATen/ops/_indices_ops.h' 2025-07-24T03:55:17.9054680Z adding 'torch/include/ATen/ops/_int_mm.h' 2025-07-24T03:55:17.9055780Z adding 'torch/include/ATen/ops/_int_mm_cpu_dispatch.h' 2025-07-24T03:55:17.9056800Z adding 'torch/include/ATen/ops/_int_mm_cuda_dispatch.h' 2025-07-24T03:55:17.9057640Z adding 'torch/include/ATen/ops/_int_mm_native.h' 2025-07-24T03:55:17.9058570Z adding 'torch/include/ATen/ops/_int_mm_ops.h' 2025-07-24T03:55:17.9059610Z adding 'torch/include/ATen/ops/_is_all_true.h' 2025-07-24T03:55:17.9060590Z adding 'torch/include/ATen/ops/_is_all_true_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9061350Z adding 'torch/include/ATen/ops/_is_all_true_native.h' 2025-07-24T03:55:17.9062230Z adding 'torch/include/ATen/ops/_is_all_true_ops.h' 2025-07-24T03:55:17.9063240Z adding 'torch/include/ATen/ops/_is_any_true.h' 2025-07-24T03:55:17.9064260Z adding 'torch/include/ATen/ops/_is_any_true_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9065070Z adding 'torch/include/ATen/ops/_is_any_true_native.h' 2025-07-24T03:55:17.9065970Z adding 'torch/include/ATen/ops/_is_any_true_ops.h' 2025-07-24T03:55:17.9067100Z adding 'torch/include/ATen/ops/_is_zerotensor.h' 2025-07-24T03:55:17.9068120Z adding 'torch/include/ATen/ops/_is_zerotensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9069020Z adding 'torch/include/ATen/ops/_is_zerotensor_native.h' 2025-07-24T03:55:17.9069950Z adding 'torch/include/ATen/ops/_is_zerotensor_ops.h' 2025-07-24T03:55:17.9071130Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward.h' 2025-07-24T03:55:17.9072090Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cpu_dispatch.h' 2025-07-24T03:55:17.9072920Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_cuda_dispatch.h' 2025-07-24T03:55:17.9073750Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_native.h' 2025-07-24T03:55:17.9074840Z adding 'torch/include/ATen/ops/_jagged_to_padded_dense_forward_ops.h' 2025-07-24T03:55:17.9075650Z adding 'torch/include/ATen/ops/_lazy_clone.h' 2025-07-24T03:55:17.9076610Z adding 'torch/include/ATen/ops/_lazy_clone_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9077380Z adding 'torch/include/ATen/ops/_lazy_clone_native.h' 2025-07-24T03:55:17.9078390Z adding 'torch/include/ATen/ops/_lazy_clone_ops.h' 2025-07-24T03:55:17.9079310Z adding 'torch/include/ATen/ops/_linalg_check_errors.h' 2025-07-24T03:55:17.9080250Z adding 'torch/include/ATen/ops/_linalg_check_errors_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9081010Z adding 'torch/include/ATen/ops/_linalg_check_errors_native.h' 2025-07-24T03:55:17.9082080Z adding 'torch/include/ATen/ops/_linalg_check_errors_ops.h' 2025-07-24T03:55:17.9083000Z adding 'torch/include/ATen/ops/_linalg_det.h' 2025-07-24T03:55:17.9084010Z adding 'torch/include/ATen/ops/_linalg_det_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9084790Z adding 'torch/include/ATen/ops/_linalg_det_cpu_dispatch.h' 2025-07-24T03:55:17.9085840Z adding 'torch/include/ATen/ops/_linalg_det_cuda_dispatch.h' 2025-07-24T03:55:17.9086670Z adding 'torch/include/ATen/ops/_linalg_det_meta.h' 2025-07-24T03:55:17.9087560Z adding 'torch/include/ATen/ops/_linalg_det_meta_dispatch.h' 2025-07-24T03:55:17.9088380Z adding 'torch/include/ATen/ops/_linalg_det_mps_dispatch.h' 2025-07-24T03:55:17.9089430Z adding 'torch/include/ATen/ops/_linalg_det_native.h' 2025-07-24T03:55:17.9090400Z adding 'torch/include/ATen/ops/_linalg_det_ops.h' 2025-07-24T03:55:17.9091340Z adding 'torch/include/ATen/ops/_linalg_eigh.h' 2025-07-24T03:55:17.9092350Z adding 'torch/include/ATen/ops/_linalg_eigh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9093320Z adding 'torch/include/ATen/ops/_linalg_eigh_cpu_dispatch.h' 2025-07-24T03:55:17.9094200Z adding 'torch/include/ATen/ops/_linalg_eigh_cuda_dispatch.h' 2025-07-24T03:55:17.9095030Z adding 'torch/include/ATen/ops/_linalg_eigh_meta.h' 2025-07-24T03:55:17.9095900Z adding 'torch/include/ATen/ops/_linalg_eigh_meta_dispatch.h' 2025-07-24T03:55:17.9096900Z adding 'torch/include/ATen/ops/_linalg_eigh_native.h' 2025-07-24T03:55:17.9097910Z adding 'torch/include/ATen/ops/_linalg_eigh_ops.h' 2025-07-24T03:55:17.9098800Z adding 'torch/include/ATen/ops/_linalg_eigvals.h' 2025-07-24T03:55:17.9099690Z adding 'torch/include/ATen/ops/_linalg_eigvals_cpu_dispatch.h' 2025-07-24T03:55:17.9100720Z adding 'torch/include/ATen/ops/_linalg_eigvals_cuda_dispatch.h' 2025-07-24T03:55:17.9101610Z adding 'torch/include/ATen/ops/_linalg_eigvals_native.h' 2025-07-24T03:55:17.9102500Z adding 'torch/include/ATen/ops/_linalg_eigvals_ops.h' 2025-07-24T03:55:17.9103430Z adding 'torch/include/ATen/ops/_linalg_slogdet.h' 2025-07-24T03:55:17.9104640Z adding 'torch/include/ATen/ops/_linalg_slogdet_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9105490Z adding 'torch/include/ATen/ops/_linalg_slogdet_cpu_dispatch.h' 2025-07-24T03:55:17.9106370Z adding 'torch/include/ATen/ops/_linalg_slogdet_cuda_dispatch.h' 2025-07-24T03:55:17.9107190Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta.h' 2025-07-24T03:55:17.9108220Z adding 'torch/include/ATen/ops/_linalg_slogdet_meta_dispatch.h' 2025-07-24T03:55:17.9109070Z adding 'torch/include/ATen/ops/_linalg_slogdet_mps_dispatch.h' 2025-07-24T03:55:17.9109910Z adding 'torch/include/ATen/ops/_linalg_slogdet_native.h' 2025-07-24T03:55:17.9110910Z adding 'torch/include/ATen/ops/_linalg_slogdet_ops.h' 2025-07-24T03:55:17.9112040Z adding 'torch/include/ATen/ops/_linalg_solve_ex.h' 2025-07-24T03:55:17.9113120Z adding 'torch/include/ATen/ops/_linalg_solve_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9113950Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cpu_dispatch.h' 2025-07-24T03:55:17.9114860Z adding 'torch/include/ATen/ops/_linalg_solve_ex_cuda_dispatch.h' 2025-07-24T03:55:17.9115940Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta.h' 2025-07-24T03:55:17.9116870Z adding 'torch/include/ATen/ops/_linalg_solve_ex_meta_dispatch.h' 2025-07-24T03:55:17.9117740Z adding 'torch/include/ATen/ops/_linalg_solve_ex_mps_dispatch.h' 2025-07-24T03:55:17.9118580Z adding 'torch/include/ATen/ops/_linalg_solve_ex_native.h' 2025-07-24T03:55:17.9119770Z adding 'torch/include/ATen/ops/_linalg_solve_ex_ops.h' 2025-07-24T03:55:17.9120740Z adding 'torch/include/ATen/ops/_linalg_svd.h' 2025-07-24T03:55:17.9121780Z adding 'torch/include/ATen/ops/_linalg_svd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9122580Z adding 'torch/include/ATen/ops/_linalg_svd_cpu_dispatch.h' 2025-07-24T03:55:17.9123610Z adding 'torch/include/ATen/ops/_linalg_svd_cuda_dispatch.h' 2025-07-24T03:55:17.9124460Z adding 'torch/include/ATen/ops/_linalg_svd_meta.h' 2025-07-24T03:55:17.9125340Z adding 'torch/include/ATen/ops/_linalg_svd_meta_dispatch.h' 2025-07-24T03:55:17.9126180Z adding 'torch/include/ATen/ops/_linalg_svd_native.h' 2025-07-24T03:55:17.9127350Z adding 'torch/include/ATen/ops/_linalg_svd_ops.h' 2025-07-24T03:55:17.9128250Z adding 'torch/include/ATen/ops/_local_scalar_dense.h' 2025-07-24T03:55:17.9129160Z adding 'torch/include/ATen/ops/_local_scalar_dense_cpu_dispatch.h' 2025-07-24T03:55:17.9129990Z adding 'torch/include/ATen/ops/_local_scalar_dense_cuda_dispatch.h' 2025-07-24T03:55:17.9130990Z adding 'torch/include/ATen/ops/_local_scalar_dense_mps_dispatch.h' 2025-07-24T03:55:17.9131820Z adding 'torch/include/ATen/ops/_local_scalar_dense_native.h' 2025-07-24T03:55:17.9132720Z adding 'torch/include/ATen/ops/_local_scalar_dense_ops.h' 2025-07-24T03:55:17.9133590Z adding 'torch/include/ATen/ops/_log_softmax.h' 2025-07-24T03:55:17.9134740Z adding 'torch/include/ATen/ops/_log_softmax_backward_data.h' 2025-07-24T03:55:17.9135800Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9136600Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cpu_dispatch.h' 2025-07-24T03:55:17.9137450Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_cuda_dispatch.h' 2025-07-24T03:55:17.9138490Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta.h' 2025-07-24T03:55:17.9139380Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_meta_dispatch.h' 2025-07-24T03:55:17.9140260Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_mps_dispatch.h' 2025-07-24T03:55:17.9141180Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_native.h' 2025-07-24T03:55:17.9142360Z adding 'torch/include/ATen/ops/_log_softmax_backward_data_ops.h' 2025-07-24T03:55:17.9143370Z adding 'torch/include/ATen/ops/_log_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9144150Z adding 'torch/include/ATen/ops/_log_softmax_cpu_dispatch.h' 2025-07-24T03:55:17.9145010Z adding 'torch/include/ATen/ops/_log_softmax_cuda_dispatch.h' 2025-07-24T03:55:17.9146030Z adding 'torch/include/ATen/ops/_log_softmax_meta.h' 2025-07-24T03:55:17.9146920Z adding 'torch/include/ATen/ops/_log_softmax_meta_dispatch.h' 2025-07-24T03:55:17.9147760Z adding 'torch/include/ATen/ops/_log_softmax_mps_dispatch.h' 2025-07-24T03:55:17.9148610Z adding 'torch/include/ATen/ops/_log_softmax_native.h' 2025-07-24T03:55:17.9149740Z adding 'torch/include/ATen/ops/_log_softmax_ops.h' 2025-07-24T03:55:17.9150660Z adding 'torch/include/ATen/ops/_logcumsumexp.h' 2025-07-24T03:55:17.9151570Z adding 'torch/include/ATen/ops/_logcumsumexp_cpu_dispatch.h' 2025-07-24T03:55:17.9152400Z adding 'torch/include/ATen/ops/_logcumsumexp_cuda_dispatch.h' 2025-07-24T03:55:17.9153390Z adding 'torch/include/ATen/ops/_logcumsumexp_mps_dispatch.h' 2025-07-24T03:55:17.9154290Z adding 'torch/include/ATen/ops/_logcumsumexp_native.h' 2025-07-24T03:55:17.9155230Z adding 'torch/include/ATen/ops/_logcumsumexp_ops.h' 2025-07-24T03:55:17.9156270Z adding 'torch/include/ATen/ops/_lstm_mps.h' 2025-07-24T03:55:17.9157490Z adding 'torch/include/ATen/ops/_lstm_mps_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9158330Z adding 'torch/include/ATen/ops/_lstm_mps_mps_dispatch.h' 2025-07-24T03:55:17.9159240Z adding 'torch/include/ATen/ops/_lstm_mps_native.h' 2025-07-24T03:55:17.9160350Z adding 'torch/include/ATen/ops/_lstm_mps_ops.h' 2025-07-24T03:55:17.9161440Z adding 'torch/include/ATen/ops/_lu_with_info.h' 2025-07-24T03:55:17.9162460Z adding 'torch/include/ATen/ops/_lu_with_info_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9163240Z adding 'torch/include/ATen/ops/_lu_with_info_native.h' 2025-07-24T03:55:17.9164150Z adding 'torch/include/ATen/ops/_lu_with_info_ops.h' 2025-07-24T03:55:17.9165290Z adding 'torch/include/ATen/ops/_make_dep_token.h' 2025-07-24T03:55:17.9166240Z adding 'torch/include/ATen/ops/_make_dep_token_cpu_dispatch.h' 2025-07-24T03:55:17.9167110Z adding 'torch/include/ATen/ops/_make_dep_token_native.h' 2025-07-24T03:55:17.9168030Z adding 'torch/include/ATen/ops/_make_dep_token_ops.h' 2025-07-24T03:55:17.9169070Z adding 'torch/include/ATen/ops/_make_dual.h' 2025-07-24T03:55:17.9170080Z adding 'torch/include/ATen/ops/_make_dual_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9170890Z adding 'torch/include/ATen/ops/_make_dual_copy.h' 2025-07-24T03:55:17.9171890Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9173010Z adding 'torch/include/ATen/ops/_make_dual_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9173760Z adding 'torch/include/ATen/ops/_make_dual_copy_native.h' 2025-07-24T03:55:17.9174720Z adding 'torch/include/ATen/ops/_make_dual_copy_ops.h' 2025-07-24T03:55:17.9175520Z adding 'torch/include/ATen/ops/_make_dual_native.h' 2025-07-24T03:55:17.9176610Z adding 'torch/include/ATen/ops/_make_dual_ops.h' 2025-07-24T03:55:17.9177620Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor.h' 2025-07-24T03:55:17.9178630Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9179460Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cpu_dispatch.h' 2025-07-24T03:55:17.9180450Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_cuda_dispatch.h' 2025-07-24T03:55:17.9181320Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_native.h' 2025-07-24T03:55:17.9182310Z adding 'torch/include/ATen/ops/_make_per_channel_quantized_tensor_ops.h' 2025-07-24T03:55:17.9183260Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor.h' 2025-07-24T03:55:17.9184390Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9185210Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cpu_dispatch.h' 2025-07-24T03:55:17.9186030Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_cuda_dispatch.h' 2025-07-24T03:55:17.9186860Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_native.h' 2025-07-24T03:55:17.9188000Z adding 'torch/include/ATen/ops/_make_per_tensor_quantized_tensor_ops.h' 2025-07-24T03:55:17.9188880Z adding 'torch/include/ATen/ops/_masked_scale.h' 2025-07-24T03:55:17.9189850Z adding 'torch/include/ATen/ops/_masked_scale_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9190630Z adding 'torch/include/ATen/ops/_masked_scale_cuda_dispatch.h' 2025-07-24T03:55:17.9191640Z adding 'torch/include/ATen/ops/_masked_scale_native.h' 2025-07-24T03:55:17.9192630Z adding 'torch/include/ATen/ops/_masked_scale_ops.h' 2025-07-24T03:55:17.9193550Z adding 'torch/include/ATen/ops/_masked_softmax.h' 2025-07-24T03:55:17.9194500Z adding 'torch/include/ATen/ops/_masked_softmax_backward.h' 2025-07-24T03:55:17.9195690Z adding 'torch/include/ATen/ops/_masked_softmax_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9196560Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9197390Z adding 'torch/include/ATen/ops/_masked_softmax_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9198260Z adding 'torch/include/ATen/ops/_masked_softmax_backward_native.h' 2025-07-24T03:55:17.9199430Z adding 'torch/include/ATen/ops/_masked_softmax_backward_ops.h' 2025-07-24T03:55:17.9200420Z adding 'torch/include/ATen/ops/_masked_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9201250Z adding 'torch/include/ATen/ops/_masked_softmax_cpu_dispatch.h' 2025-07-24T03:55:17.9202070Z adding 'torch/include/ATen/ops/_masked_softmax_cuda_dispatch.h' 2025-07-24T03:55:17.9203100Z adding 'torch/include/ATen/ops/_masked_softmax_native.h' 2025-07-24T03:55:17.9204110Z adding 'torch/include/ATen/ops/_masked_softmax_ops.h' 2025-07-24T03:55:17.9205030Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear.h' 2025-07-24T03:55:17.9205990Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_cuda_dispatch.h' 2025-07-24T03:55:17.9207030Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_native.h' 2025-07-24T03:55:17.9208000Z adding 'torch/include/ATen/ops/_mixed_dtypes_linear_ops.h' 2025-07-24T03:55:17.9208890Z adding 'torch/include/ATen/ops/_mkldnn_reshape.h' 2025-07-24T03:55:17.9209890Z adding 'torch/include/ATen/ops/_mkldnn_reshape_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9210840Z adding 'torch/include/ATen/ops/_mkldnn_reshape_native.h' 2025-07-24T03:55:17.9211830Z adding 'torch/include/ATen/ops/_mkldnn_reshape_ops.h' 2025-07-24T03:55:17.9212870Z adding 'torch/include/ATen/ops/_mkldnn_transpose.h' 2025-07-24T03:55:17.9213860Z adding 'torch/include/ATen/ops/_mkldnn_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9214850Z adding 'torch/include/ATen/ops/_mkldnn_transpose_meta_dispatch.h' 2025-07-24T03:55:17.9215700Z adding 'torch/include/ATen/ops/_mkldnn_transpose_native.h' 2025-07-24T03:55:17.9216720Z adding 'torch/include/ATen/ops/_mkldnn_transpose_ops.h' 2025-07-24T03:55:17.9217890Z adding 'torch/include/ATen/ops/_mps_convolution.h' 2025-07-24T03:55:17.9219140Z adding 'torch/include/ATen/ops/_mps_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9220050Z adding 'torch/include/ATen/ops/_mps_convolution_mps_dispatch.h' 2025-07-24T03:55:17.9220940Z adding 'torch/include/ATen/ops/_mps_convolution_native.h' 2025-07-24T03:55:17.9221970Z adding 'torch/include/ATen/ops/_mps_convolution_ops.h' 2025-07-24T03:55:17.9227560Z adding 'torch/include/ATen/ops/_mps_convolution_transpose.h' 2025-07-24T03:55:17.9227890Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9228070Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_mps_dispatch.h' 2025-07-24T03:55:17.9228210Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_native.h' 2025-07-24T03:55:17.9228330Z adding 'torch/include/ATen/ops/_mps_convolution_transpose_ops.h' 2025-07-24T03:55:17.9228570Z adding 'torch/include/ATen/ops/_native_batch_norm_legit.h' 2025-07-24T03:55:17.9229590Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9230490Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cpu_dispatch.h' 2025-07-24T03:55:17.9231620Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_cuda_dispatch.h' 2025-07-24T03:55:17.9232590Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_mps_dispatch.h' 2025-07-24T03:55:17.9233660Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_native.h' 2025-07-24T03:55:17.9234690Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training.h' 2025-07-24T03:55:17.9235920Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9236750Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_native.h' 2025-07-24T03:55:17.9237850Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_no_training_ops.h' 2025-07-24T03:55:17.9239120Z adding 'torch/include/ATen/ops/_native_batch_norm_legit_ops.h' 2025-07-24T03:55:17.9240410Z adding 'torch/include/ATen/ops/_native_multi_head_attention.h' 2025-07-24T03:55:17.9241500Z adding 'torch/include/ATen/ops/_native_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9242370Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cpu_dispatch.h' 2025-07-24T03:55:17.9243240Z adding 'torch/include/ATen/ops/_native_multi_head_attention_cuda_dispatch.h' 2025-07-24T03:55:17.9244350Z adding 'torch/include/ATen/ops/_native_multi_head_attention_native.h' 2025-07-24T03:55:17.9245480Z adding 'torch/include/ATen/ops/_native_multi_head_attention_ops.h' 2025-07-24T03:55:17.9246320Z adding 'torch/include/ATen/ops/_neg_view.h' 2025-07-24T03:55:17.9247640Z adding 'torch/include/ATen/ops/_neg_view_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9248630Z adding 'torch/include/ATen/ops/_neg_view_copy.h' 2025-07-24T03:55:17.9249610Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9250510Z adding 'torch/include/ATen/ops/_neg_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9251240Z adding 'torch/include/ATen/ops/_neg_view_copy_native.h' 2025-07-24T03:55:17.9252360Z adding 'torch/include/ATen/ops/_neg_view_copy_ops.h' 2025-07-24T03:55:17.9253210Z adding 'torch/include/ATen/ops/_neg_view_native.h' 2025-07-24T03:55:17.9254140Z adding 'torch/include/ATen/ops/_neg_view_ops.h' 2025-07-24T03:55:17.9255080Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets.h' 2025-07-24T03:55:17.9256180Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cpu_dispatch.h' 2025-07-24T03:55:17.9257020Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_cuda_dispatch.h' 2025-07-24T03:55:17.9257880Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_native.h' 2025-07-24T03:55:17.9258770Z adding 'torch/include/ATen/ops/_nested_compute_contiguous_strides_offsets_ops.h' 2025-07-24T03:55:17.9259840Z adding 'torch/include/ATen/ops/_nested_from_padded.h' 2025-07-24T03:55:17.9260790Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example.h' 2025-07-24T03:55:17.9261780Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9262550Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_native.h' 2025-07-24T03:55:17.9263680Z adding 'torch/include/ATen/ops/_nested_from_padded_and_nested_example_ops.h' 2025-07-24T03:55:17.9264620Z adding 'torch/include/ATen/ops/_nested_from_padded_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9265480Z adding 'torch/include/ATen/ops/_nested_from_padded_cpu_dispatch.h' 2025-07-24T03:55:17.9266260Z adding 'torch/include/ATen/ops/_nested_from_padded_cuda_dispatch.h' 2025-07-24T03:55:17.9267320Z adding 'torch/include/ATen/ops/_nested_from_padded_native.h' 2025-07-24T03:55:17.9268340Z adding 'torch/include/ATen/ops/_nested_from_padded_ops.h' 2025-07-24T03:55:17.9269470Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor.h' 2025-07-24T03:55:17.9270340Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_native.h' 2025-07-24T03:55:17.9271450Z adding 'torch/include/ATen/ops/_nested_from_padded_tensor_ops.h' 2025-07-24T03:55:17.9272310Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy.h' 2025-07-24T03:55:17.9273130Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_native.h' 2025-07-24T03:55:17.9274020Z adding 'torch/include/ATen/ops/_nested_get_jagged_dummy_ops.h' 2025-07-24T03:55:17.9274990Z adding 'torch/include/ATen/ops/_nested_get_lengths.h' 2025-07-24T03:55:17.9275820Z adding 'torch/include/ATen/ops/_nested_get_lengths_native.h' 2025-07-24T03:55:17.9276720Z adding 'torch/include/ATen/ops/_nested_get_lengths_ops.h' 2025-07-24T03:55:17.9277560Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen.h' 2025-07-24T03:55:17.9278650Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_native.h' 2025-07-24T03:55:17.9279630Z adding 'torch/include/ATen/ops/_nested_get_max_seqlen_ops.h' 2025-07-24T03:55:17.9280480Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen.h' 2025-07-24T03:55:17.9281250Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_native.h' 2025-07-24T03:55:17.9282300Z adding 'torch/include/ATen/ops/_nested_get_min_seqlen_ops.h' 2025-07-24T03:55:17.9283160Z adding 'torch/include/ATen/ops/_nested_get_offsets.h' 2025-07-24T03:55:17.9283940Z adding 'torch/include/ATen/ops/_nested_get_offsets_native.h' 2025-07-24T03:55:17.9284810Z adding 'torch/include/ATen/ops/_nested_get_offsets_ops.h' 2025-07-24T03:55:17.9285820Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx.h' 2025-07-24T03:55:17.9286630Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_native.h' 2025-07-24T03:55:17.9287520Z adding 'torch/include/ATen/ops/_nested_get_ragged_idx_ops.h' 2025-07-24T03:55:17.9288330Z adding 'torch/include/ATen/ops/_nested_get_values.h' 2025-07-24T03:55:17.9289400Z adding 'torch/include/ATen/ops/_nested_get_values_copy.h' 2025-07-24T03:55:17.9290420Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9291350Z adding 'torch/include/ATen/ops/_nested_get_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9292040Z adding 'torch/include/ATen/ops/_nested_get_values_copy_native.h' 2025-07-24T03:55:17.9293150Z adding 'torch/include/ATen/ops/_nested_get_values_copy_ops.h' 2025-07-24T03:55:17.9293930Z adding 'torch/include/ATen/ops/_nested_get_values_native.h' 2025-07-24T03:55:17.9294810Z adding 'torch/include/ATen/ops/_nested_get_values_ops.h' 2025-07-24T03:55:17.9295720Z adding 'torch/include/ATen/ops/_nested_select_backward.h' 2025-07-24T03:55:17.9296760Z adding 'torch/include/ATen/ops/_nested_select_backward_native.h' 2025-07-24T03:55:17.9297680Z adding 'torch/include/ATen/ops/_nested_select_backward_ops.h' 2025-07-24T03:55:17.9298550Z adding 'torch/include/ATen/ops/_nested_sum_backward.h' 2025-07-24T03:55:17.9299410Z adding 'torch/include/ATen/ops/_nested_sum_backward_native.h' 2025-07-24T03:55:17.9300510Z adding 'torch/include/ATen/ops/_nested_sum_backward_ops.h' 2025-07-24T03:55:17.9301450Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask.h' 2025-07-24T03:55:17.9302450Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9303260Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cpu_dispatch.h' 2025-07-24T03:55:17.9304260Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_cuda_dispatch.h' 2025-07-24T03:55:17.9305130Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned.h' 2025-07-24T03:55:17.9306070Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cpu_dispatch.h' 2025-07-24T03:55:17.9306860Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_cuda_dispatch.h' 2025-07-24T03:55:17.9307880Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_native.h' 2025-07-24T03:55:17.9308850Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_left_aligned_ops.h' 2025-07-24T03:55:17.9309710Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_native.h' 2025-07-24T03:55:17.9310670Z adding 'torch/include/ATen/ops/_nested_tensor_from_mask_ops.h' 2025-07-24T03:55:17.9311850Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list.h' 2025-07-24T03:55:17.9312950Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9313850Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_native.h' 2025-07-24T03:55:17.9314870Z adding 'torch/include/ATen/ops/_nested_tensor_from_tensor_list_ops.h' 2025-07-24T03:55:17.9315870Z adding 'torch/include/ATen/ops/_nested_tensor_size.h' 2025-07-24T03:55:17.9316870Z adding 'torch/include/ATen/ops/_nested_tensor_size_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9317640Z adding 'torch/include/ATen/ops/_nested_tensor_size_native.h' 2025-07-24T03:55:17.9318580Z adding 'torch/include/ATen/ops/_nested_tensor_size_ops.h' 2025-07-24T03:55:17.9319610Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape.h' 2025-07-24T03:55:17.9320490Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_native.h' 2025-07-24T03:55:17.9321400Z adding 'torch/include/ATen/ops/_nested_tensor_softmax_with_shape_ops.h' 2025-07-24T03:55:17.9322290Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets.h' 2025-07-24T03:55:17.9323420Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9324220Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_native.h' 2025-07-24T03:55:17.9325140Z adding 'torch/include/ATen/ops/_nested_tensor_storage_offsets_ops.h' 2025-07-24T03:55:17.9325990Z adding 'torch/include/ATen/ops/_nested_tensor_strides.h' 2025-07-24T03:55:17.9327180Z adding 'torch/include/ATen/ops/_nested_tensor_strides_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9327910Z adding 'torch/include/ATen/ops/_nested_tensor_strides_native.h' 2025-07-24T03:55:17.9328830Z adding 'torch/include/ATen/ops/_nested_tensor_strides_ops.h' 2025-07-24T03:55:17.9329710Z adding 'torch/include/ATen/ops/_nested_view_from_buffer.h' 2025-07-24T03:55:17.9330800Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy.h' 2025-07-24T03:55:17.9331810Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9332750Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9333470Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_native.h' 2025-07-24T03:55:17.9334630Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_copy_ops.h' 2025-07-24T03:55:17.9335530Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cpu_dispatch.h' 2025-07-24T03:55:17.9336390Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_cuda_dispatch.h' 2025-07-24T03:55:17.9337190Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_native.h' 2025-07-24T03:55:17.9338320Z adding 'torch/include/ATen/ops/_nested_view_from_buffer_ops.h' 2025-07-24T03:55:17.9339220Z adding 'torch/include/ATen/ops/_nested_view_from_jagged.h' 2025-07-24T03:55:17.9340240Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy.h' 2025-07-24T03:55:17.9341280Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9342470Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9343250Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_native.h' 2025-07-24T03:55:17.9344260Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_copy_ops.h' 2025-07-24T03:55:17.9345100Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_native.h' 2025-07-24T03:55:17.9346200Z adding 'torch/include/ATen/ops/_nested_view_from_jagged_ops.h' 2025-07-24T03:55:17.9347170Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta.h' 2025-07-24T03:55:17.9348160Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9348930Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_native.h' 2025-07-24T03:55:17.9350060Z adding 'torch/include/ATen/ops/_new_zeros_with_same_feature_meta_ops.h' 2025-07-24T03:55:17.9350890Z adding 'torch/include/ATen/ops/_nnpack_available.h' 2025-07-24T03:55:17.9351890Z adding 'torch/include/ATen/ops/_nnpack_available_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9352620Z adding 'torch/include/ATen/ops/_nnpack_available_native.h' 2025-07-24T03:55:17.9353680Z adding 'torch/include/ATen/ops/_nnpack_available_ops.h' 2025-07-24T03:55:17.9354880Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution.h' 2025-07-24T03:55:17.9355960Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9356770Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_native.h' 2025-07-24T03:55:17.9357920Z adding 'torch/include/ATen/ops/_nnpack_spatial_convolution_ops.h' 2025-07-24T03:55:17.9358710Z adding 'torch/include/ATen/ops/_nnz.h' 2025-07-24T03:55:17.9359560Z adding 'torch/include/ATen/ops/_nnz_native.h' 2025-07-24T03:55:17.9360440Z adding 'torch/include/ATen/ops/_nnz_ops.h' 2025-07-24T03:55:17.9361570Z adding 'torch/include/ATen/ops/_pack_padded_sequence.h' 2025-07-24T03:55:17.9362560Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward.h' 2025-07-24T03:55:17.9363580Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9364340Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_native.h' 2025-07-24T03:55:17.9365460Z adding 'torch/include/ATen/ops/_pack_padded_sequence_backward_ops.h' 2025-07-24T03:55:17.9366440Z adding 'torch/include/ATen/ops/_pack_padded_sequence_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9367190Z adding 'torch/include/ATen/ops/_pack_padded_sequence_native.h' 2025-07-24T03:55:17.9368140Z adding 'torch/include/ATen/ops/_pack_padded_sequence_ops.h' 2025-07-24T03:55:17.9369220Z adding 'torch/include/ATen/ops/_pad_circular.h' 2025-07-24T03:55:17.9370190Z adding 'torch/include/ATen/ops/_pad_circular_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9370950Z adding 'torch/include/ATen/ops/_pad_circular_native.h' 2025-07-24T03:55:17.9371820Z adding 'torch/include/ATen/ops/_pad_circular_ops.h' 2025-07-24T03:55:17.9372960Z adding 'torch/include/ATen/ops/_pad_enum.h' 2025-07-24T03:55:17.9374020Z adding 'torch/include/ATen/ops/_pad_enum_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9374890Z adding 'torch/include/ATen/ops/_pad_enum_native.h' 2025-07-24T03:55:17.9375790Z adding 'torch/include/ATen/ops/_pad_enum_ops.h' 2025-07-24T03:55:17.9376880Z adding 'torch/include/ATen/ops/_pad_packed_sequence.h' 2025-07-24T03:55:17.9377880Z adding 'torch/include/ATen/ops/_pad_packed_sequence_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9378670Z adding 'torch/include/ATen/ops/_pad_packed_sequence_native.h' 2025-07-24T03:55:17.9379580Z adding 'torch/include/ATen/ops/_pad_packed_sequence_ops.h' 2025-07-24T03:55:17.9380770Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward.h' 2025-07-24T03:55:17.9381730Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cpu_dispatch.h' 2025-07-24T03:55:17.9382600Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_cuda_dispatch.h' 2025-07-24T03:55:17.9383430Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_native.h' 2025-07-24T03:55:17.9384550Z adding 'torch/include/ATen/ops/_padded_dense_to_jagged_forward_ops.h' 2025-07-24T03:55:17.9385410Z adding 'torch/include/ATen/ops/_pdist_backward.h' 2025-07-24T03:55:17.9386440Z adding 'torch/include/ATen/ops/_pdist_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9387300Z adding 'torch/include/ATen/ops/_pdist_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9388310Z adding 'torch/include/ATen/ops/_pdist_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9389150Z adding 'torch/include/ATen/ops/_pdist_backward_native.h' 2025-07-24T03:55:17.9390100Z adding 'torch/include/ATen/ops/_pdist_backward_ops.h' 2025-07-24T03:55:17.9390960Z adding 'torch/include/ATen/ops/_pdist_forward.h' 2025-07-24T03:55:17.9392100Z adding 'torch/include/ATen/ops/_pdist_forward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9392930Z adding 'torch/include/ATen/ops/_pdist_forward_cpu_dispatch.h' 2025-07-24T03:55:17.9393740Z adding 'torch/include/ATen/ops/_pdist_forward_cuda_dispatch.h' 2025-07-24T03:55:17.9394550Z adding 'torch/include/ATen/ops/_pdist_forward_native.h' 2025-07-24T03:55:17.9395670Z adding 'torch/include/ATen/ops/_pdist_forward_ops.h' 2025-07-24T03:55:17.9396560Z adding 'torch/include/ATen/ops/_pin_memory.h' 2025-07-24T03:55:17.9397550Z adding 'torch/include/ATen/ops/_pin_memory_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9398380Z adding 'torch/include/ATen/ops/_pin_memory_native.h' 2025-07-24T03:55:17.9399490Z adding 'torch/include/ATen/ops/_pin_memory_ops.h' 2025-07-24T03:55:17.9400390Z adding 'torch/include/ATen/ops/_prelu_kernel.h' 2025-07-24T03:55:17.9401300Z adding 'torch/include/ATen/ops/_prelu_kernel_backward.h' 2025-07-24T03:55:17.9402210Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9403220Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9404080Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_mps_dispatch.h' 2025-07-24T03:55:17.9404920Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_native.h' 2025-07-24T03:55:17.9405860Z adding 'torch/include/ATen/ops/_prelu_kernel_backward_ops.h' 2025-07-24T03:55:17.9406910Z adding 'torch/include/ATen/ops/_prelu_kernel_cpu_dispatch.h' 2025-07-24T03:55:17.9407790Z adding 'torch/include/ATen/ops/_prelu_kernel_cuda_dispatch.h' 2025-07-24T03:55:17.9408630Z adding 'torch/include/ATen/ops/_prelu_kernel_mps_dispatch.h' 2025-07-24T03:55:17.9409480Z adding 'torch/include/ATen/ops/_prelu_kernel_native.h' 2025-07-24T03:55:17.9410600Z adding 'torch/include/ATen/ops/_prelu_kernel_ops.h' 2025-07-24T03:55:17.9411500Z adding 'torch/include/ATen/ops/_print.h' 2025-07-24T03:55:17.9412510Z adding 'torch/include/ATen/ops/_print_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9413280Z adding 'torch/include/ATen/ops/_print_native.h' 2025-07-24T03:55:17.9414370Z adding 'torch/include/ATen/ops/_print_ops.h' 2025-07-24T03:55:17.9415320Z adding 'torch/include/ATen/ops/_propagate_xla_data.h' 2025-07-24T03:55:17.9416430Z adding 'torch/include/ATen/ops/_propagate_xla_data_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9417190Z adding 'torch/include/ATen/ops/_propagate_xla_data_native.h' 2025-07-24T03:55:17.9418260Z adding 'torch/include/ATen/ops/_propagate_xla_data_ops.h' 2025-07-24T03:55:17.9419200Z adding 'torch/include/ATen/ops/_remove_batch_dim.h' 2025-07-24T03:55:17.9420180Z adding 'torch/include/ATen/ops/_remove_batch_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9420950Z adding 'torch/include/ATen/ops/_remove_batch_dim_native.h' 2025-07-24T03:55:17.9422050Z adding 'torch/include/ATen/ops/_remove_batch_dim_ops.h' 2025-07-24T03:55:17.9423010Z adding 'torch/include/ATen/ops/_reshape_alias.h' 2025-07-24T03:55:17.9424130Z adding 'torch/include/ATen/ops/_reshape_alias_copy.h' 2025-07-24T03:55:17.9425150Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9426300Z adding 'torch/include/ATen/ops/_reshape_alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9427100Z adding 'torch/include/ATen/ops/_reshape_alias_copy_native.h' 2025-07-24T03:55:17.9428050Z adding 'torch/include/ATen/ops/_reshape_alias_copy_ops.h' 2025-07-24T03:55:17.9428900Z adding 'torch/include/ATen/ops/_reshape_alias_cpu_dispatch.h' 2025-07-24T03:55:17.9429980Z adding 'torch/include/ATen/ops/_reshape_alias_cuda_dispatch.h' 2025-07-24T03:55:17.9430840Z adding 'torch/include/ATen/ops/_reshape_alias_meta_dispatch.h' 2025-07-24T03:55:17.9431730Z adding 'torch/include/ATen/ops/_reshape_alias_mps_dispatch.h' 2025-07-24T03:55:17.9432570Z adding 'torch/include/ATen/ops/_reshape_alias_native.h' 2025-07-24T03:55:17.9433700Z adding 'torch/include/ATen/ops/_reshape_alias_ops.h' 2025-07-24T03:55:17.9434630Z adding 'torch/include/ATen/ops/_reshape_copy.h' 2025-07-24T03:55:17.9435610Z adding 'torch/include/ATen/ops/_reshape_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9436410Z adding 'torch/include/ATen/ops/_reshape_copy_native.h' 2025-07-24T03:55:17.9437520Z adding 'torch/include/ATen/ops/_reshape_copy_ops.h' 2025-07-24T03:55:17.9438500Z adding 'torch/include/ATen/ops/_reshape_from_tensor.h' 2025-07-24T03:55:17.9439490Z adding 'torch/include/ATen/ops/_reshape_from_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9440270Z adding 'torch/include/ATen/ops/_reshape_from_tensor_native.h' 2025-07-24T03:55:17.9441410Z adding 'torch/include/ATen/ops/_reshape_from_tensor_ops.h' 2025-07-24T03:55:17.9442720Z adding 'torch/include/ATen/ops/_resize_output.h' 2025-07-24T03:55:17.9443850Z adding 'torch/include/ATen/ops/_resize_output_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9444720Z adding 'torch/include/ATen/ops/_resize_output_meta_dispatch.h' 2025-07-24T03:55:17.9445760Z adding 'torch/include/ATen/ops/_resize_output_native.h' 2025-07-24T03:55:17.9446780Z adding 'torch/include/ATen/ops/_resize_output_ops.h' 2025-07-24T03:55:17.9447740Z adding 'torch/include/ATen/ops/_rowwise_prune.h' 2025-07-24T03:55:17.9448770Z adding 'torch/include/ATen/ops/_rowwise_prune_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9449740Z adding 'torch/include/ATen/ops/_rowwise_prune_native.h' 2025-07-24T03:55:17.9450720Z adding 'torch/include/ATen/ops/_rowwise_prune_ops.h' 2025-07-24T03:55:17.9451600Z adding 'torch/include/ATen/ops/_safe_softmax.h' 2025-07-24T03:55:17.9452590Z adding 'torch/include/ATen/ops/_safe_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9453550Z adding 'torch/include/ATen/ops/_safe_softmax_native.h' 2025-07-24T03:55:17.9454500Z adding 'torch/include/ATen/ops/_safe_softmax_ops.h' 2025-07-24T03:55:17.9455490Z adding 'torch/include/ATen/ops/_sample_dirichlet.h' 2025-07-24T03:55:17.9456510Z adding 'torch/include/ATen/ops/_sample_dirichlet_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9457520Z adding 'torch/include/ATen/ops/_sample_dirichlet_cpu_dispatch.h' 2025-07-24T03:55:17.9458360Z adding 'torch/include/ATen/ops/_sample_dirichlet_cuda_dispatch.h' 2025-07-24T03:55:17.9459190Z adding 'torch/include/ATen/ops/_sample_dirichlet_native.h' 2025-07-24T03:55:17.9460150Z adding 'torch/include/ATen/ops/_sample_dirichlet_ops.h' 2025-07-24T03:55:17.9461250Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16.h' 2025-07-24T03:55:17.9462230Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9463040Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_native.h' 2025-07-24T03:55:17.9463930Z adding 'torch/include/ATen/ops/_saturate_weight_to_fp16_ops.h' 2025-07-24T03:55:17.9465040Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math.h' 2025-07-24T03:55:17.9466460Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9467330Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps.h' 2025-07-24T03:55:17.9468250Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_mps_dispatch.h' 2025-07-24T03:55:17.9469320Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_native.h' 2025-07-24T03:55:17.9470360Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_for_mps_ops.h' 2025-07-24T03:55:17.9471190Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_native.h' 2025-07-24T03:55:17.9472170Z adding 'torch/include/ATen/ops/_scaled_dot_product_attention_math_ops.h' 2025-07-24T03:55:17.9473310Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention.h' 2025-07-24T03:55:17.9474480Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward.h' 2025-07-24T03:55:17.9475510Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9476400Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_native.h' 2025-07-24T03:55:17.9477620Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_backward_ops.h' 2025-07-24T03:55:17.9478550Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_cuda_dispatch.h' 2025-07-24T03:55:17.9479460Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_native.h' 2025-07-24T03:55:17.9480440Z adding 'torch/include/ATen/ops/_scaled_dot_product_cudnn_attention_ops.h' 2025-07-24T03:55:17.9481560Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention.h' 2025-07-24T03:55:17.9482610Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward.h' 2025-07-24T03:55:17.9483570Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9484460Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_native.h' 2025-07-24T03:55:17.9485650Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_backward_ops.h' 2025-07-24T03:55:17.9486590Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_cuda_dispatch.h' 2025-07-24T03:55:17.9487470Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_native.h' 2025-07-24T03:55:17.9488460Z adding 'torch/include/ATen/ops/_scaled_dot_product_efficient_attention_ops.h' 2025-07-24T03:55:17.9489560Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention.h' 2025-07-24T03:55:17.9490770Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward.h' 2025-07-24T03:55:17.9491750Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9492670Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_native.h' 2025-07-24T03:55:17.9493850Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_backward_ops.h' 2025-07-24T03:55:17.9494800Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_cuda_dispatch.h' 2025-07-24T03:55:17.9495720Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu.h' 2025-07-24T03:55:17.9496690Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward.h' 2025-07-24T03:55:17.9497830Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9498750Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_native.h' 2025-07-24T03:55:17.9499750Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_backward_ops.h' 2025-07-24T03:55:17.9500660Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_cpu_dispatch.h' 2025-07-24T03:55:17.9501690Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_native.h' 2025-07-24T03:55:17.9502670Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_for_cpu_ops.h' 2025-07-24T03:55:17.9503570Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_native.h' 2025-07-24T03:55:17.9504540Z adding 'torch/include/ATen/ops/_scaled_dot_product_flash_attention_ops.h' 2025-07-24T03:55:17.9505730Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable.h' 2025-07-24T03:55:17.9506940Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward.h' 2025-07-24T03:55:17.9508030Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9508840Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_native.h' 2025-07-24T03:55:17.9510080Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_backward_ops.h' 2025-07-24T03:55:17.9511100Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9511910Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_native.h' 2025-07-24T03:55:17.9512910Z adding 'torch/include/ATen/ops/_scaled_dot_product_fused_attention_overrideable_ops.h' 2025-07-24T03:55:17.9513950Z adding 'torch/include/ATen/ops/_scaled_grouped_mm.h' 2025-07-24T03:55:17.9514920Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_cuda_dispatch.h' 2025-07-24T03:55:17.9515780Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_native.h' 2025-07-24T03:55:17.9516740Z adding 'torch/include/ATen/ops/_scaled_grouped_mm_ops.h' 2025-07-24T03:55:17.9517900Z adding 'torch/include/ATen/ops/_scaled_mm.h' 2025-07-24T03:55:17.9518900Z adding 'torch/include/ATen/ops/_scaled_mm_cpu_dispatch.h' 2025-07-24T03:55:17.9519850Z adding 'torch/include/ATen/ops/_scaled_mm_cuda_dispatch.h' 2025-07-24T03:55:17.9520710Z adding 'torch/include/ATen/ops/_scaled_mm_native.h' 2025-07-24T03:55:17.9521960Z adding 'torch/include/ATen/ops/_scaled_mm_ops.h' 2025-07-24T03:55:17.9523020Z adding 'torch/include/ATen/ops/_segment_reduce_backward.h' 2025-07-24T03:55:17.9524060Z adding 'torch/include/ATen/ops/_segment_reduce_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9524880Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9525920Z adding 'torch/include/ATen/ops/_segment_reduce_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9526830Z adding 'torch/include/ATen/ops/_segment_reduce_backward_native.h' 2025-07-24T03:55:17.9527910Z adding 'torch/include/ATen/ops/_segment_reduce_backward_ops.h' 2025-07-24T03:55:17.9528760Z adding 'torch/include/ATen/ops/_shape_as_tensor.h' 2025-07-24T03:55:17.9529970Z adding 'torch/include/ATen/ops/_shape_as_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9530790Z adding 'torch/include/ATen/ops/_shape_as_tensor_native.h' 2025-07-24T03:55:17.9531730Z adding 'torch/include/ATen/ops/_shape_as_tensor_ops.h' 2025-07-24T03:55:17.9533710Z adding 'torch/include/ATen/ops/_slow_conv2d_backward.h' 2025-07-24T03:55:17.9534650Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9535620Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9536570Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9537580Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_native.h' 2025-07-24T03:55:17.9538970Z adding 'torch/include/ATen/ops/_slow_conv2d_backward_ops.h' 2025-07-24T03:55:17.9540120Z adding 'torch/include/ATen/ops/_slow_conv2d_forward.h' 2025-07-24T03:55:17.9541160Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cpu_dispatch.h' 2025-07-24T03:55:17.9542050Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_cuda_dispatch.h' 2025-07-24T03:55:17.9543220Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_native.h' 2025-07-24T03:55:17.9544260Z adding 'torch/include/ATen/ops/_slow_conv2d_forward_ops.h' 2025-07-24T03:55:17.9545180Z adding 'torch/include/ATen/ops/_sobol_engine_draw.h' 2025-07-24T03:55:17.9546210Z adding 'torch/include/ATen/ops/_sobol_engine_draw_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9547240Z adding 'torch/include/ATen/ops/_sobol_engine_draw_native.h' 2025-07-24T03:55:17.9548260Z adding 'torch/include/ATen/ops/_sobol_engine_draw_ops.h' 2025-07-24T03:55:17.9549150Z adding 'torch/include/ATen/ops/_sobol_engine_ff.h' 2025-07-24T03:55:17.9550160Z adding 'torch/include/ATen/ops/_sobol_engine_ff_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9551100Z adding 'torch/include/ATen/ops/_sobol_engine_ff_native.h' 2025-07-24T03:55:17.9552080Z adding 'torch/include/ATen/ops/_sobol_engine_ff_ops.h' 2025-07-24T03:55:17.9552990Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state.h' 2025-07-24T03:55:17.9555110Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9555890Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_native.h' 2025-07-24T03:55:17.9556810Z adding 'torch/include/ATen/ops/_sobol_engine_initialize_state_ops.h' 2025-07-24T03:55:17.9557660Z adding 'torch/include/ATen/ops/_sobol_engine_scramble.h' 2025-07-24T03:55:17.9558630Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9559580Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_native.h' 2025-07-24T03:55:17.9560500Z adding 'torch/include/ATen/ops/_sobol_engine_scramble_ops.h' 2025-07-24T03:55:17.9561380Z adding 'torch/include/ATen/ops/_softmax.h' 2025-07-24T03:55:17.9562360Z adding 'torch/include/ATen/ops/_softmax_backward_data.h' 2025-07-24T03:55:17.9563570Z adding 'torch/include/ATen/ops/_softmax_backward_data_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9564500Z adding 'torch/include/ATen/ops/_softmax_backward_data_cpu_dispatch.h' 2025-07-24T03:55:17.9565370Z adding 'torch/include/ATen/ops/_softmax_backward_data_cuda_dispatch.h' 2025-07-24T03:55:17.9566210Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta.h' 2025-07-24T03:55:17.9567270Z adding 'torch/include/ATen/ops/_softmax_backward_data_meta_dispatch.h' 2025-07-24T03:55:17.9568150Z adding 'torch/include/ATen/ops/_softmax_backward_data_mps_dispatch.h' 2025-07-24T03:55:17.9569060Z adding 'torch/include/ATen/ops/_softmax_backward_data_native.h' 2025-07-24T03:55:17.9570060Z adding 'torch/include/ATen/ops/_softmax_backward_data_ops.h' 2025-07-24T03:55:17.9571250Z adding 'torch/include/ATen/ops/_softmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9572050Z adding 'torch/include/ATen/ops/_softmax_cpu_dispatch.h' 2025-07-24T03:55:17.9572890Z adding 'torch/include/ATen/ops/_softmax_cuda_dispatch.h' 2025-07-24T03:55:17.9573720Z adding 'torch/include/ATen/ops/_softmax_meta.h' 2025-07-24T03:55:17.9574810Z adding 'torch/include/ATen/ops/_softmax_meta_dispatch.h' 2025-07-24T03:55:17.9575680Z adding 'torch/include/ATen/ops/_softmax_mps_dispatch.h' 2025-07-24T03:55:17.9576610Z adding 'torch/include/ATen/ops/_softmax_native.h' 2025-07-24T03:55:17.9577560Z adding 'torch/include/ATen/ops/_softmax_ops.h' 2025-07-24T03:55:17.9578680Z adding 'torch/include/ATen/ops/_sparse_addmm.h' 2025-07-24T03:55:17.9579700Z adding 'torch/include/ATen/ops/_sparse_addmm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9580500Z adding 'torch/include/ATen/ops/_sparse_addmm_native.h' 2025-07-24T03:55:17.9581460Z adding 'torch/include/ATen/ops/_sparse_addmm_ops.h' 2025-07-24T03:55:17.9582560Z adding 'torch/include/ATen/ops/_sparse_broadcast_to.h' 2025-07-24T03:55:17.9583520Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy.h' 2025-07-24T03:55:17.9584570Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9585480Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9586430Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_native.h' 2025-07-24T03:55:17.9587400Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_copy_ops.h' 2025-07-24T03:55:17.9588270Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_native.h' 2025-07-24T03:55:17.9589220Z adding 'torch/include/ATen/ops/_sparse_broadcast_to_ops.h' 2025-07-24T03:55:17.9590410Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe.h' 2025-07-24T03:55:17.9591490Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9592390Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_native.h' 2025-07-24T03:55:17.9593330Z adding 'torch/include/ATen/ops/_sparse_bsc_tensor_unsafe_ops.h' 2025-07-24T03:55:17.9594500Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe.h' 2025-07-24T03:55:17.9595520Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9596300Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_native.h' 2025-07-24T03:55:17.9597260Z adding 'torch/include/ATen/ops/_sparse_bsr_tensor_unsafe_ops.h' 2025-07-24T03:55:17.9598650Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe.h' 2025-07-24T03:55:17.9599780Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9600590Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_native.h' 2025-07-24T03:55:17.9601560Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_unsafe_ops.h' 2025-07-24T03:55:17.9602740Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims.h' 2025-07-24T03:55:17.9603780Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9604600Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_native.h' 2025-07-24T03:55:17.9605640Z adding 'torch/include/ATen/ops/_sparse_compressed_tensor_with_dims_ops.h' 2025-07-24T03:55:17.9606860Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe.h' 2025-07-24T03:55:17.9607920Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9608730Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_native.h' 2025-07-24T03:55:17.9609670Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_unsafe_ops.h' 2025-07-24T03:55:17.9610900Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims.h' 2025-07-24T03:55:17.9612370Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors.h' 2025-07-24T03:55:17.9613500Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9614390Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_meta_dispatch.h' 2025-07-24T03:55:17.9615450Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_native.h' 2025-07-24T03:55:17.9616570Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_and_tensors_ops.h' 2025-07-24T03:55:17.9617560Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9618420Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_meta_dispatch.h' 2025-07-24T03:55:17.9619490Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_native.h' 2025-07-24T03:55:17.9620550Z adding 'torch/include/ATen/ops/_sparse_coo_tensor_with_dims_ops.h' 2025-07-24T03:55:17.9621550Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe.h' 2025-07-24T03:55:17.9622610Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9623620Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_native.h' 2025-07-24T03:55:17.9624630Z adding 'torch/include/ATen/ops/_sparse_csc_tensor_unsafe_ops.h' 2025-07-24T03:55:17.9625580Z adding 'torch/include/ATen/ops/_sparse_csr_prod.h' 2025-07-24T03:55:17.9626580Z adding 'torch/include/ATen/ops/_sparse_csr_prod_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9627600Z adding 'torch/include/ATen/ops/_sparse_csr_prod_native.h' 2025-07-24T03:55:17.9628640Z adding 'torch/include/ATen/ops/_sparse_csr_prod_ops.h' 2025-07-24T03:55:17.9629590Z adding 'torch/include/ATen/ops/_sparse_csr_sum.h' 2025-07-24T03:55:17.9630570Z adding 'torch/include/ATen/ops/_sparse_csr_sum_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9631550Z adding 'torch/include/ATen/ops/_sparse_csr_sum_native.h' 2025-07-24T03:55:17.9632550Z adding 'torch/include/ATen/ops/_sparse_csr_sum_ops.h' 2025-07-24T03:55:17.9633600Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe.h' 2025-07-24T03:55:17.9634610Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9635610Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_native.h' 2025-07-24T03:55:17.9636570Z adding 'torch/include/ATen/ops/_sparse_csr_tensor_unsafe_ops.h' 2025-07-24T03:55:17.9637490Z adding 'torch/include/ATen/ops/_sparse_log_softmax.h' 2025-07-24T03:55:17.9638460Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data.h' 2025-07-24T03:55:17.9639650Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9640480Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_native.h' 2025-07-24T03:55:17.9641450Z adding 'torch/include/ATen/ops/_sparse_log_softmax_backward_data_ops.h' 2025-07-24T03:55:17.9642380Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9643460Z adding 'torch/include/ATen/ops/_sparse_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9644270Z adding 'torch/include/ATen/ops/_sparse_log_softmax_native.h' 2025-07-24T03:55:17.9645340Z adding 'torch/include/ATen/ops/_sparse_log_softmax_ops.h' 2025-07-24T03:55:17.9646270Z adding 'torch/include/ATen/ops/_sparse_mask_projection.h' 2025-07-24T03:55:17.9647420Z adding 'torch/include/ATen/ops/_sparse_mask_projection_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9648220Z adding 'torch/include/ATen/ops/_sparse_mask_projection_native.h' 2025-07-24T03:55:17.9649190Z adding 'torch/include/ATen/ops/_sparse_mask_projection_ops.h' 2025-07-24T03:55:17.9650020Z adding 'torch/include/ATen/ops/_sparse_mm.h' 2025-07-24T03:55:17.9651170Z adding 'torch/include/ATen/ops/_sparse_mm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9651960Z adding 'torch/include/ATen/ops/_sparse_mm_native.h' 2025-07-24T03:55:17.9652910Z adding 'torch/include/ATen/ops/_sparse_mm_ops.h' 2025-07-24T03:55:17.9653800Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl.h' 2025-07-24T03:55:17.9654930Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward.h' 2025-07-24T03:55:17.9655860Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_native.h' 2025-07-24T03:55:17.9656800Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_backward_ops.h' 2025-07-24T03:55:17.9657620Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_native.h' 2025-07-24T03:55:17.9658710Z adding 'torch/include/ATen/ops/_sparse_mm_reduce_impl_ops.h' 2025-07-24T03:55:17.9659620Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm.h' 2025-07-24T03:55:17.9660580Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_cuda_dispatch.h' 2025-07-24T03:55:17.9661420Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_native.h' 2025-07-24T03:55:17.9662540Z adding 'torch/include/ATen/ops/_sparse_semi_structured_addmm_ops.h' 2025-07-24T03:55:17.9663410Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply.h' 2025-07-24T03:55:17.9664320Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_cuda_dispatch.h' 2025-07-24T03:55:17.9665140Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense.h' 2025-07-24T03:55:17.9666250Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_cuda_dispatch.h' 2025-07-24T03:55:17.9667070Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_native.h' 2025-07-24T03:55:17.9667980Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_dense_ops.h' 2025-07-24T03:55:17.9668790Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_native.h' 2025-07-24T03:55:17.9669880Z adding 'torch/include/ATen/ops/_sparse_semi_structured_apply_ops.h' 2025-07-24T03:55:17.9670790Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear.h' 2025-07-24T03:55:17.9671720Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_cuda_dispatch.h' 2025-07-24T03:55:17.9672590Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_native.h' 2025-07-24T03:55:17.9673680Z adding 'torch/include/ATen/ops/_sparse_semi_structured_linear_ops.h' 2025-07-24T03:55:17.9674590Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm.h' 2025-07-24T03:55:17.9675510Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_cuda_dispatch.h' 2025-07-24T03:55:17.9676370Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_native.h' 2025-07-24T03:55:17.9677450Z adding 'torch/include/ATen/ops/_sparse_semi_structured_mm_ops.h' 2025-07-24T03:55:17.9678410Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile.h' 2025-07-24T03:55:17.9679320Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_cuda_dispatch.h' 2025-07-24T03:55:17.9680140Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_native.h' 2025-07-24T03:55:17.9681230Z adding 'torch/include/ATen/ops/_sparse_semi_structured_tile_ops.h' 2025-07-24T03:55:17.9682180Z adding 'torch/include/ATen/ops/_sparse_softmax.h' 2025-07-24T03:55:17.9683130Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data.h' 2025-07-24T03:55:17.9684130Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9685110Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_native.h' 2025-07-24T03:55:17.9686140Z adding 'torch/include/ATen/ops/_sparse_softmax_backward_data_ops.h' 2025-07-24T03:55:17.9687060Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9687940Z adding 'torch/include/ATen/ops/_sparse_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9688940Z adding 'torch/include/ATen/ops/_sparse_softmax_native.h' 2025-07-24T03:55:17.9690020Z adding 'torch/include/ATen/ops/_sparse_softmax_ops.h' 2025-07-24T03:55:17.9690970Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul.h' 2025-07-24T03:55:17.9691960Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9692920Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_native.h' 2025-07-24T03:55:17.9693870Z adding 'torch/include/ATen/ops/_sparse_sparse_matmul_ops.h' 2025-07-24T03:55:17.9694820Z adding 'torch/include/ATen/ops/_sparse_sum.h' 2025-07-24T03:55:17.9696130Z adding 'torch/include/ATen/ops/_sparse_sum_backward.h' 2025-07-24T03:55:17.9697320Z adding 'torch/include/ATen/ops/_sparse_sum_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9698200Z adding 'torch/include/ATen/ops/_sparse_sum_backward_native.h' 2025-07-24T03:55:17.9699180Z adding 'torch/include/ATen/ops/_sparse_sum_backward_ops.h' 2025-07-24T03:55:17.9700130Z adding 'torch/include/ATen/ops/_sparse_sum_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9701180Z adding 'torch/include/ATen/ops/_sparse_sum_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9701980Z adding 'torch/include/ATen/ops/_sparse_sum_native.h' 2025-07-24T03:55:17.9703040Z adding 'torch/include/ATen/ops/_sparse_sum_ops.h' 2025-07-24T03:55:17.9703980Z adding 'torch/include/ATen/ops/_spdiags.h' 2025-07-24T03:55:17.9705170Z adding 'torch/include/ATen/ops/_spdiags_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9706050Z adding 'torch/include/ATen/ops/_spdiags_cpu_dispatch.h' 2025-07-24T03:55:17.9706880Z adding 'torch/include/ATen/ops/_spdiags_native.h' 2025-07-24T03:55:17.9707870Z adding 'torch/include/ATen/ops/_spdiags_ops.h' 2025-07-24T03:55:17.9708900Z adding 'torch/include/ATen/ops/_spsolve.h' 2025-07-24T03:55:17.9709740Z adding 'torch/include/ATen/ops/_spsolve_native.h' 2025-07-24T03:55:17.9710640Z adding 'torch/include/ATen/ops/_spsolve_ops.h' 2025-07-24T03:55:17.9711530Z adding 'torch/include/ATen/ops/_stack.h' 2025-07-24T03:55:17.9712730Z adding 'torch/include/ATen/ops/_stack_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9713620Z adding 'torch/include/ATen/ops/_stack_cpu_dispatch.h' 2025-07-24T03:55:17.9714490Z adding 'torch/include/ATen/ops/_stack_native.h' 2025-07-24T03:55:17.9715420Z adding 'torch/include/ATen/ops/_stack_ops.h' 2025-07-24T03:55:17.9716510Z adding 'torch/include/ATen/ops/_standard_gamma.h' 2025-07-24T03:55:17.9717490Z adding 'torch/include/ATen/ops/_standard_gamma_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9718270Z adding 'torch/include/ATen/ops/_standard_gamma_cpu_dispatch.h' 2025-07-24T03:55:17.9719100Z adding 'torch/include/ATen/ops/_standard_gamma_cuda_dispatch.h' 2025-07-24T03:55:17.9720150Z adding 'torch/include/ATen/ops/_standard_gamma_grad.h' 2025-07-24T03:55:17.9721120Z adding 'torch/include/ATen/ops/_standard_gamma_grad_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9721920Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cpu_dispatch.h' 2025-07-24T03:55:17.9722740Z adding 'torch/include/ATen/ops/_standard_gamma_grad_cuda_dispatch.h' 2025-07-24T03:55:17.9723740Z adding 'torch/include/ATen/ops/_standard_gamma_grad_native.h' 2025-07-24T03:55:17.9724670Z adding 'torch/include/ATen/ops/_standard_gamma_grad_ops.h' 2025-07-24T03:55:17.9725500Z adding 'torch/include/ATen/ops/_standard_gamma_native.h' 2025-07-24T03:55:17.9726470Z adding 'torch/include/ATen/ops/_standard_gamma_ops.h' 2025-07-24T03:55:17.9727540Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults.h' 2025-07-24T03:55:17.9728520Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9729320Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_native.h' 2025-07-24T03:55:17.9730260Z adding 'torch/include/ATen/ops/_test_ambiguous_defaults_ops.h' 2025-07-24T03:55:17.9731340Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch.h' 2025-07-24T03:55:17.9732350Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9733190Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9733970Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_native.h' 2025-07-24T03:55:17.9735140Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_ops.h' 2025-07-24T03:55:17.9736000Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view.h' 2025-07-24T03:55:17.9736970Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9737780Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy.h' 2025-07-24T03:55:17.9738940Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9739840Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9740560Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_native.h' 2025-07-24T03:55:17.9741500Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_copy_ops.h' 2025-07-24T03:55:17.9742500Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_native.h' 2025-07-24T03:55:17.9743400Z adding 'torch/include/ATen/ops/_test_autograd_multiple_dispatch_view_ops.h' 2025-07-24T03:55:17.9744190Z adding 'torch/include/ATen/ops/_test_check_tensor.h' 2025-07-24T03:55:17.9745130Z adding 'torch/include/ATen/ops/_test_check_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9746070Z adding 'torch/include/ATen/ops/_test_check_tensor_native.h' 2025-07-24T03:55:17.9746970Z adding 'torch/include/ATen/ops/_test_check_tensor_ops.h' 2025-07-24T03:55:17.9747850Z adding 'torch/include/ATen/ops/_test_functorch_fallback.h' 2025-07-24T03:55:17.9748820Z adding 'torch/include/ATen/ops/_test_functorch_fallback_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9749800Z adding 'torch/include/ATen/ops/_test_functorch_fallback_cpu_dispatch.h' 2025-07-24T03:55:17.9750620Z adding 'torch/include/ATen/ops/_test_functorch_fallback_native.h' 2025-07-24T03:55:17.9751540Z adding 'torch/include/ATen/ops/_test_functorch_fallback_ops.h' 2025-07-24T03:55:17.9752470Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist.h' 2025-07-24T03:55:17.9753650Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9754420Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_cpu_dispatch.h' 2025-07-24T03:55:17.9755250Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_native.h' 2025-07-24T03:55:17.9756180Z adding 'torch/include/ATen/ops/_test_optional_filled_intlist_ops.h' 2025-07-24T03:55:17.9757230Z adding 'torch/include/ATen/ops/_test_optional_floatlist.h' 2025-07-24T03:55:17.9758220Z adding 'torch/include/ATen/ops/_test_optional_floatlist_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9759020Z adding 'torch/include/ATen/ops/_test_optional_floatlist_cpu_dispatch.h' 2025-07-24T03:55:17.9759830Z adding 'torch/include/ATen/ops/_test_optional_floatlist_native.h' 2025-07-24T03:55:17.9760950Z adding 'torch/include/ATen/ops/_test_optional_floatlist_ops.h' 2025-07-24T03:55:17.9761860Z adding 'torch/include/ATen/ops/_test_optional_intlist.h' 2025-07-24T03:55:17.9762820Z adding 'torch/include/ATen/ops/_test_optional_intlist_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9763580Z adding 'torch/include/ATen/ops/_test_optional_intlist_cpu_dispatch.h' 2025-07-24T03:55:17.9764590Z adding 'torch/include/ATen/ops/_test_optional_intlist_native.h' 2025-07-24T03:55:17.9768600Z adding 'torch/include/ATen/ops/_test_optional_intlist_ops.h' 2025-07-24T03:55:17.9768830Z adding 'torch/include/ATen/ops/_test_parallel_materialize.h' 2025-07-24T03:55:17.9769050Z adding 'torch/include/ATen/ops/_test_parallel_materialize_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9769930Z adding 'torch/include/ATen/ops/_test_parallel_materialize_native.h' 2025-07-24T03:55:17.9770120Z adding 'torch/include/ATen/ops/_test_parallel_materialize_ops.h' 2025-07-24T03:55:17.9770250Z adding 'torch/include/ATen/ops/_test_serialization_subcmul.h' 2025-07-24T03:55:17.9770940Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9771890Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_native.h' 2025-07-24T03:55:17.9772800Z adding 'torch/include/ATen/ops/_test_serialization_subcmul_ops.h' 2025-07-24T03:55:17.9773610Z adding 'torch/include/ATen/ops/_test_string_default.h' 2025-07-24T03:55:17.9774590Z adding 'torch/include/ATen/ops/_test_string_default_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9775610Z adding 'torch/include/ATen/ops/_test_string_default_native.h' 2025-07-24T03:55:17.9776410Z adding 'torch/include/ATen/ops/_test_string_default_ops.h' 2025-07-24T03:55:17.9777270Z adding 'torch/include/ATen/ops/_test_warn_in_autograd.h' 2025-07-24T03:55:17.9778240Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9779180Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_native.h' 2025-07-24T03:55:17.9780100Z adding 'torch/include/ATen/ops/_test_warn_in_autograd_ops.h' 2025-07-24T03:55:17.9781060Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward.h' 2025-07-24T03:55:17.9782040Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9783020Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_native.h' 2025-07-24T03:55:17.9783980Z adding 'torch/include/ATen/ops/_thnn_differentiable_gru_cell_backward_ops.h' 2025-07-24T03:55:17.9784880Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward.h' 2025-07-24T03:55:17.9785890Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9786840Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_native.h' 2025-07-24T03:55:17.9787820Z adding 'torch/include/ATen/ops/_thnn_differentiable_lstm_cell_backward_ops.h' 2025-07-24T03:55:17.9788730Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell.h' 2025-07-24T03:55:17.9789750Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward.h' 2025-07-24T03:55:17.9790970Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9791780Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9792620Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_native.h' 2025-07-24T03:55:17.9793680Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_backward_ops.h' 2025-07-24T03:55:17.9794840Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9795670Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_cuda_dispatch.h' 2025-07-24T03:55:17.9796480Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_native.h' 2025-07-24T03:55:17.9797530Z adding 'torch/include/ATen/ops/_thnn_fused_gru_cell_ops.h' 2025-07-24T03:55:17.9798720Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell.h' 2025-07-24T03:55:17.9799680Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward.h' 2025-07-24T03:55:17.9800680Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9801550Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl.h' 2025-07-24T03:55:17.9802770Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9803590Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_cuda_dispatch.h' 2025-07-24T03:55:17.9804440Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_native.h' 2025-07-24T03:55:17.9805500Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_impl_ops.h' 2025-07-24T03:55:17.9806520Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_native.h' 2025-07-24T03:55:17.9807460Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_backward_ops.h' 2025-07-24T03:55:17.9808440Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9809250Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_cuda_dispatch.h' 2025-07-24T03:55:17.9810280Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_native.h' 2025-07-24T03:55:17.9811320Z adding 'torch/include/ATen/ops/_thnn_fused_lstm_cell_ops.h' 2025-07-24T03:55:17.9812300Z adding 'torch/include/ATen/ops/_to_copy.h' 2025-07-24T03:55:17.9813350Z adding 'torch/include/ATen/ops/_to_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9814330Z adding 'torch/include/ATen/ops/_to_copy_native.h' 2025-07-24T03:55:17.9815350Z adding 'torch/include/ATen/ops/_to_copy_ops.h' 2025-07-24T03:55:17.9816230Z adding 'torch/include/ATen/ops/_to_cpu.h' 2025-07-24T03:55:17.9817210Z adding 'torch/include/ATen/ops/_to_cpu_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9818140Z adding 'torch/include/ATen/ops/_to_cpu_native.h' 2025-07-24T03:55:17.9819060Z adding 'torch/include/ATen/ops/_to_cpu_ops.h' 2025-07-24T03:55:17.9819950Z adding 'torch/include/ATen/ops/_to_dense.h' 2025-07-24T03:55:17.9820950Z adding 'torch/include/ATen/ops/_to_dense_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9821930Z adding 'torch/include/ATen/ops/_to_dense_native.h' 2025-07-24T03:55:17.9822890Z adding 'torch/include/ATen/ops/_to_dense_ops.h' 2025-07-24T03:55:17.9823890Z adding 'torch/include/ATen/ops/_to_sparse.h' 2025-07-24T03:55:17.9824780Z adding 'torch/include/ATen/ops/_to_sparse_bsc.h' 2025-07-24T03:55:17.9825940Z adding 'torch/include/ATen/ops/_to_sparse_bsc_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9826770Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cpu_dispatch.h' 2025-07-24T03:55:17.9827610Z adding 'torch/include/ATen/ops/_to_sparse_bsc_cuda_dispatch.h' 2025-07-24T03:55:17.9828450Z adding 'torch/include/ATen/ops/_to_sparse_bsc_native.h' 2025-07-24T03:55:17.9829720Z adding 'torch/include/ATen/ops/_to_sparse_bsc_ops.h' 2025-07-24T03:55:17.9830700Z adding 'torch/include/ATen/ops/_to_sparse_bsr.h' 2025-07-24T03:55:17.9831640Z adding 'torch/include/ATen/ops/_to_sparse_bsr_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9832440Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cpu_dispatch.h' 2025-07-24T03:55:17.9833420Z adding 'torch/include/ATen/ops/_to_sparse_bsr_cuda_dispatch.h' 2025-07-24T03:55:17.9834260Z adding 'torch/include/ATen/ops/_to_sparse_bsr_native.h' 2025-07-24T03:55:17.9835210Z adding 'torch/include/ATen/ops/_to_sparse_bsr_ops.h' 2025-07-24T03:55:17.9836180Z adding 'torch/include/ATen/ops/_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9837180Z adding 'torch/include/ATen/ops/_to_sparse_cpu_dispatch.h' 2025-07-24T03:55:17.9838040Z adding 'torch/include/ATen/ops/_to_sparse_csc.h' 2025-07-24T03:55:17.9838990Z adding 'torch/include/ATen/ops/_to_sparse_csc_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9839770Z adding 'torch/include/ATen/ops/_to_sparse_csc_cpu_dispatch.h' 2025-07-24T03:55:17.9840770Z adding 'torch/include/ATen/ops/_to_sparse_csc_cuda_dispatch.h' 2025-07-24T03:55:17.9841880Z adding 'torch/include/ATen/ops/_to_sparse_csc_native.h' 2025-07-24T03:55:17.9842630Z adding 'torch/include/ATen/ops/_to_sparse_csc_ops.h' 2025-07-24T03:55:17.9843460Z adding 'torch/include/ATen/ops/_to_sparse_csr.h' 2025-07-24T03:55:17.9844600Z adding 'torch/include/ATen/ops/_to_sparse_csr_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9845440Z adding 'torch/include/ATen/ops/_to_sparse_csr_cpu_dispatch.h' 2025-07-24T03:55:17.9846220Z adding 'torch/include/ATen/ops/_to_sparse_csr_cuda_dispatch.h' 2025-07-24T03:55:17.9847040Z adding 'torch/include/ATen/ops/_to_sparse_csr_native.h' 2025-07-24T03:55:17.9848150Z adding 'torch/include/ATen/ops/_to_sparse_csr_ops.h' 2025-07-24T03:55:17.9849050Z adding 'torch/include/ATen/ops/_to_sparse_cuda_dispatch.h' 2025-07-24T03:55:17.9849880Z adding 'torch/include/ATen/ops/_to_sparse_mps_dispatch.h' 2025-07-24T03:55:17.9850770Z adding 'torch/include/ATen/ops/_to_sparse_native.h' 2025-07-24T03:55:17.9852010Z adding 'torch/include/ATen/ops/_to_sparse_ops.h' 2025-07-24T03:55:17.9852910Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured.h' 2025-07-24T03:55:17.9853810Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_cuda_dispatch.h' 2025-07-24T03:55:17.9854620Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_native.h' 2025-07-24T03:55:17.9855680Z adding 'torch/include/ATen/ops/_to_sparse_semi_structured_ops.h' 2025-07-24T03:55:17.9856630Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv.h' 2025-07-24T03:55:17.9857620Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9858410Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cpu_dispatch.h' 2025-07-24T03:55:17.9859420Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_cuda_dispatch.h' 2025-07-24T03:55:17.9860260Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_native.h' 2025-07-24T03:55:17.9861250Z adding 'torch/include/ATen/ops/_transform_bias_rescale_qkv_ops.h' 2025-07-24T03:55:17.9862340Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd.h' 2025-07-24T03:55:17.9863600Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9864470Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cpu_dispatch.h' 2025-07-24T03:55:17.9865340Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_cuda_dispatch.h' 2025-07-24T03:55:17.9866250Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_native.h' 2025-07-24T03:55:17.9867600Z adding 'torch/include/ATen/ops/_transformer_encoder_layer_fwd_ops.h' 2025-07-24T03:55:17.9868580Z adding 'torch/include/ATen/ops/_trilinear.h' 2025-07-24T03:55:17.9869600Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9870510Z adding 'torch/include/ATen/ops/_trilinear_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9871420Z adding 'torch/include/ATen/ops/_trilinear_native.h' 2025-07-24T03:55:17.9872450Z adding 'torch/include/ATen/ops/_trilinear_ops.h' 2025-07-24T03:55:17.9873510Z adding 'torch/include/ATen/ops/_triton_multi_head_attention.h' 2025-07-24T03:55:17.9874510Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9875530Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_cuda_dispatch.h' 2025-07-24T03:55:17.9876390Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_native.h' 2025-07-24T03:55:17.9877400Z adding 'torch/include/ATen/ops/_triton_multi_head_attention_ops.h' 2025-07-24T03:55:17.9878330Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention.h' 2025-07-24T03:55:17.9879480Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9880290Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_cuda_dispatch.h' 2025-07-24T03:55:17.9881110Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_native.h' 2025-07-24T03:55:17.9882070Z adding 'torch/include/ATen/ops/_triton_scaled_dot_attention_ops.h' 2025-07-24T03:55:17.9883100Z adding 'torch/include/ATen/ops/_unique.h' 2025-07-24T03:55:17.9884080Z adding 'torch/include/ATen/ops/_unique2.h' 2025-07-24T03:55:17.9885060Z adding 'torch/include/ATen/ops/_unique2_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9885880Z adding 'torch/include/ATen/ops/_unique2_cpu_dispatch.h' 2025-07-24T03:55:17.9886850Z adding 'torch/include/ATen/ops/_unique2_cuda_dispatch.h' 2025-07-24T03:55:17.9887670Z adding 'torch/include/ATen/ops/_unique2_mps_dispatch.h' 2025-07-24T03:55:17.9888540Z adding 'torch/include/ATen/ops/_unique2_native.h' 2025-07-24T03:55:17.9889510Z adding 'torch/include/ATen/ops/_unique2_ops.h' 2025-07-24T03:55:17.9890670Z adding 'torch/include/ATen/ops/_unique_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9891490Z adding 'torch/include/ATen/ops/_unique_cpu_dispatch.h' 2025-07-24T03:55:17.9892290Z adding 'torch/include/ATen/ops/_unique_cuda_dispatch.h' 2025-07-24T03:55:17.9893100Z adding 'torch/include/ATen/ops/_unique_native.h' 2025-07-24T03:55:17.9894210Z adding 'torch/include/ATen/ops/_unique_ops.h' 2025-07-24T03:55:17.9895090Z adding 'torch/include/ATen/ops/_unpack_dual.h' 2025-07-24T03:55:17.9896040Z adding 'torch/include/ATen/ops/_unpack_dual_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9896770Z adding 'torch/include/ATen/ops/_unpack_dual_native.h' 2025-07-24T03:55:17.9897850Z adding 'torch/include/ATen/ops/_unpack_dual_ops.h' 2025-07-24T03:55:17.9898700Z adding 'torch/include/ATen/ops/_unsafe_index.h' 2025-07-24T03:55:17.9899650Z adding 'torch/include/ATen/ops/_unsafe_index_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9900410Z adding 'torch/include/ATen/ops/_unsafe_index_native.h' 2025-07-24T03:55:17.9901470Z adding 'torch/include/ATen/ops/_unsafe_index_ops.h' 2025-07-24T03:55:17.9902360Z adding 'torch/include/ATen/ops/_unsafe_index_put.h' 2025-07-24T03:55:17.9903300Z adding 'torch/include/ATen/ops/_unsafe_index_put_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9904060Z adding 'torch/include/ATen/ops/_unsafe_index_put_native.h' 2025-07-24T03:55:17.9905140Z adding 'torch/include/ATen/ops/_unsafe_index_put_ops.h' 2025-07-24T03:55:17.9906040Z adding 'torch/include/ATen/ops/_unsafe_masked_index.h' 2025-07-24T03:55:17.9906990Z adding 'torch/include/ATen/ops/_unsafe_masked_index_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9907750Z adding 'torch/include/ATen/ops/_unsafe_masked_index_native.h' 2025-07-24T03:55:17.9908860Z adding 'torch/include/ATen/ops/_unsafe_masked_index_ops.h' 2025-07-24T03:55:17.9909780Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate.h' 2025-07-24T03:55:17.9910770Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9911530Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_native.h' 2025-07-24T03:55:17.9912640Z adding 'torch/include/ATen/ops/_unsafe_masked_index_put_accumulate_ops.h' 2025-07-24T03:55:17.9913990Z adding 'torch/include/ATen/ops/_unsafe_view.h' 2025-07-24T03:55:17.9915020Z adding 'torch/include/ATen/ops/_unsafe_view_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:17.9915770Z adding 'torch/include/ATen/ops/_unsafe_view_native.h' 2025-07-24T03:55:17.9916870Z adding 'torch/include/ATen/ops/_unsafe_view_ops.h' 2025-07-24T03:55:17.9918150Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa.h' 2025-07-24T03:55:17.9919430Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward.h' 2025-07-24T03:55:17.9920560Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9921600Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9922540Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9923390Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta.h' 2025-07-24T03:55:17.9924310Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_meta_dispatch.h' 2025-07-24T03:55:17.9925370Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_native.h' 2025-07-24T03:55:17.9926380Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_backward_ops.h' 2025-07-24T03:55:17.9927410Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9928250Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9929320Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cpu_dispatch.h' 2025-07-24T03:55:17.9930250Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_cuda_dispatch.h' 2025-07-24T03:55:17.9931080Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta.h' 2025-07-24T03:55:17.9931970Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_meta_dispatch.h' 2025-07-24T03:55:17.9933010Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_mps_dispatch.h' 2025-07-24T03:55:17.9933920Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_native.h' 2025-07-24T03:55:17.9934950Z adding 'torch/include/ATen/ops/_upsample_bicubic2d_aa_ops.h' 2025-07-24T03:55:17.9936220Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa.h' 2025-07-24T03:55:17.9937700Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward.h' 2025-07-24T03:55:17.9938810Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9939630Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9940540Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9941600Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta.h' 2025-07-24T03:55:17.9942550Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_meta_dispatch.h' 2025-07-24T03:55:17.9943410Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_native.h' 2025-07-24T03:55:17.9944420Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_backward_ops.h' 2025-07-24T03:55:17.9945590Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9946490Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9947360Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cpu_dispatch.h' 2025-07-24T03:55:17.9948240Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_cuda_dispatch.h' 2025-07-24T03:55:17.9949260Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta.h' 2025-07-24T03:55:17.9950170Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_meta_dispatch.h' 2025-07-24T03:55:17.9951020Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_mps_dispatch.h' 2025-07-24T03:55:17.9951920Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_native.h' 2025-07-24T03:55:17.9953180Z adding 'torch/include/ATen/ops/_upsample_bilinear2d_aa_ops.h' 2025-07-24T03:55:17.9954450Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d.h' 2025-07-24T03:55:17.9955620Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward.h' 2025-07-24T03:55:17.9956700Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9957690Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9958590Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9959460Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta.h' 2025-07-24T03:55:17.9960380Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_meta_dispatch.h' 2025-07-24T03:55:17.9961640Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_mps_dispatch.h' 2025-07-24T03:55:17.9962330Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_native.h' 2025-07-24T03:55:17.9963310Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_backward_ops.h' 2025-07-24T03:55:17.9964330Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9965320Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9966210Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cpu_dispatch.h' 2025-07-24T03:55:17.9967060Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_cuda_dispatch.h' 2025-07-24T03:55:17.9967920Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta.h' 2025-07-24T03:55:17.9968980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_meta_dispatch.h' 2025-07-24T03:55:17.9969850Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_mps_dispatch.h' 2025-07-24T03:55:17.9970730Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_native.h' 2025-07-24T03:55:17.9971750Z adding 'torch/include/ATen/ops/_upsample_nearest_exact1d_ops.h' 2025-07-24T03:55:17.9973350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d.h' 2025-07-24T03:55:17.9974520Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward.h' 2025-07-24T03:55:17.9975610Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9976420Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9977490Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9978360Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta.h' 2025-07-24T03:55:17.9979270Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_meta_dispatch.h' 2025-07-24T03:55:17.9980170Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_mps_dispatch.h' 2025-07-24T03:55:17.9981230Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_native.h' 2025-07-24T03:55:17.9982240Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_backward_ops.h' 2025-07-24T03:55:17.9983220Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9984050Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:17.9985080Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cpu_dispatch.h' 2025-07-24T03:55:17.9985980Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_cuda_dispatch.h' 2025-07-24T03:55:17.9986810Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta.h' 2025-07-24T03:55:17.9987710Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_meta_dispatch.h' 2025-07-24T03:55:17.9988750Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_mps_dispatch.h' 2025-07-24T03:55:17.9989680Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_native.h' 2025-07-24T03:55:17.9990700Z adding 'torch/include/ATen/ops/_upsample_nearest_exact2d_ops.h' 2025-07-24T03:55:17.9991990Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d.h' 2025-07-24T03:55:17.9993590Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward.h' 2025-07-24T03:55:17.9994550Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:17.9995440Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cpu_dispatch.h' 2025-07-24T03:55:17.9996320Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_cuda_dispatch.h' 2025-07-24T03:55:17.9997350Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta.h' 2025-07-24T03:55:17.9998290Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_meta_dispatch.h' 2025-07-24T03:55:17.9999180Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_mps_dispatch.h' 2025-07-24T03:55:18.0000090Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_native.h' 2025-07-24T03:55:18.0001280Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_backward_ops.h' 2025-07-24T03:55:18.0002280Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0003110Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0004010Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cpu_dispatch.h' 2025-07-24T03:55:18.0005050Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_cuda_dispatch.h' 2025-07-24T03:55:18.0005920Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta.h' 2025-07-24T03:55:18.0006810Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_meta_dispatch.h' 2025-07-24T03:55:18.0007670Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_mps_dispatch.h' 2025-07-24T03:55:18.0008760Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_native.h' 2025-07-24T03:55:18.0009790Z adding 'torch/include/ATen/ops/_upsample_nearest_exact3d_ops.h' 2025-07-24T03:55:18.0010690Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss.h' 2025-07-24T03:55:18.0011600Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_cuda_dispatch.h' 2025-07-24T03:55:18.0012620Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_native.h' 2025-07-24T03:55:18.0013610Z adding 'torch/include/ATen/ops/_use_cudnn_ctc_loss_ops.h' 2025-07-24T03:55:18.0014470Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight.h' 2025-07-24T03:55:18.0015430Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0016370Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_native.h' 2025-07-24T03:55:18.0017260Z adding 'torch/include/ATen/ops/_use_cudnn_rnn_flatten_weight_ops.h' 2025-07-24T03:55:18.0018150Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices.h' 2025-07-24T03:55:18.0019030Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cpu_dispatch.h' 2025-07-24T03:55:18.0020060Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_cuda_dispatch.h' 2025-07-24T03:55:18.0020890Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_native.h' 2025-07-24T03:55:18.0021830Z adding 'torch/include/ATen/ops/_validate_compressed_sparse_indices_ops.h' 2025-07-24T03:55:18.0022690Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args.h' 2025-07-24T03:55:18.0023840Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0024620Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_native.h' 2025-07-24T03:55:18.0025540Z adding 'torch/include/ATen/ops/_validate_sparse_bsc_tensor_args_ops.h' 2025-07-24T03:55:18.0026410Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args.h' 2025-07-24T03:55:18.0027550Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0028320Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_native.h' 2025-07-24T03:55:18.0029240Z adding 'torch/include/ATen/ops/_validate_sparse_bsr_tensor_args_ops.h' 2025-07-24T03:55:18.0030120Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args.h' 2025-07-24T03:55:18.0031290Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0032070Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_native.h' 2025-07-24T03:55:18.0032980Z adding 'torch/include/ATen/ops/_validate_sparse_compressed_tensor_args_ops.h' 2025-07-24T03:55:18.0033850Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args.h' 2025-07-24T03:55:18.0035020Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0035780Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_native.h' 2025-07-24T03:55:18.0036690Z adding 'torch/include/ATen/ops/_validate_sparse_coo_tensor_args_ops.h' 2025-07-24T03:55:18.0037550Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args.h' 2025-07-24T03:55:18.0038690Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0039450Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_native.h' 2025-07-24T03:55:18.0040370Z adding 'torch/include/ATen/ops/_validate_sparse_csc_tensor_args_ops.h' 2025-07-24T03:55:18.0041200Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args.h' 2025-07-24T03:55:18.0042320Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0043080Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_native.h' 2025-07-24T03:55:18.0043960Z adding 'torch/include/ATen/ops/_validate_sparse_csr_tensor_args_ops.h' 2025-07-24T03:55:18.0044730Z adding 'torch/include/ATen/ops/_values.h' 2025-07-24T03:55:18.0045800Z adding 'torch/include/ATen/ops/_values_copy.h' 2025-07-24T03:55:18.0046740Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0047640Z adding 'torch/include/ATen/ops/_values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0048370Z adding 'torch/include/ATen/ops/_values_copy_native.h' 2025-07-24T03:55:18.0049460Z adding 'torch/include/ATen/ops/_values_copy_ops.h' 2025-07-24T03:55:18.0050280Z adding 'torch/include/ATen/ops/_values_native.h' 2025-07-24T03:55:18.0051150Z adding 'torch/include/ATen/ops/_values_ops.h' 2025-07-24T03:55:18.0051970Z adding 'torch/include/ATen/ops/_version.h' 2025-07-24T03:55:18.0053090Z adding 'torch/include/ATen/ops/_version_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0053850Z adding 'torch/include/ATen/ops/_version_native.h' 2025-07-24T03:55:18.0054720Z adding 'torch/include/ATen/ops/_version_ops.h' 2025-07-24T03:55:18.0055620Z adding 'torch/include/ATen/ops/_weight_int4pack_mm.h' 2025-07-24T03:55:18.0056710Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_cuda_dispatch.h' 2025-07-24T03:55:18.0057570Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu.h' 2025-07-24T03:55:18.0058450Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_cpu_dispatch.h' 2025-07-24T03:55:18.0059270Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_native.h' 2025-07-24T03:55:18.0060340Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_for_cpu_ops.h' 2025-07-24T03:55:18.0061220Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_mps_dispatch.h' 2025-07-24T03:55:18.0062030Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_native.h' 2025-07-24T03:55:18.0062980Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_ops.h' 2025-07-24T03:55:18.0064380Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros.h' 2025-07-24T03:55:18.0064900Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_native.h' 2025-07-24T03:55:18.0065800Z adding 'torch/include/ATen/ops/_weight_int4pack_mm_with_scales_and_zeros_ops.h' 2025-07-24T03:55:18.0066600Z adding 'torch/include/ATen/ops/_weight_int8pack_mm.h' 2025-07-24T03:55:18.0067720Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_cpu_dispatch.h' 2025-07-24T03:55:18.0068490Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_mps_dispatch.h' 2025-07-24T03:55:18.0069330Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_native.h' 2025-07-24T03:55:18.0070200Z adding 'torch/include/ATen/ops/_weight_int8pack_mm_ops.h' 2025-07-24T03:55:18.0071190Z adding 'torch/include/ATen/ops/_weight_norm.h' 2025-07-24T03:55:18.0072180Z adding 'torch/include/ATen/ops/_weight_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0073010Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward.h' 2025-07-24T03:55:18.0074000Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0074940Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_native.h' 2025-07-24T03:55:18.0075860Z adding 'torch/include/ATen/ops/_weight_norm_differentiable_backward_ops.h' 2025-07-24T03:55:18.0076740Z adding 'torch/include/ATen/ops/_weight_norm_interface.h' 2025-07-24T03:55:18.0077720Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward.h' 2025-07-24T03:55:18.0078900Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0079740Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cpu_dispatch.h' 2025-07-24T03:55:18.0080530Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0081340Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_mps_dispatch.h' 2025-07-24T03:55:18.0082370Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_native.h' 2025-07-24T03:55:18.0083380Z adding 'torch/include/ATen/ops/_weight_norm_interface_backward_ops.h' 2025-07-24T03:55:18.0084330Z adding 'torch/include/ATen/ops/_weight_norm_interface_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0085120Z adding 'torch/include/ATen/ops/_weight_norm_interface_cpu_dispatch.h' 2025-07-24T03:55:18.0086130Z adding 'torch/include/ATen/ops/_weight_norm_interface_cuda_dispatch.h' 2025-07-24T03:55:18.0086930Z adding 'torch/include/ATen/ops/_weight_norm_interface_mps_dispatch.h' 2025-07-24T03:55:18.0087760Z adding 'torch/include/ATen/ops/_weight_norm_interface_native.h' 2025-07-24T03:55:18.0088730Z adding 'torch/include/ATen/ops/_weight_norm_interface_ops.h' 2025-07-24T03:55:18.0089730Z adding 'torch/include/ATen/ops/_weight_norm_native.h' 2025-07-24T03:55:18.0090620Z adding 'torch/include/ATen/ops/_weight_norm_ops.h' 2025-07-24T03:55:18.0091500Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack.h' 2025-07-24T03:55:18.0092460Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0093410Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_native.h' 2025-07-24T03:55:18.0094310Z adding 'torch/include/ATen/ops/_wrapped_linear_prepack_ops.h' 2025-07-24T03:55:18.0095240Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked.h' 2025-07-24T03:55:18.0096220Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0097170Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_native.h' 2025-07-24T03:55:18.0098110Z adding 'torch/include/ATen/ops/_wrapped_quantized_linear_prepacked_ops.h' 2025-07-24T03:55:18.0098930Z adding 'torch/include/ATen/ops/abs.h' 2025-07-24T03:55:18.0099880Z adding 'torch/include/ATen/ops/abs_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0100850Z adding 'torch/include/ATen/ops/abs_cpu_dispatch.h' 2025-07-24T03:55:18.0101660Z adding 'torch/include/ATen/ops/abs_cuda_dispatch.h' 2025-07-24T03:55:18.0102460Z adding 'torch/include/ATen/ops/abs_mps_dispatch.h' 2025-07-24T03:55:18.0103320Z adding 'torch/include/ATen/ops/abs_native.h' 2025-07-24T03:55:18.0104450Z adding 'torch/include/ATen/ops/abs_ops.h' 2025-07-24T03:55:18.0105350Z adding 'torch/include/ATen/ops/absolute.h' 2025-07-24T03:55:18.0106330Z adding 'torch/include/ATen/ops/absolute_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0107050Z adding 'torch/include/ATen/ops/absolute_native.h' 2025-07-24T03:55:18.0108180Z adding 'torch/include/ATen/ops/absolute_ops.h' 2025-07-24T03:55:18.0109070Z adding 'torch/include/ATen/ops/acos.h' 2025-07-24T03:55:18.0110060Z adding 'torch/include/ATen/ops/acos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0110800Z adding 'torch/include/ATen/ops/acos_cpu_dispatch.h' 2025-07-24T03:55:18.0111780Z adding 'torch/include/ATen/ops/acos_cuda_dispatch.h' 2025-07-24T03:55:18.0112610Z adding 'torch/include/ATen/ops/acos_meta.h' 2025-07-24T03:55:18.0113440Z adding 'torch/include/ATen/ops/acos_meta_dispatch.h' 2025-07-24T03:55:18.0114300Z adding 'torch/include/ATen/ops/acos_mps_dispatch.h' 2025-07-24T03:55:18.0115330Z adding 'torch/include/ATen/ops/acos_native.h' 2025-07-24T03:55:18.0116280Z adding 'torch/include/ATen/ops/acos_ops.h' 2025-07-24T03:55:18.0117150Z adding 'torch/include/ATen/ops/acosh.h' 2025-07-24T03:55:18.0118150Z adding 'torch/include/ATen/ops/acosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0119030Z adding 'torch/include/ATen/ops/acosh_cpu_dispatch.h' 2025-07-24T03:55:18.0119900Z adding 'torch/include/ATen/ops/acosh_cuda_dispatch.h' 2025-07-24T03:55:18.0120730Z adding 'torch/include/ATen/ops/acosh_meta.h' 2025-07-24T03:55:18.0121530Z adding 'torch/include/ATen/ops/acosh_meta_dispatch.h' 2025-07-24T03:55:18.0122510Z adding 'torch/include/ATen/ops/acosh_mps_dispatch.h' 2025-07-24T03:55:18.0123340Z adding 'torch/include/ATen/ops/acosh_native.h' 2025-07-24T03:55:18.0124280Z adding 'torch/include/ATen/ops/acosh_ops.h' 2025-07-24T03:55:18.0125210Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d.h' 2025-07-24T03:55:18.0126370Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0127240Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0128020Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_native.h' 2025-07-24T03:55:18.0128990Z adding 'torch/include/ATen/ops/adaptive_avg_pool1d_ops.h' 2025-07-24T03:55:18.0130210Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d.h' 2025-07-24T03:55:18.0131230Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0132090Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cpu_dispatch.h' 2025-07-24T03:55:18.0133250Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_cuda_dispatch.h' 2025-07-24T03:55:18.0134280Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_mps_dispatch.h' 2025-07-24T03:55:18.0135150Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_native.h' 2025-07-24T03:55:18.0136080Z adding 'torch/include/ATen/ops/adaptive_avg_pool2d_ops.h' 2025-07-24T03:55:18.0137150Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d.h' 2025-07-24T03:55:18.0138250Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward.h' 2025-07-24T03:55:18.0139190Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.0140020Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0140850Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_native.h' 2025-07-24T03:55:18.0141960Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_backward_ops.h' 2025-07-24T03:55:18.0142910Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0143730Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cpu_dispatch.h' 2025-07-24T03:55:18.0144580Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_cuda_dispatch.h' 2025-07-24T03:55:18.0145600Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_native.h' 2025-07-24T03:55:18.0146580Z adding 'torch/include/ATen/ops/adaptive_avg_pool3d_ops.h' 2025-07-24T03:55:18.0147420Z adding 'torch/include/ATen/ops/adaptive_max_pool1d.h' 2025-07-24T03:55:18.0148420Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0149330Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_native.h' 2025-07-24T03:55:18.0150250Z adding 'torch/include/ATen/ops/adaptive_max_pool1d_ops.h' 2025-07-24T03:55:18.0151140Z adding 'torch/include/ATen/ops/adaptive_max_pool2d.h' 2025-07-24T03:55:18.0152080Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward.h' 2025-07-24T03:55:18.0153300Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0154100Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.0154930Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0155770Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta.h' 2025-07-24T03:55:18.0156830Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_meta_dispatch.h' 2025-07-24T03:55:18.0157640Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_mps_dispatch.h' 2025-07-24T03:55:18.0158500Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_native.h' 2025-07-24T03:55:18.0159450Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_backward_ops.h' 2025-07-24T03:55:18.0160660Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0161420Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cpu_dispatch.h' 2025-07-24T03:55:18.0162260Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_cuda_dispatch.h' 2025-07-24T03:55:18.0163090Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta.h' 2025-07-24T03:55:18.0164110Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_meta_dispatch.h' 2025-07-24T03:55:18.0164930Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_mps_dispatch.h' 2025-07-24T03:55:18.0165780Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_native.h' 2025-07-24T03:55:18.0166740Z adding 'torch/include/ATen/ops/adaptive_max_pool2d_ops.h' 2025-07-24T03:55:18.0167840Z adding 'torch/include/ATen/ops/adaptive_max_pool3d.h' 2025-07-24T03:55:18.0168800Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward.h' 2025-07-24T03:55:18.0169830Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0170600Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.0171600Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0172440Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta.h' 2025-07-24T03:55:18.0173300Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_meta_dispatch.h' 2025-07-24T03:55:18.0174160Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_native.h' 2025-07-24T03:55:18.0175310Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_backward_ops.h' 2025-07-24T03:55:18.0176310Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0177060Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cpu_dispatch.h' 2025-07-24T03:55:18.0177860Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_cuda_dispatch.h' 2025-07-24T03:55:18.0178870Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta.h' 2025-07-24T03:55:18.0179720Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_meta_dispatch.h' 2025-07-24T03:55:18.0180590Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_native.h' 2025-07-24T03:55:18.0181550Z adding 'torch/include/ATen/ops/adaptive_max_pool3d_ops.h' 2025-07-24T03:55:18.0182680Z adding 'torch/include/ATen/ops/add.h' 2025-07-24T03:55:18.0183670Z adding 'torch/include/ATen/ops/add_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0184590Z adding 'torch/include/ATen/ops/add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0185350Z adding 'torch/include/ATen/ops/add_cpu_dispatch.h' 2025-07-24T03:55:18.0186370Z adding 'torch/include/ATen/ops/add_cuda_dispatch.h' 2025-07-24T03:55:18.0187250Z adding 'torch/include/ATen/ops/add_meta.h' 2025-07-24T03:55:18.0188100Z adding 'torch/include/ATen/ops/add_meta_dispatch.h' 2025-07-24T03:55:18.0188940Z adding 'torch/include/ATen/ops/add_mps_dispatch.h' 2025-07-24T03:55:18.0190110Z adding 'torch/include/ATen/ops/add_native.h' 2025-07-24T03:55:18.0191290Z adding 'torch/include/ATen/ops/add_ops.h' 2025-07-24T03:55:18.0192230Z adding 'torch/include/ATen/ops/addbmm.h' 2025-07-24T03:55:18.0193160Z adding 'torch/include/ATen/ops/addbmm_cpu_dispatch.h' 2025-07-24T03:55:18.0194180Z adding 'torch/include/ATen/ops/addbmm_cuda_dispatch.h' 2025-07-24T03:55:18.0195060Z adding 'torch/include/ATen/ops/addbmm_meta_dispatch.h' 2025-07-24T03:55:18.0195910Z adding 'torch/include/ATen/ops/addbmm_mps_dispatch.h' 2025-07-24T03:55:18.0196790Z adding 'torch/include/ATen/ops/addbmm_native.h' 2025-07-24T03:55:18.0198050Z adding 'torch/include/ATen/ops/addbmm_ops.h' 2025-07-24T03:55:18.0198990Z adding 'torch/include/ATen/ops/addcdiv.h' 2025-07-24T03:55:18.0200000Z adding 'torch/include/ATen/ops/addcdiv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0200790Z adding 'torch/include/ATen/ops/addcdiv_cpu_dispatch.h' 2025-07-24T03:55:18.0201790Z adding 'torch/include/ATen/ops/addcdiv_cuda_dispatch.h' 2025-07-24T03:55:18.0202640Z adding 'torch/include/ATen/ops/addcdiv_meta.h' 2025-07-24T03:55:18.0203540Z adding 'torch/include/ATen/ops/addcdiv_meta_dispatch.h' 2025-07-24T03:55:18.0204310Z adding 'torch/include/ATen/ops/addcdiv_mps_dispatch.h' 2025-07-24T03:55:18.0205330Z adding 'torch/include/ATen/ops/addcdiv_native.h' 2025-07-24T03:55:18.0206340Z adding 'torch/include/ATen/ops/addcdiv_ops.h' 2025-07-24T03:55:18.0207250Z adding 'torch/include/ATen/ops/addcmul.h' 2025-07-24T03:55:18.0208270Z adding 'torch/include/ATen/ops/addcmul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0209190Z adding 'torch/include/ATen/ops/addcmul_cpu_dispatch.h' 2025-07-24T03:55:18.0210030Z adding 'torch/include/ATen/ops/addcmul_cuda_dispatch.h' 2025-07-24T03:55:18.0210900Z adding 'torch/include/ATen/ops/addcmul_meta.h' 2025-07-24T03:55:18.0211740Z adding 'torch/include/ATen/ops/addcmul_meta_dispatch.h' 2025-07-24T03:55:18.0212730Z adding 'torch/include/ATen/ops/addcmul_mps_dispatch.h' 2025-07-24T03:55:18.0213580Z adding 'torch/include/ATen/ops/addcmul_native.h' 2025-07-24T03:55:18.0214590Z adding 'torch/include/ATen/ops/addcmul_ops.h' 2025-07-24T03:55:18.0215580Z adding 'torch/include/ATen/ops/addmm.h' 2025-07-24T03:55:18.0216760Z adding 'torch/include/ATen/ops/addmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0217550Z adding 'torch/include/ATen/ops/addmm_cpu_dispatch.h' 2025-07-24T03:55:18.0218460Z adding 'torch/include/ATen/ops/addmm_cuda_dispatch.h' 2025-07-24T03:55:18.0219320Z adding 'torch/include/ATen/ops/addmm_meta.h' 2025-07-24T03:55:18.0220430Z adding 'torch/include/ATen/ops/addmm_meta_dispatch.h' 2025-07-24T03:55:18.0221250Z adding 'torch/include/ATen/ops/addmm_mps_dispatch.h' 2025-07-24T03:55:18.0222230Z adding 'torch/include/ATen/ops/addmm_native.h' 2025-07-24T03:55:18.0223390Z adding 'torch/include/ATen/ops/addmm_ops.h' 2025-07-24T03:55:18.0224520Z adding 'torch/include/ATen/ops/addmv.h' 2025-07-24T03:55:18.0225510Z adding 'torch/include/ATen/ops/addmv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0226320Z adding 'torch/include/ATen/ops/addmv_cpu_dispatch.h' 2025-07-24T03:55:18.0227160Z adding 'torch/include/ATen/ops/addmv_cuda_dispatch.h' 2025-07-24T03:55:18.0228180Z adding 'torch/include/ATen/ops/addmv_meta.h' 2025-07-24T03:55:18.0229030Z adding 'torch/include/ATen/ops/addmv_meta_dispatch.h' 2025-07-24T03:55:18.0229860Z adding 'torch/include/ATen/ops/addmv_mps_dispatch.h' 2025-07-24T03:55:18.0230730Z adding 'torch/include/ATen/ops/addmv_native.h' 2025-07-24T03:55:18.0231930Z adding 'torch/include/ATen/ops/addmv_ops.h' 2025-07-24T03:55:18.0232860Z adding 'torch/include/ATen/ops/addr.h' 2025-07-24T03:55:18.0233830Z adding 'torch/include/ATen/ops/addr_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0234710Z adding 'torch/include/ATen/ops/addr_cpu_dispatch.h' 2025-07-24T03:55:18.0235690Z adding 'torch/include/ATen/ops/addr_cuda_dispatch.h' 2025-07-24T03:55:18.0236520Z adding 'torch/include/ATen/ops/addr_mps_dispatch.h' 2025-07-24T03:55:18.0237400Z adding 'torch/include/ATen/ops/addr_native.h' 2025-07-24T03:55:18.0238440Z adding 'torch/include/ATen/ops/addr_ops.h' 2025-07-24T03:55:18.0239480Z adding 'torch/include/ATen/ops/adjoint.h' 2025-07-24T03:55:18.0240460Z adding 'torch/include/ATen/ops/adjoint_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0241200Z adding 'torch/include/ATen/ops/adjoint_native.h' 2025-07-24T03:55:18.0242160Z adding 'torch/include/ATen/ops/adjoint_ops.h' 2025-07-24T03:55:18.0243400Z adding 'torch/include/ATen/ops/affine_grid_generator.h' 2025-07-24T03:55:18.0244400Z adding 'torch/include/ATen/ops/affine_grid_generator_backward.h' 2025-07-24T03:55:18.0245400Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0246160Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_native.h' 2025-07-24T03:55:18.0247240Z adding 'torch/include/ATen/ops/affine_grid_generator_backward_ops.h' 2025-07-24T03:55:18.0248230Z adding 'torch/include/ATen/ops/affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0249020Z adding 'torch/include/ATen/ops/affine_grid_generator_native.h' 2025-07-24T03:55:18.0249940Z adding 'torch/include/ATen/ops/affine_grid_generator_ops.h' 2025-07-24T03:55:18.0250920Z adding 'torch/include/ATen/ops/alias.h' 2025-07-24T03:55:18.0251910Z adding 'torch/include/ATen/ops/alias_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0252690Z adding 'torch/include/ATen/ops/alias_copy.h' 2025-07-24T03:55:18.0253660Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0254750Z adding 'torch/include/ATen/ops/alias_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0255480Z adding 'torch/include/ATen/ops/alias_copy_native.h' 2025-07-24T03:55:18.0256410Z adding 'torch/include/ATen/ops/alias_copy_ops.h' 2025-07-24T03:55:18.0257240Z adding 'torch/include/ATen/ops/alias_native.h' 2025-07-24T03:55:18.0258290Z adding 'torch/include/ATen/ops/alias_ops.h' 2025-07-24T03:55:18.0259130Z adding 'torch/include/ATen/ops/align_as.h' 2025-07-24T03:55:18.0260070Z adding 'torch/include/ATen/ops/align_as_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0260810Z adding 'torch/include/ATen/ops/align_as_native.h' 2025-07-24T03:55:18.0261890Z adding 'torch/include/ATen/ops/align_as_ops.h' 2025-07-24T03:55:18.0262760Z adding 'torch/include/ATen/ops/align_tensors.h' 2025-07-24T03:55:18.0263730Z adding 'torch/include/ATen/ops/align_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0264490Z adding 'torch/include/ATen/ops/align_tensors_native.h' 2025-07-24T03:55:18.0265540Z adding 'torch/include/ATen/ops/align_tensors_ops.h' 2025-07-24T03:55:18.0266370Z adding 'torch/include/ATen/ops/align_to.h' 2025-07-24T03:55:18.0267350Z adding 'torch/include/ATen/ops/align_to_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0268080Z adding 'torch/include/ATen/ops/align_to_native.h' 2025-07-24T03:55:18.0269190Z adding 'torch/include/ATen/ops/align_to_ops.h' 2025-07-24T03:55:18.0270250Z adding 'torch/include/ATen/ops/all.h' 2025-07-24T03:55:18.0271230Z adding 'torch/include/ATen/ops/all_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0272210Z adding 'torch/include/ATen/ops/all_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0273210Z adding 'torch/include/ATen/ops/all_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0274080Z adding 'torch/include/ATen/ops/all_cpu_dispatch.h' 2025-07-24T03:55:18.0274960Z adding 'torch/include/ATen/ops/all_cuda_dispatch.h' 2025-07-24T03:55:18.0275790Z adding 'torch/include/ATen/ops/all_meta.h' 2025-07-24T03:55:18.0276860Z adding 'torch/include/ATen/ops/all_meta_dispatch.h' 2025-07-24T03:55:18.0277740Z adding 'torch/include/ATen/ops/all_mps_dispatch.h' 2025-07-24T03:55:18.0278700Z adding 'torch/include/ATen/ops/all_native.h' 2025-07-24T03:55:18.0279840Z adding 'torch/include/ATen/ops/all_ops.h' 2025-07-24T03:55:18.0280930Z adding 'torch/include/ATen/ops/allclose.h' 2025-07-24T03:55:18.0281920Z adding 'torch/include/ATen/ops/allclose_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0282670Z adding 'torch/include/ATen/ops/allclose_native.h' 2025-07-24T03:55:18.0283650Z adding 'torch/include/ATen/ops/allclose_ops.h' 2025-07-24T03:55:18.0284690Z adding 'torch/include/ATen/ops/alpha_dropout.h' 2025-07-24T03:55:18.0285700Z adding 'torch/include/ATen/ops/alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0286420Z adding 'torch/include/ATen/ops/alpha_dropout_native.h' 2025-07-24T03:55:18.0287390Z adding 'torch/include/ATen/ops/alpha_dropout_ops.h' 2025-07-24T03:55:18.0288430Z adding 'torch/include/ATen/ops/amax.h' 2025-07-24T03:55:18.0289420Z adding 'torch/include/ATen/ops/amax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0290170Z adding 'torch/include/ATen/ops/amax_cpu_dispatch.h' 2025-07-24T03:55:18.0291020Z adding 'torch/include/ATen/ops/amax_cuda_dispatch.h' 2025-07-24T03:55:18.0292000Z adding 'torch/include/ATen/ops/amax_meta.h' 2025-07-24T03:55:18.0295980Z adding 'torch/include/ATen/ops/amax_meta_dispatch.h' 2025-07-24T03:55:18.0296240Z adding 'torch/include/ATen/ops/amax_mps_dispatch.h' 2025-07-24T03:55:18.0296350Z adding 'torch/include/ATen/ops/amax_native.h' 2025-07-24T03:55:18.0296910Z adding 'torch/include/ATen/ops/amax_ops.h' 2025-07-24T03:55:18.0297050Z adding 'torch/include/ATen/ops/amin.h' 2025-07-24T03:55:18.0297450Z adding 'torch/include/ATen/ops/amin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0298220Z adding 'torch/include/ATen/ops/amin_cpu_dispatch.h' 2025-07-24T03:55:18.0299220Z adding 'torch/include/ATen/ops/amin_cuda_dispatch.h' 2025-07-24T03:55:18.0300010Z adding 'torch/include/ATen/ops/amin_meta.h' 2025-07-24T03:55:18.0300860Z adding 'torch/include/ATen/ops/amin_meta_dispatch.h' 2025-07-24T03:55:18.0301710Z adding 'torch/include/ATen/ops/amin_mps_dispatch.h' 2025-07-24T03:55:18.0302710Z adding 'torch/include/ATen/ops/amin_native.h' 2025-07-24T03:55:18.0303680Z adding 'torch/include/ATen/ops/amin_ops.h' 2025-07-24T03:55:18.0304580Z adding 'torch/include/ATen/ops/aminmax.h' 2025-07-24T03:55:18.0305640Z adding 'torch/include/ATen/ops/aminmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0306560Z adding 'torch/include/ATen/ops/aminmax_cpu_dispatch.h' 2025-07-24T03:55:18.0307430Z adding 'torch/include/ATen/ops/aminmax_cuda_dispatch.h' 2025-07-24T03:55:18.0308270Z adding 'torch/include/ATen/ops/aminmax_meta.h' 2025-07-24T03:55:18.0309170Z adding 'torch/include/ATen/ops/aminmax_meta_dispatch.h' 2025-07-24T03:55:18.0310150Z adding 'torch/include/ATen/ops/aminmax_mps_dispatch.h' 2025-07-24T03:55:18.0311000Z adding 'torch/include/ATen/ops/aminmax_native.h' 2025-07-24T03:55:18.0311970Z adding 'torch/include/ATen/ops/aminmax_ops.h' 2025-07-24T03:55:18.0312870Z adding 'torch/include/ATen/ops/and.h' 2025-07-24T03:55:18.0313990Z adding 'torch/include/ATen/ops/and_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0314750Z adding 'torch/include/ATen/ops/and_native.h' 2025-07-24T03:55:18.0315760Z adding 'torch/include/ATen/ops/and_ops.h' 2025-07-24T03:55:18.0316630Z adding 'torch/include/ATen/ops/angle.h' 2025-07-24T03:55:18.0317700Z adding 'torch/include/ATen/ops/angle_cpu_dispatch.h' 2025-07-24T03:55:18.0318520Z adding 'torch/include/ATen/ops/angle_cuda_dispatch.h' 2025-07-24T03:55:18.0319310Z adding 'torch/include/ATen/ops/angle_mps_dispatch.h' 2025-07-24T03:55:18.0320150Z adding 'torch/include/ATen/ops/angle_native.h' 2025-07-24T03:55:18.0321260Z adding 'torch/include/ATen/ops/angle_ops.h' 2025-07-24T03:55:18.0322330Z adding 'torch/include/ATen/ops/any.h' 2025-07-24T03:55:18.0323320Z adding 'torch/include/ATen/ops/any_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0324230Z adding 'torch/include/ATen/ops/any_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0325300Z adding 'torch/include/ATen/ops/any_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0326150Z adding 'torch/include/ATen/ops/any_cpu_dispatch.h' 2025-07-24T03:55:18.0327010Z adding 'torch/include/ATen/ops/any_cuda_dispatch.h' 2025-07-24T03:55:18.0327870Z adding 'torch/include/ATen/ops/any_meta.h' 2025-07-24T03:55:18.0328930Z adding 'torch/include/ATen/ops/any_meta_dispatch.h' 2025-07-24T03:55:18.0329850Z adding 'torch/include/ATen/ops/any_mps_dispatch.h' 2025-07-24T03:55:18.0330810Z adding 'torch/include/ATen/ops/any_native.h' 2025-07-24T03:55:18.0331970Z adding 'torch/include/ATen/ops/any_ops.h' 2025-07-24T03:55:18.0333300Z adding 'torch/include/ATen/ops/arange.h' 2025-07-24T03:55:18.0335440Z adding 'torch/include/ATen/ops/arange_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0336840Z adding 'torch/include/ATen/ops/arange_cpu_dispatch.h' 2025-07-24T03:55:18.0337960Z adding 'torch/include/ATen/ops/arange_cuda_dispatch.h' 2025-07-24T03:55:18.0338890Z adding 'torch/include/ATen/ops/arange_meta_dispatch.h' 2025-07-24T03:55:18.0339800Z adding 'torch/include/ATen/ops/arange_mps_dispatch.h' 2025-07-24T03:55:18.0340900Z adding 'torch/include/ATen/ops/arange_native.h' 2025-07-24T03:55:18.0342190Z adding 'torch/include/ATen/ops/arange_ops.h' 2025-07-24T03:55:18.0343200Z adding 'torch/include/ATen/ops/arccos.h' 2025-07-24T03:55:18.0344180Z adding 'torch/include/ATen/ops/arccos_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0345130Z adding 'torch/include/ATen/ops/arccos_native.h' 2025-07-24T03:55:18.0346170Z adding 'torch/include/ATen/ops/arccos_ops.h' 2025-07-24T03:55:18.0347090Z adding 'torch/include/ATen/ops/arccosh.h' 2025-07-24T03:55:18.0348130Z adding 'torch/include/ATen/ops/arccosh_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0349020Z adding 'torch/include/ATen/ops/arccosh_native.h' 2025-07-24T03:55:18.0350040Z adding 'torch/include/ATen/ops/arccosh_ops.h' 2025-07-24T03:55:18.0351000Z adding 'torch/include/ATen/ops/arcsin.h' 2025-07-24T03:55:18.0352390Z adding 'torch/include/ATen/ops/arcsin_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0353280Z adding 'torch/include/ATen/ops/arcsin_native.h' 2025-07-24T03:55:18.0354280Z adding 'torch/include/ATen/ops/arcsin_ops.h' 2025-07-24T03:55:18.0355170Z adding 'torch/include/ATen/ops/arcsinh.h' 2025-07-24T03:55:18.0356160Z adding 'torch/include/ATen/ops/arcsinh_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0357030Z adding 'torch/include/ATen/ops/arcsinh_native.h' 2025-07-24T03:55:18.0358040Z adding 'torch/include/ATen/ops/arcsinh_ops.h' 2025-07-24T03:55:18.0358930Z adding 'torch/include/ATen/ops/arctan.h' 2025-07-24T03:55:18.0359830Z adding 'torch/include/ATen/ops/arctan2.h' 2025-07-24T03:55:18.0360930Z adding 'torch/include/ATen/ops/arctan2_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0361720Z adding 'torch/include/ATen/ops/arctan2_native.h' 2025-07-24T03:55:18.0362730Z adding 'torch/include/ATen/ops/arctan2_ops.h' 2025-07-24T03:55:18.0363690Z adding 'torch/include/ATen/ops/arctan_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0364600Z adding 'torch/include/ATen/ops/arctan_native.h' 2025-07-24T03:55:18.0365600Z adding 'torch/include/ATen/ops/arctan_ops.h' 2025-07-24T03:55:18.0366480Z adding 'torch/include/ATen/ops/arctanh.h' 2025-07-24T03:55:18.0367440Z adding 'torch/include/ATen/ops/arctanh_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0368310Z adding 'torch/include/ATen/ops/arctanh_native.h' 2025-07-24T03:55:18.0369280Z adding 'torch/include/ATen/ops/arctanh_ops.h' 2025-07-24T03:55:18.0370200Z adding 'torch/include/ATen/ops/argmax.h' 2025-07-24T03:55:18.0371240Z adding 'torch/include/ATen/ops/argmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0372120Z adding 'torch/include/ATen/ops/argmax_cpu_dispatch.h' 2025-07-24T03:55:18.0373010Z adding 'torch/include/ATen/ops/argmax_cuda_dispatch.h' 2025-07-24T03:55:18.0373890Z adding 'torch/include/ATen/ops/argmax_meta.h' 2025-07-24T03:55:18.0374750Z adding 'torch/include/ATen/ops/argmax_meta_dispatch.h' 2025-07-24T03:55:18.0375690Z adding 'torch/include/ATen/ops/argmax_mps_dispatch.h' 2025-07-24T03:55:18.0376570Z adding 'torch/include/ATen/ops/argmax_native.h' 2025-07-24T03:55:18.0377540Z adding 'torch/include/ATen/ops/argmax_ops.h' 2025-07-24T03:55:18.0378450Z adding 'torch/include/ATen/ops/argmin.h' 2025-07-24T03:55:18.0379570Z adding 'torch/include/ATen/ops/argmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0380350Z adding 'torch/include/ATen/ops/argmin_cpu_dispatch.h' 2025-07-24T03:55:18.0381180Z adding 'torch/include/ATen/ops/argmin_cuda_dispatch.h' 2025-07-24T03:55:18.0382010Z adding 'torch/include/ATen/ops/argmin_meta.h' 2025-07-24T03:55:18.0383000Z adding 'torch/include/ATen/ops/argmin_meta_dispatch.h' 2025-07-24T03:55:18.0383870Z adding 'torch/include/ATen/ops/argmin_mps_dispatch.h' 2025-07-24T03:55:18.0384680Z adding 'torch/include/ATen/ops/argmin_native.h' 2025-07-24T03:55:18.0385630Z adding 'torch/include/ATen/ops/argmin_ops.h' 2025-07-24T03:55:18.0386700Z adding 'torch/include/ATen/ops/argsort.h' 2025-07-24T03:55:18.0387740Z adding 'torch/include/ATen/ops/argsort_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0388530Z adding 'torch/include/ATen/ops/argsort_native.h' 2025-07-24T03:55:18.0389610Z adding 'torch/include/ATen/ops/argsort_ops.h' 2025-07-24T03:55:18.0390600Z adding 'torch/include/ATen/ops/argwhere.h' 2025-07-24T03:55:18.0391560Z adding 'torch/include/ATen/ops/argwhere_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0392320Z adding 'torch/include/ATen/ops/argwhere_native.h' 2025-07-24T03:55:18.0393210Z adding 'torch/include/ATen/ops/argwhere_ops.h' 2025-07-24T03:55:18.0394420Z adding 'torch/include/ATen/ops/as_strided.h' 2025-07-24T03:55:18.0395550Z adding 'torch/include/ATen/ops/as_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0396630Z adding 'torch/include/ATen/ops/as_strided_copy.h' 2025-07-24T03:55:18.0397660Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0398700Z adding 'torch/include/ATen/ops/as_strided_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0399480Z adding 'torch/include/ATen/ops/as_strided_copy_native.h' 2025-07-24T03:55:18.0400460Z adding 'torch/include/ATen/ops/as_strided_copy_ops.h' 2025-07-24T03:55:18.0401350Z adding 'torch/include/ATen/ops/as_strided_cpu_dispatch.h' 2025-07-24T03:55:18.0402320Z adding 'torch/include/ATen/ops/as_strided_cuda_dispatch.h' 2025-07-24T03:55:18.0403300Z adding 'torch/include/ATen/ops/as_strided_meta_dispatch.h' 2025-07-24T03:55:18.0404120Z adding 'torch/include/ATen/ops/as_strided_mps_dispatch.h' 2025-07-24T03:55:18.0404980Z adding 'torch/include/ATen/ops/as_strided_native.h' 2025-07-24T03:55:18.0406070Z adding 'torch/include/ATen/ops/as_strided_ops.h' 2025-07-24T03:55:18.0407280Z adding 'torch/include/ATen/ops/as_strided_scatter.h' 2025-07-24T03:55:18.0408350Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0409300Z adding 'torch/include/ATen/ops/as_strided_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0410150Z adding 'torch/include/ATen/ops/as_strided_scatter_native.h' 2025-07-24T03:55:18.0411170Z adding 'torch/include/ATen/ops/as_strided_scatter_ops.h' 2025-07-24T03:55:18.0412050Z adding 'torch/include/ATen/ops/asin.h' 2025-07-24T03:55:18.0413040Z adding 'torch/include/ATen/ops/asin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0413900Z adding 'torch/include/ATen/ops/asin_cpu_dispatch.h' 2025-07-24T03:55:18.0414750Z adding 'torch/include/ATen/ops/asin_cuda_dispatch.h' 2025-07-24T03:55:18.0415580Z adding 'torch/include/ATen/ops/asin_meta.h' 2025-07-24T03:55:18.0416430Z adding 'torch/include/ATen/ops/asin_meta_dispatch.h' 2025-07-24T03:55:18.0417330Z adding 'torch/include/ATen/ops/asin_mps_dispatch.h' 2025-07-24T03:55:18.0418210Z adding 'torch/include/ATen/ops/asin_native.h' 2025-07-24T03:55:18.0419170Z adding 'torch/include/ATen/ops/asin_ops.h' 2025-07-24T03:55:18.0420100Z adding 'torch/include/ATen/ops/asinh.h' 2025-07-24T03:55:18.0421170Z adding 'torch/include/ATen/ops/asinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0421940Z adding 'torch/include/ATen/ops/asinh_cpu_dispatch.h' 2025-07-24T03:55:18.0422760Z adding 'torch/include/ATen/ops/asinh_cuda_dispatch.h' 2025-07-24T03:55:18.0423590Z adding 'torch/include/ATen/ops/asinh_meta.h' 2025-07-24T03:55:18.0424530Z adding 'torch/include/ATen/ops/asinh_meta_dispatch.h' 2025-07-24T03:55:18.0425360Z adding 'torch/include/ATen/ops/asinh_mps_dispatch.h' 2025-07-24T03:55:18.0426240Z adding 'torch/include/ATen/ops/asinh_native.h' 2025-07-24T03:55:18.0427180Z adding 'torch/include/ATen/ops/asinh_ops.h' 2025-07-24T03:55:18.0428180Z adding 'torch/include/ATen/ops/atan.h' 2025-07-24T03:55:18.0429080Z adding 'torch/include/ATen/ops/atan2.h' 2025-07-24T03:55:18.0430080Z adding 'torch/include/ATen/ops/atan2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0430840Z adding 'torch/include/ATen/ops/atan2_cpu_dispatch.h' 2025-07-24T03:55:18.0431780Z adding 'torch/include/ATen/ops/atan2_cuda_dispatch.h' 2025-07-24T03:55:18.0432650Z adding 'torch/include/ATen/ops/atan2_meta.h' 2025-07-24T03:55:18.0433520Z adding 'torch/include/ATen/ops/atan2_meta_dispatch.h' 2025-07-24T03:55:18.0434370Z adding 'torch/include/ATen/ops/atan2_mps_dispatch.h' 2025-07-24T03:55:18.0435300Z adding 'torch/include/ATen/ops/atan2_native.h' 2025-07-24T03:55:18.0436300Z adding 'torch/include/ATen/ops/atan2_ops.h' 2025-07-24T03:55:18.0437290Z adding 'torch/include/ATen/ops/atan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0438010Z adding 'torch/include/ATen/ops/atan_cpu_dispatch.h' 2025-07-24T03:55:18.0438930Z adding 'torch/include/ATen/ops/atan_cuda_dispatch.h' 2025-07-24T03:55:18.0439780Z adding 'torch/include/ATen/ops/atan_meta.h' 2025-07-24T03:55:18.0440620Z adding 'torch/include/ATen/ops/atan_meta_dispatch.h' 2025-07-24T03:55:18.0441410Z adding 'torch/include/ATen/ops/atan_mps_dispatch.h' 2025-07-24T03:55:18.0442380Z adding 'torch/include/ATen/ops/atan_native.h' 2025-07-24T03:55:18.0443360Z adding 'torch/include/ATen/ops/atan_ops.h' 2025-07-24T03:55:18.0444270Z adding 'torch/include/ATen/ops/atanh.h' 2025-07-24T03:55:18.0445250Z adding 'torch/include/ATen/ops/atanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0446090Z adding 'torch/include/ATen/ops/atanh_cpu_dispatch.h' 2025-07-24T03:55:18.0446950Z adding 'torch/include/ATen/ops/atanh_cuda_dispatch.h' 2025-07-24T03:55:18.0447770Z adding 'torch/include/ATen/ops/atanh_meta.h' 2025-07-24T03:55:18.0448590Z adding 'torch/include/ATen/ops/atanh_meta_dispatch.h' 2025-07-24T03:55:18.0449510Z adding 'torch/include/ATen/ops/atanh_mps_dispatch.h' 2025-07-24T03:55:18.0450410Z adding 'torch/include/ATen/ops/atanh_native.h' 2025-07-24T03:55:18.0451390Z adding 'torch/include/ATen/ops/atanh_ops.h' 2025-07-24T03:55:18.0452300Z adding 'torch/include/ATen/ops/atleast_1d.h' 2025-07-24T03:55:18.0453380Z adding 'torch/include/ATen/ops/atleast_1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0454150Z adding 'torch/include/ATen/ops/atleast_1d_native.h' 2025-07-24T03:55:18.0455070Z adding 'torch/include/ATen/ops/atleast_1d_ops.h' 2025-07-24T03:55:18.0455950Z adding 'torch/include/ATen/ops/atleast_2d.h' 2025-07-24T03:55:18.0457040Z adding 'torch/include/ATen/ops/atleast_2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0457810Z adding 'torch/include/ATen/ops/atleast_2d_native.h' 2025-07-24T03:55:18.0458750Z adding 'torch/include/ATen/ops/atleast_2d_ops.h' 2025-07-24T03:55:18.0459610Z adding 'torch/include/ATen/ops/atleast_3d.h' 2025-07-24T03:55:18.0460700Z adding 'torch/include/ATen/ops/atleast_3d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0461480Z adding 'torch/include/ATen/ops/atleast_3d_native.h' 2025-07-24T03:55:18.0462400Z adding 'torch/include/ATen/ops/atleast_3d_ops.h' 2025-07-24T03:55:18.0463340Z adding 'torch/include/ATen/ops/avg_pool1d.h' 2025-07-24T03:55:18.0464510Z adding 'torch/include/ATen/ops/avg_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0465390Z adding 'torch/include/ATen/ops/avg_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0466170Z adding 'torch/include/ATen/ops/avg_pool1d_native.h' 2025-07-24T03:55:18.0467180Z adding 'torch/include/ATen/ops/avg_pool1d_ops.h' 2025-07-24T03:55:18.0468260Z adding 'torch/include/ATen/ops/avg_pool2d.h' 2025-07-24T03:55:18.0469300Z adding 'torch/include/ATen/ops/avg_pool2d_backward.h' 2025-07-24T03:55:18.0470330Z adding 'torch/include/ATen/ops/avg_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0471160Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.0472160Z adding 'torch/include/ATen/ops/avg_pool2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0473020Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta.h' 2025-07-24T03:55:18.0473920Z adding 'torch/include/ATen/ops/avg_pool2d_backward_meta_dispatch.h' 2025-07-24T03:55:18.0474790Z adding 'torch/include/ATen/ops/avg_pool2d_backward_mps_dispatch.h' 2025-07-24T03:55:18.0475830Z adding 'torch/include/ATen/ops/avg_pool2d_backward_native.h' 2025-07-24T03:55:18.0476890Z adding 'torch/include/ATen/ops/avg_pool2d_backward_ops.h' 2025-07-24T03:55:18.0477930Z adding 'torch/include/ATen/ops/avg_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0478730Z adding 'torch/include/ATen/ops/avg_pool2d_cpu_dispatch.h' 2025-07-24T03:55:18.0479700Z adding 'torch/include/ATen/ops/avg_pool2d_cuda_dispatch.h' 2025-07-24T03:55:18.0480890Z adding 'torch/include/ATen/ops/avg_pool2d_meta.h' 2025-07-24T03:55:18.0481800Z adding 'torch/include/ATen/ops/avg_pool2d_meta_dispatch.h' 2025-07-24T03:55:18.0482710Z adding 'torch/include/ATen/ops/avg_pool2d_mps_dispatch.h' 2025-07-24T03:55:18.0483720Z adding 'torch/include/ATen/ops/avg_pool2d_native.h' 2025-07-24T03:55:18.0484760Z adding 'torch/include/ATen/ops/avg_pool2d_ops.h' 2025-07-24T03:55:18.0485750Z adding 'torch/include/ATen/ops/avg_pool3d.h' 2025-07-24T03:55:18.0486750Z adding 'torch/include/ATen/ops/avg_pool3d_backward.h' 2025-07-24T03:55:18.0487910Z adding 'torch/include/ATen/ops/avg_pool3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0488710Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.0489550Z adding 'torch/include/ATen/ops/avg_pool3d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0490370Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta.h' 2025-07-24T03:55:18.0491360Z adding 'torch/include/ATen/ops/avg_pool3d_backward_meta_dispatch.h' 2025-07-24T03:55:18.0492270Z adding 'torch/include/ATen/ops/avg_pool3d_backward_native.h' 2025-07-24T03:55:18.0493290Z adding 'torch/include/ATen/ops/avg_pool3d_backward_ops.h' 2025-07-24T03:55:18.0494290Z adding 'torch/include/ATen/ops/avg_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0495150Z adding 'torch/include/ATen/ops/avg_pool3d_cpu_dispatch.h' 2025-07-24T03:55:18.0496030Z adding 'torch/include/ATen/ops/avg_pool3d_cuda_dispatch.h' 2025-07-24T03:55:18.0496880Z adding 'torch/include/ATen/ops/avg_pool3d_meta.h' 2025-07-24T03:55:18.0497750Z adding 'torch/include/ATen/ops/avg_pool3d_meta_dispatch.h' 2025-07-24T03:55:18.0498760Z adding 'torch/include/ATen/ops/avg_pool3d_native.h' 2025-07-24T03:55:18.0499790Z adding 'torch/include/ATen/ops/avg_pool3d_ops.h' 2025-07-24T03:55:18.0500810Z adding 'torch/include/ATen/ops/baddbmm.h' 2025-07-24T03:55:18.0501830Z adding 'torch/include/ATen/ops/baddbmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0502730Z adding 'torch/include/ATen/ops/baddbmm_cpu_dispatch.h' 2025-07-24T03:55:18.0503690Z adding 'torch/include/ATen/ops/baddbmm_cuda_dispatch.h' 2025-07-24T03:55:18.0504520Z adding 'torch/include/ATen/ops/baddbmm_meta.h' 2025-07-24T03:55:18.0505430Z adding 'torch/include/ATen/ops/baddbmm_meta_dispatch.h' 2025-07-24T03:55:18.0506380Z adding 'torch/include/ATen/ops/baddbmm_mps_dispatch.h' 2025-07-24T03:55:18.0507350Z adding 'torch/include/ATen/ops/baddbmm_native.h' 2025-07-24T03:55:18.0508480Z adding 'torch/include/ATen/ops/baddbmm_ops.h' 2025-07-24T03:55:18.0509570Z adding 'torch/include/ATen/ops/bartlett_window.h' 2025-07-24T03:55:18.0510730Z adding 'torch/include/ATen/ops/bartlett_window_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0511560Z adding 'torch/include/ATen/ops/bartlett_window_native.h' 2025-07-24T03:55:18.0512640Z adding 'torch/include/ATen/ops/bartlett_window_ops.h' 2025-07-24T03:55:18.0513540Z adding 'torch/include/ATen/ops/batch_norm.h' 2025-07-24T03:55:18.0514590Z adding 'torch/include/ATen/ops/batch_norm_backward.h' 2025-07-24T03:55:18.0515560Z adding 'torch/include/ATen/ops/batch_norm_backward_cpu_dispatch.h' 2025-07-24T03:55:18.0516420Z adding 'torch/include/ATen/ops/batch_norm_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0517350Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt.h' 2025-07-24T03:55:18.0518480Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0519340Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_cuda_dispatch.h' 2025-07-24T03:55:18.0520180Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_native.h' 2025-07-24T03:55:18.0521210Z adding 'torch/include/ATen/ops/batch_norm_backward_elemt_ops.h' 2025-07-24T03:55:18.0522210Z adding 'torch/include/ATen/ops/batch_norm_backward_mps_dispatch.h' 2025-07-24T03:55:18.0523130Z adding 'torch/include/ATen/ops/batch_norm_backward_native.h' 2025-07-24T03:55:18.0524150Z adding 'torch/include/ATen/ops/batch_norm_backward_ops.h' 2025-07-24T03:55:18.0525140Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce.h' 2025-07-24T03:55:18.0526290Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0527240Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_cuda_dispatch.h' 2025-07-24T03:55:18.0528090Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_native.h' 2025-07-24T03:55:18.0529130Z adding 'torch/include/ATen/ops/batch_norm_backward_reduce_ops.h' 2025-07-24T03:55:18.0530190Z adding 'torch/include/ATen/ops/batch_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0531070Z adding 'torch/include/ATen/ops/batch_norm_elemt.h' 2025-07-24T03:55:18.0532000Z adding 'torch/include/ATen/ops/batch_norm_elemt_cuda_dispatch.h' 2025-07-24T03:55:18.0532820Z adding 'torch/include/ATen/ops/batch_norm_elemt_native.h' 2025-07-24T03:55:18.0533980Z adding 'torch/include/ATen/ops/batch_norm_elemt_ops.h' 2025-07-24T03:55:18.0535030Z adding 'torch/include/ATen/ops/batch_norm_gather_stats.h' 2025-07-24T03:55:18.0536030Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0536870Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_cuda_dispatch.h' 2025-07-24T03:55:18.0537820Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_native.h' 2025-07-24T03:55:18.0538890Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_ops.h' 2025-07-24T03:55:18.0539900Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts.h' 2025-07-24T03:55:18.0540920Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0541880Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_cuda_dispatch.h' 2025-07-24T03:55:18.0542780Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_native.h' 2025-07-24T03:55:18.0543840Z adding 'torch/include/ATen/ops/batch_norm_gather_stats_with_counts_ops.h' 2025-07-24T03:55:18.0544660Z adding 'torch/include/ATen/ops/batch_norm_native.h' 2025-07-24T03:55:18.0545730Z adding 'torch/include/ATen/ops/batch_norm_ops.h' 2025-07-24T03:55:18.0546670Z adding 'torch/include/ATen/ops/batch_norm_stats.h' 2025-07-24T03:55:18.0547660Z adding 'torch/include/ATen/ops/batch_norm_stats_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0548460Z adding 'torch/include/ATen/ops/batch_norm_stats_cuda_dispatch.h' 2025-07-24T03:55:18.0549490Z adding 'torch/include/ATen/ops/batch_norm_stats_native.h' 2025-07-24T03:55:18.0550410Z adding 'torch/include/ATen/ops/batch_norm_stats_ops.h' 2025-07-24T03:55:18.0551390Z adding 'torch/include/ATen/ops/batch_norm_update_stats.h' 2025-07-24T03:55:18.0552360Z adding 'torch/include/ATen/ops/batch_norm_update_stats_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0553270Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cpu_dispatch.h' 2025-07-24T03:55:18.0554130Z adding 'torch/include/ATen/ops/batch_norm_update_stats_cuda_dispatch.h' 2025-07-24T03:55:18.0554950Z adding 'torch/include/ATen/ops/batch_norm_update_stats_native.h' 2025-07-24T03:55:18.0555940Z adding 'torch/include/ATen/ops/batch_norm_update_stats_ops.h' 2025-07-24T03:55:18.0557030Z adding 'torch/include/ATen/ops/bernoulli.h' 2025-07-24T03:55:18.0558090Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0559090Z adding 'torch/include/ATen/ops/bernoulli_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0559870Z adding 'torch/include/ATen/ops/bernoulli_cpu_dispatch.h' 2025-07-24T03:55:18.0560830Z adding 'torch/include/ATen/ops/bernoulli_cuda_dispatch.h' 2025-07-24T03:55:18.0561720Z adding 'torch/include/ATen/ops/bernoulli_meta_dispatch.h' 2025-07-24T03:55:18.0562570Z adding 'torch/include/ATen/ops/bernoulli_mps_dispatch.h' 2025-07-24T03:55:18.0563450Z adding 'torch/include/ATen/ops/bernoulli_native.h' 2025-07-24T03:55:18.0565230Z adding 'torch/include/ATen/ops/bernoulli_ops.h' 2025-07-24T03:55:18.0565860Z adding 'torch/include/ATen/ops/bilinear.h' 2025-07-24T03:55:18.0566800Z adding 'torch/include/ATen/ops/bilinear_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0567560Z adding 'torch/include/ATen/ops/bilinear_native.h' 2025-07-24T03:55:18.0568590Z adding 'torch/include/ATen/ops/bilinear_ops.h' 2025-07-24T03:55:18.0569910Z adding 'torch/include/ATen/ops/binary_cross_entropy.h' 2025-07-24T03:55:18.0570910Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward.h' 2025-07-24T03:55:18.0571860Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cpu_dispatch.h' 2025-07-24T03:55:18.0572850Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0573740Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_mps_dispatch.h' 2025-07-24T03:55:18.0574640Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_native.h' 2025-07-24T03:55:18.0575660Z adding 'torch/include/ATen/ops/binary_cross_entropy_backward_ops.h' 2025-07-24T03:55:18.0576660Z adding 'torch/include/ATen/ops/binary_cross_entropy_cpu_dispatch.h' 2025-07-24T03:55:18.0577520Z adding 'torch/include/ATen/ops/binary_cross_entropy_cuda_dispatch.h' 2025-07-24T03:55:18.0578350Z adding 'torch/include/ATen/ops/binary_cross_entropy_mps_dispatch.h' 2025-07-24T03:55:18.0579220Z adding 'torch/include/ATen/ops/binary_cross_entropy_native.h' 2025-07-24T03:55:18.0580320Z adding 'torch/include/ATen/ops/binary_cross_entropy_ops.h' 2025-07-24T03:55:18.0581310Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits.h' 2025-07-24T03:55:18.0582340Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0583140Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_native.h' 2025-07-24T03:55:18.0584240Z adding 'torch/include/ATen/ops/binary_cross_entropy_with_logits_ops.h' 2025-07-24T03:55:18.0585250Z adding 'torch/include/ATen/ops/bincount.h' 2025-07-24T03:55:18.0586280Z adding 'torch/include/ATen/ops/bincount_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0587120Z adding 'torch/include/ATen/ops/bincount_cpu_dispatch.h' 2025-07-24T03:55:18.0588050Z adding 'torch/include/ATen/ops/bincount_cuda_dispatch.h' 2025-07-24T03:55:18.0588900Z adding 'torch/include/ATen/ops/bincount_mps_dispatch.h' 2025-07-24T03:55:18.0589750Z adding 'torch/include/ATen/ops/bincount_native.h' 2025-07-24T03:55:18.0590710Z adding 'torch/include/ATen/ops/bincount_ops.h' 2025-07-24T03:55:18.0591770Z adding 'torch/include/ATen/ops/binomial.h' 2025-07-24T03:55:18.0592760Z adding 'torch/include/ATen/ops/binomial_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0593540Z adding 'torch/include/ATen/ops/binomial_cpu_dispatch.h' 2025-07-24T03:55:18.0594360Z adding 'torch/include/ATen/ops/binomial_cuda_dispatch.h' 2025-07-24T03:55:18.0595310Z adding 'torch/include/ATen/ops/binomial_native.h' 2025-07-24T03:55:18.0596300Z adding 'torch/include/ATen/ops/binomial_ops.h' 2025-07-24T03:55:18.0597300Z adding 'torch/include/ATen/ops/bitwise_and.h' 2025-07-24T03:55:18.0598290Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0599320Z adding 'torch/include/ATen/ops/bitwise_and_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0600110Z adding 'torch/include/ATen/ops/bitwise_and_cpu_dispatch.h' 2025-07-24T03:55:18.0600940Z adding 'torch/include/ATen/ops/bitwise_and_cuda_dispatch.h' 2025-07-24T03:55:18.0601750Z adding 'torch/include/ATen/ops/bitwise_and_meta.h' 2025-07-24T03:55:18.0602720Z adding 'torch/include/ATen/ops/bitwise_and_meta_dispatch.h' 2025-07-24T03:55:18.0603560Z adding 'torch/include/ATen/ops/bitwise_and_mps_dispatch.h' 2025-07-24T03:55:18.0604450Z adding 'torch/include/ATen/ops/bitwise_and_native.h' 2025-07-24T03:55:18.0605660Z adding 'torch/include/ATen/ops/bitwise_and_ops.h' 2025-07-24T03:55:18.0606790Z adding 'torch/include/ATen/ops/bitwise_left_shift.h' 2025-07-24T03:55:18.0607820Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0608740Z adding 'torch/include/ATen/ops/bitwise_left_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0609470Z adding 'torch/include/ATen/ops/bitwise_left_shift_cpu_dispatch.h' 2025-07-24T03:55:18.0610410Z adding 'torch/include/ATen/ops/bitwise_left_shift_cuda_dispatch.h' 2025-07-24T03:55:18.0611270Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta.h' 2025-07-24T03:55:18.0612110Z adding 'torch/include/ATen/ops/bitwise_left_shift_meta_dispatch.h' 2025-07-24T03:55:18.0612920Z adding 'torch/include/ATen/ops/bitwise_left_shift_mps_dispatch.h' 2025-07-24T03:55:18.0613920Z adding 'torch/include/ATen/ops/bitwise_left_shift_native.h' 2025-07-24T03:55:18.0615160Z adding 'torch/include/ATen/ops/bitwise_left_shift_ops.h' 2025-07-24T03:55:18.0616040Z adding 'torch/include/ATen/ops/bitwise_not.h' 2025-07-24T03:55:18.0617060Z adding 'torch/include/ATen/ops/bitwise_not_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0617900Z adding 'torch/include/ATen/ops/bitwise_not_cpu_dispatch.h' 2025-07-24T03:55:18.0618760Z adding 'torch/include/ATen/ops/bitwise_not_cuda_dispatch.h' 2025-07-24T03:55:18.0619570Z adding 'torch/include/ATen/ops/bitwise_not_meta.h' 2025-07-24T03:55:18.0620430Z adding 'torch/include/ATen/ops/bitwise_not_meta_dispatch.h' 2025-07-24T03:55:18.0621350Z adding 'torch/include/ATen/ops/bitwise_not_mps_dispatch.h' 2025-07-24T03:55:18.0622200Z adding 'torch/include/ATen/ops/bitwise_not_native.h' 2025-07-24T03:55:18.0623190Z adding 'torch/include/ATen/ops/bitwise_not_ops.h' 2025-07-24T03:55:18.0624190Z adding 'torch/include/ATen/ops/bitwise_or.h' 2025-07-24T03:55:18.0625310Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0626240Z adding 'torch/include/ATen/ops/bitwise_or_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0626980Z adding 'torch/include/ATen/ops/bitwise_or_cpu_dispatch.h' 2025-07-24T03:55:18.0627810Z adding 'torch/include/ATen/ops/bitwise_or_cuda_dispatch.h' 2025-07-24T03:55:18.0628740Z adding 'torch/include/ATen/ops/bitwise_or_meta.h' 2025-07-24T03:55:18.0629620Z adding 'torch/include/ATen/ops/bitwise_or_meta_dispatch.h' 2025-07-24T03:55:18.0630430Z adding 'torch/include/ATen/ops/bitwise_or_mps_dispatch.h' 2025-07-24T03:55:18.0631300Z adding 'torch/include/ATen/ops/bitwise_or_native.h' 2025-07-24T03:55:18.0632640Z adding 'torch/include/ATen/ops/bitwise_or_ops.h' 2025-07-24T03:55:18.0633670Z adding 'torch/include/ATen/ops/bitwise_right_shift.h' 2025-07-24T03:55:18.0634700Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0635580Z adding 'torch/include/ATen/ops/bitwise_right_shift_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0636470Z adding 'torch/include/ATen/ops/bitwise_right_shift_cpu_dispatch.h' 2025-07-24T03:55:18.0637310Z adding 'torch/include/ATen/ops/bitwise_right_shift_cuda_dispatch.h' 2025-07-24T03:55:18.0638130Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta.h' 2025-07-24T03:55:18.0638980Z adding 'torch/include/ATen/ops/bitwise_right_shift_meta_dispatch.h' 2025-07-24T03:55:18.0639920Z adding 'torch/include/ATen/ops/bitwise_right_shift_mps_dispatch.h' 2025-07-24T03:55:18.0640830Z adding 'torch/include/ATen/ops/bitwise_right_shift_native.h' 2025-07-24T03:55:18.0642010Z adding 'torch/include/ATen/ops/bitwise_right_shift_ops.h' 2025-07-24T03:55:18.0642990Z adding 'torch/include/ATen/ops/bitwise_xor.h' 2025-07-24T03:55:18.0644100Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0645040Z adding 'torch/include/ATen/ops/bitwise_xor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0645790Z adding 'torch/include/ATen/ops/bitwise_xor_cpu_dispatch.h' 2025-07-24T03:55:18.0646640Z adding 'torch/include/ATen/ops/bitwise_xor_cuda_dispatch.h' 2025-07-24T03:55:18.0647540Z adding 'torch/include/ATen/ops/bitwise_xor_meta.h' 2025-07-24T03:55:18.0648420Z adding 'torch/include/ATen/ops/bitwise_xor_meta_dispatch.h' 2025-07-24T03:55:18.0649230Z adding 'torch/include/ATen/ops/bitwise_xor_mps_dispatch.h' 2025-07-24T03:55:18.0650100Z adding 'torch/include/ATen/ops/bitwise_xor_native.h' 2025-07-24T03:55:18.0651420Z adding 'torch/include/ATen/ops/bitwise_xor_ops.h' 2025-07-24T03:55:18.0652530Z adding 'torch/include/ATen/ops/blackman_window.h' 2025-07-24T03:55:18.0653580Z adding 'torch/include/ATen/ops/blackman_window_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0654390Z adding 'torch/include/ATen/ops/blackman_window_native.h' 2025-07-24T03:55:18.0655580Z adding 'torch/include/ATen/ops/blackman_window_ops.h' 2025-07-24T03:55:18.0656500Z adding 'torch/include/ATen/ops/block_diag.h' 2025-07-24T03:55:18.0657470Z adding 'torch/include/ATen/ops/block_diag_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0658260Z adding 'torch/include/ATen/ops/block_diag_native.h' 2025-07-24T03:55:18.0659320Z adding 'torch/include/ATen/ops/block_diag_ops.h' 2025-07-24T03:55:18.0660260Z adding 'torch/include/ATen/ops/bmm.h' 2025-07-24T03:55:18.0661250Z adding 'torch/include/ATen/ops/bmm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0662020Z adding 'torch/include/ATen/ops/bmm_cpu_dispatch.h' 2025-07-24T03:55:18.0663010Z adding 'torch/include/ATen/ops/bmm_cuda_dispatch.h' 2025-07-24T03:55:18.0663880Z adding 'torch/include/ATen/ops/bmm_meta.h' 2025-07-24T03:55:18.0664740Z adding 'torch/include/ATen/ops/bmm_meta_dispatch.h' 2025-07-24T03:55:18.0665590Z adding 'torch/include/ATen/ops/bmm_mps_dispatch.h' 2025-07-24T03:55:18.0666610Z adding 'torch/include/ATen/ops/bmm_native.h' 2025-07-24T03:55:18.0667650Z adding 'torch/include/ATen/ops/bmm_ops.h' 2025-07-24T03:55:18.0668550Z adding 'torch/include/ATen/ops/broadcast_tensors.h' 2025-07-24T03:55:18.0669520Z adding 'torch/include/ATen/ops/broadcast_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0670370Z adding 'torch/include/ATen/ops/broadcast_tensors_native.h' 2025-07-24T03:55:18.0671300Z adding 'torch/include/ATen/ops/broadcast_tensors_ops.h' 2025-07-24T03:55:18.0672180Z adding 'torch/include/ATen/ops/broadcast_to.h' 2025-07-24T03:55:18.0673160Z adding 'torch/include/ATen/ops/broadcast_to_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0674000Z adding 'torch/include/ATen/ops/broadcast_to_native.h' 2025-07-24T03:55:18.0674940Z adding 'torch/include/ATen/ops/broadcast_to_ops.h' 2025-07-24T03:55:18.0675920Z adding 'torch/include/ATen/ops/bucketize.h' 2025-07-24T03:55:18.0676970Z adding 'torch/include/ATen/ops/bucketize_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0677860Z adding 'torch/include/ATen/ops/bucketize_cpu_dispatch.h' 2025-07-24T03:55:18.0678730Z adding 'torch/include/ATen/ops/bucketize_cuda_dispatch.h' 2025-07-24T03:55:18.0679570Z adding 'torch/include/ATen/ops/bucketize_mps_dispatch.h' 2025-07-24T03:55:18.0680470Z adding 'torch/include/ATen/ops/bucketize_native.h' 2025-07-24T03:55:18.0681620Z adding 'torch/include/ATen/ops/bucketize_ops.h' 2025-07-24T03:55:18.0682510Z adding 'torch/include/ATen/ops/can_cast.h' 2025-07-24T03:55:18.0683480Z adding 'torch/include/ATen/ops/can_cast_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0684220Z adding 'torch/include/ATen/ops/can_cast_native.h' 2025-07-24T03:55:18.0685210Z adding 'torch/include/ATen/ops/can_cast_ops.h' 2025-07-24T03:55:18.0686090Z adding 'torch/include/ATen/ops/cartesian_prod.h' 2025-07-24T03:55:18.0687050Z adding 'torch/include/ATen/ops/cartesian_prod_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0687800Z adding 'torch/include/ATen/ops/cartesian_prod_native.h' 2025-07-24T03:55:18.0688780Z adding 'torch/include/ATen/ops/cartesian_prod_ops.h' 2025-07-24T03:55:18.0689730Z adding 'torch/include/ATen/ops/cat.h' 2025-07-24T03:55:18.0690740Z adding 'torch/include/ATen/ops/cat_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0691650Z adding 'torch/include/ATen/ops/cat_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0692500Z adding 'torch/include/ATen/ops/cat_cpu_dispatch.h' 2025-07-24T03:55:18.0693360Z adding 'torch/include/ATen/ops/cat_cuda_dispatch.h' 2025-07-24T03:55:18.0694560Z adding 'torch/include/ATen/ops/cat_meta.h' 2025-07-24T03:55:18.0695450Z adding 'torch/include/ATen/ops/cat_meta_dispatch.h' 2025-07-24T03:55:18.0696350Z adding 'torch/include/ATen/ops/cat_mps_dispatch.h' 2025-07-24T03:55:18.0697330Z adding 'torch/include/ATen/ops/cat_native.h' 2025-07-24T03:55:18.0698360Z adding 'torch/include/ATen/ops/cat_ops.h' 2025-07-24T03:55:18.0699280Z adding 'torch/include/ATen/ops/cauchy.h' 2025-07-24T03:55:18.0700380Z adding 'torch/include/ATen/ops/cauchy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0701230Z adding 'torch/include/ATen/ops/cauchy_cpu_dispatch.h' 2025-07-24T03:55:18.0702040Z adding 'torch/include/ATen/ops/cauchy_cuda_dispatch.h' 2025-07-24T03:55:18.0702890Z adding 'torch/include/ATen/ops/cauchy_meta_dispatch.h' 2025-07-24T03:55:18.0703830Z adding 'torch/include/ATen/ops/cauchy_native.h' 2025-07-24T03:55:18.0704910Z adding 'torch/include/ATen/ops/cauchy_ops.h' 2025-07-24T03:55:18.0705730Z adding 'torch/include/ATen/ops/ccol_indices.h' 2025-07-24T03:55:18.0706680Z adding 'torch/include/ATen/ops/ccol_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0707580Z adding 'torch/include/ATen/ops/ccol_indices_copy.h' 2025-07-24T03:55:18.0708590Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0709480Z adding 'torch/include/ATen/ops/ccol_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0710200Z adding 'torch/include/ATen/ops/ccol_indices_copy_native.h' 2025-07-24T03:55:18.0711240Z adding 'torch/include/ATen/ops/ccol_indices_copy_ops.h' 2025-07-24T03:55:18.0712100Z adding 'torch/include/ATen/ops/ccol_indices_native.h' 2025-07-24T03:55:18.0712970Z adding 'torch/include/ATen/ops/ccol_indices_ops.h' 2025-07-24T03:55:18.0713820Z adding 'torch/include/ATen/ops/cdist.h' 2025-07-24T03:55:18.0714890Z adding 'torch/include/ATen/ops/cdist_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0715700Z adding 'torch/include/ATen/ops/cdist_native.h' 2025-07-24T03:55:18.0716580Z adding 'torch/include/ATen/ops/cdist_ops.h' 2025-07-24T03:55:18.0717480Z adding 'torch/include/ATen/ops/ceil.h' 2025-07-24T03:55:18.0718550Z adding 'torch/include/ATen/ops/ceil_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0719320Z adding 'torch/include/ATen/ops/ceil_cpu_dispatch.h' 2025-07-24T03:55:18.0720150Z adding 'torch/include/ATen/ops/ceil_cuda_dispatch.h' 2025-07-24T03:55:18.0721000Z adding 'torch/include/ATen/ops/ceil_meta.h' 2025-07-24T03:55:18.0721910Z adding 'torch/include/ATen/ops/ceil_meta_dispatch.h' 2025-07-24T03:55:18.0722720Z adding 'torch/include/ATen/ops/ceil_mps_dispatch.h' 2025-07-24T03:55:18.0723570Z adding 'torch/include/ATen/ops/ceil_native.h' 2025-07-24T03:55:18.0724570Z adding 'torch/include/ATen/ops/ceil_ops.h' 2025-07-24T03:55:18.0725600Z adding 'torch/include/ATen/ops/celu.h' 2025-07-24T03:55:18.0726660Z adding 'torch/include/ATen/ops/celu_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0727430Z adding 'torch/include/ATen/ops/celu_native.h' 2025-07-24T03:55:18.0728400Z adding 'torch/include/ATen/ops/celu_ops.h' 2025-07-24T03:55:18.0729440Z adding 'torch/include/ATen/ops/chain_matmul.h' 2025-07-24T03:55:18.0730440Z adding 'torch/include/ATen/ops/chain_matmul_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0731190Z adding 'torch/include/ATen/ops/chain_matmul_native.h' 2025-07-24T03:55:18.0732120Z adding 'torch/include/ATen/ops/chain_matmul_ops.h' 2025-07-24T03:55:18.0733030Z adding 'torch/include/ATen/ops/chalf.h' 2025-07-24T03:55:18.0734030Z adding 'torch/include/ATen/ops/chalf_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0734790Z adding 'torch/include/ATen/ops/chalf_native.h' 2025-07-24T03:55:18.0735710Z adding 'torch/include/ATen/ops/chalf_ops.h' 2025-07-24T03:55:18.0736910Z adding 'torch/include/ATen/ops/channel_shuffle.h' 2025-07-24T03:55:18.0737920Z adding 'torch/include/ATen/ops/channel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0738740Z adding 'torch/include/ATen/ops/channel_shuffle_cpu_dispatch.h' 2025-07-24T03:55:18.0739550Z adding 'torch/include/ATen/ops/channel_shuffle_cuda_dispatch.h' 2025-07-24T03:55:18.0740500Z adding 'torch/include/ATen/ops/channel_shuffle_native.h' 2025-07-24T03:55:18.0741450Z adding 'torch/include/ATen/ops/channel_shuffle_ops.h' 2025-07-24T03:55:18.0742320Z adding 'torch/include/ATen/ops/cholesky.h' 2025-07-24T03:55:18.0743200Z adding 'torch/include/ATen/ops/cholesky_cpu_dispatch.h' 2025-07-24T03:55:18.0744170Z adding 'torch/include/ATen/ops/cholesky_cuda_dispatch.h' 2025-07-24T03:55:18.0745050Z adding 'torch/include/ATen/ops/cholesky_inverse.h' 2025-07-24T03:55:18.0745970Z adding 'torch/include/ATen/ops/cholesky_inverse_cpu_dispatch.h' 2025-07-24T03:55:18.0746790Z adding 'torch/include/ATen/ops/cholesky_inverse_cuda_dispatch.h' 2025-07-24T03:55:18.0747710Z adding 'torch/include/ATen/ops/cholesky_inverse_native.h' 2025-07-24T03:55:18.0748680Z adding 'torch/include/ATen/ops/cholesky_inverse_ops.h' 2025-07-24T03:55:18.0749510Z adding 'torch/include/ATen/ops/cholesky_mps_dispatch.h' 2025-07-24T03:55:18.0750380Z adding 'torch/include/ATen/ops/cholesky_native.h' 2025-07-24T03:55:18.0751450Z adding 'torch/include/ATen/ops/cholesky_ops.h' 2025-07-24T03:55:18.0752370Z adding 'torch/include/ATen/ops/cholesky_solve.h' 2025-07-24T03:55:18.0753370Z adding 'torch/include/ATen/ops/cholesky_solve_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0754120Z adding 'torch/include/ATen/ops/cholesky_solve_native.h' 2025-07-24T03:55:18.0755190Z adding 'torch/include/ATen/ops/cholesky_solve_ops.h' 2025-07-24T03:55:18.0756110Z adding 'torch/include/ATen/ops/choose_qparams_optimized.h' 2025-07-24T03:55:18.0757100Z adding 'torch/include/ATen/ops/choose_qparams_optimized_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0757870Z adding 'torch/include/ATen/ops/choose_qparams_optimized_native.h' 2025-07-24T03:55:18.0758920Z adding 'torch/include/ATen/ops/choose_qparams_optimized_ops.h' 2025-07-24T03:55:18.0759790Z adding 'torch/include/ATen/ops/chunk.h' 2025-07-24T03:55:18.0760750Z adding 'torch/include/ATen/ops/chunk_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0761490Z adding 'torch/include/ATen/ops/chunk_native.h' 2025-07-24T03:55:18.0762530Z adding 'torch/include/ATen/ops/chunk_ops.h' 2025-07-24T03:55:18.0763570Z adding 'torch/include/ATen/ops/clamp.h' 2025-07-24T03:55:18.0764620Z adding 'torch/include/ATen/ops/clamp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0765510Z adding 'torch/include/ATen/ops/clamp_cpu_dispatch.h' 2025-07-24T03:55:18.0766480Z adding 'torch/include/ATen/ops/clamp_cuda_dispatch.h' 2025-07-24T03:55:18.0767500Z adding 'torch/include/ATen/ops/clamp_max.h' 2025-07-24T03:55:18.0768530Z adding 'torch/include/ATen/ops/clamp_max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0769320Z adding 'torch/include/ATen/ops/clamp_max_cpu_dispatch.h' 2025-07-24T03:55:18.0770280Z adding 'torch/include/ATen/ops/clamp_max_cuda_dispatch.h' 2025-07-24T03:55:18.0771150Z adding 'torch/include/ATen/ops/clamp_max_meta.h' 2025-07-24T03:55:18.0772040Z adding 'torch/include/ATen/ops/clamp_max_meta_dispatch.h' 2025-07-24T03:55:18.0772860Z adding 'torch/include/ATen/ops/clamp_max_mps_dispatch.h' 2025-07-24T03:55:18.0773850Z adding 'torch/include/ATen/ops/clamp_max_native.h' 2025-07-24T03:55:18.0774990Z adding 'torch/include/ATen/ops/clamp_max_ops.h' 2025-07-24T03:55:18.0775850Z adding 'torch/include/ATen/ops/clamp_meta.h' 2025-07-24T03:55:18.0776770Z adding 'torch/include/ATen/ops/clamp_meta_dispatch.h' 2025-07-24T03:55:18.0777850Z adding 'torch/include/ATen/ops/clamp_min.h' 2025-07-24T03:55:18.0778900Z adding 'torch/include/ATen/ops/clamp_min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0779680Z adding 'torch/include/ATen/ops/clamp_min_cpu_dispatch.h' 2025-07-24T03:55:18.0780510Z adding 'torch/include/ATen/ops/clamp_min_cuda_dispatch.h' 2025-07-24T03:55:18.0781470Z adding 'torch/include/ATen/ops/clamp_min_meta.h' 2025-07-24T03:55:18.0782360Z adding 'torch/include/ATen/ops/clamp_min_meta_dispatch.h' 2025-07-24T03:55:18.0783210Z adding 'torch/include/ATen/ops/clamp_min_mps_dispatch.h' 2025-07-24T03:55:18.0784430Z adding 'torch/include/ATen/ops/clamp_min_native.h' 2025-07-24T03:55:18.0785670Z adding 'torch/include/ATen/ops/clamp_min_ops.h' 2025-07-24T03:55:18.0786660Z adding 'torch/include/ATen/ops/clamp_mps_dispatch.h' 2025-07-24T03:55:18.0787570Z adding 'torch/include/ATen/ops/clamp_native.h' 2025-07-24T03:55:18.0788750Z adding 'torch/include/ATen/ops/clamp_ops.h' 2025-07-24T03:55:18.0789940Z adding 'torch/include/ATen/ops/clip.h' 2025-07-24T03:55:18.0791010Z adding 'torch/include/ATen/ops/clip_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0791840Z adding 'torch/include/ATen/ops/clip_native.h' 2025-07-24T03:55:18.0793010Z adding 'torch/include/ATen/ops/clip_ops.h' 2025-07-24T03:55:18.0794060Z adding 'torch/include/ATen/ops/clone.h' 2025-07-24T03:55:18.0795110Z adding 'torch/include/ATen/ops/clone_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0795920Z adding 'torch/include/ATen/ops/clone_native.h' 2025-07-24T03:55:18.0796860Z adding 'torch/include/ATen/ops/clone_ops.h' 2025-07-24T03:55:18.0797800Z adding 'torch/include/ATen/ops/coalesce.h' 2025-07-24T03:55:18.0798800Z adding 'torch/include/ATen/ops/coalesce_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0799540Z adding 'torch/include/ATen/ops/coalesce_native.h' 2025-07-24T03:55:18.0800410Z adding 'torch/include/ATen/ops/coalesce_ops.h' 2025-07-24T03:55:18.0801670Z adding 'torch/include/ATen/ops/col2im.h' 2025-07-24T03:55:18.0802690Z adding 'torch/include/ATen/ops/col2im_cpu_dispatch.h' 2025-07-24T03:55:18.0803580Z adding 'torch/include/ATen/ops/col2im_cuda_dispatch.h' 2025-07-24T03:55:18.0804460Z adding 'torch/include/ATen/ops/col2im_mps_dispatch.h' 2025-07-24T03:55:18.0805430Z adding 'torch/include/ATen/ops/col2im_native.h' 2025-07-24T03:55:18.0806440Z adding 'torch/include/ATen/ops/col2im_ops.h' 2025-07-24T03:55:18.0807270Z adding 'torch/include/ATen/ops/col_indices.h' 2025-07-24T03:55:18.0808220Z adding 'torch/include/ATen/ops/col_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0809130Z adding 'torch/include/ATen/ops/col_indices_copy.h' 2025-07-24T03:55:18.0810120Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0811010Z adding 'torch/include/ATen/ops/col_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0811780Z adding 'torch/include/ATen/ops/col_indices_copy_native.h' 2025-07-24T03:55:18.0812800Z adding 'torch/include/ATen/ops/col_indices_copy_ops.h' 2025-07-24T03:55:18.0813630Z adding 'torch/include/ATen/ops/col_indices_native.h' 2025-07-24T03:55:18.0814520Z adding 'torch/include/ATen/ops/col_indices_ops.h' 2025-07-24T03:55:18.0815440Z adding 'torch/include/ATen/ops/column_stack.h' 2025-07-24T03:55:18.0816520Z adding 'torch/include/ATen/ops/column_stack_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0817340Z adding 'torch/include/ATen/ops/column_stack_native.h' 2025-07-24T03:55:18.0818250Z adding 'torch/include/ATen/ops/column_stack_ops.h' 2025-07-24T03:55:18.0819110Z adding 'torch/include/ATen/ops/combinations.h' 2025-07-24T03:55:18.0820220Z adding 'torch/include/ATen/ops/combinations_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0821000Z adding 'torch/include/ATen/ops/combinations_native.h' 2025-07-24T03:55:18.0821920Z adding 'torch/include/ATen/ops/combinations_ops.h' 2025-07-24T03:55:18.0826240Z adding 'torch/include/ATen/ops/complex.h' 2025-07-24T03:55:18.0826530Z adding 'torch/include/ATen/ops/complex_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0826630Z adding 'torch/include/ATen/ops/complex_cpu_dispatch.h' 2025-07-24T03:55:18.0826760Z adding 'torch/include/ATen/ops/complex_cuda_dispatch.h' 2025-07-24T03:55:18.0826890Z adding 'torch/include/ATen/ops/complex_mps_dispatch.h' 2025-07-24T03:55:18.0827240Z adding 'torch/include/ATen/ops/complex_native.h' 2025-07-24T03:55:18.0828250Z adding 'torch/include/ATen/ops/complex_ops.h' 2025-07-24T03:55:18.0829190Z adding 'torch/include/ATen/ops/concat.h' 2025-07-24T03:55:18.0830210Z adding 'torch/include/ATen/ops/concat_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0831150Z adding 'torch/include/ATen/ops/concat_native.h' 2025-07-24T03:55:18.0832230Z adding 'torch/include/ATen/ops/concat_ops.h' 2025-07-24T03:55:18.0833200Z adding 'torch/include/ATen/ops/concatenate.h' 2025-07-24T03:55:18.0834220Z adding 'torch/include/ATen/ops/concatenate_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0835090Z adding 'torch/include/ATen/ops/concatenate_native.h' 2025-07-24T03:55:18.0836140Z adding 'torch/include/ATen/ops/concatenate_ops.h' 2025-07-24T03:55:18.0836990Z adding 'torch/include/ATen/ops/conj.h' 2025-07-24T03:55:18.0837950Z adding 'torch/include/ATen/ops/conj_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0838790Z adding 'torch/include/ATen/ops/conj_native.h' 2025-07-24T03:55:18.0839680Z adding 'torch/include/ATen/ops/conj_ops.h' 2025-07-24T03:55:18.0840580Z adding 'torch/include/ATen/ops/conj_physical.h' 2025-07-24T03:55:18.0841520Z adding 'torch/include/ATen/ops/conj_physical_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0842490Z adding 'torch/include/ATen/ops/conj_physical_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0843320Z adding 'torch/include/ATen/ops/conj_physical_cpu_dispatch.h' 2025-07-24T03:55:18.0844150Z adding 'torch/include/ATen/ops/conj_physical_cuda_dispatch.h' 2025-07-24T03:55:18.0844960Z adding 'torch/include/ATen/ops/conj_physical_mps_dispatch.h' 2025-07-24T03:55:18.0845910Z adding 'torch/include/ATen/ops/conj_physical_native.h' 2025-07-24T03:55:18.0846910Z adding 'torch/include/ATen/ops/conj_physical_ops.h' 2025-07-24T03:55:18.0847970Z adding 'torch/include/ATen/ops/constant_pad_nd.h' 2025-07-24T03:55:18.0849010Z adding 'torch/include/ATen/ops/constant_pad_nd_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0849940Z adding 'torch/include/ATen/ops/constant_pad_nd_mps_dispatch.h' 2025-07-24T03:55:18.0850790Z adding 'torch/include/ATen/ops/constant_pad_nd_native.h' 2025-07-24T03:55:18.0851750Z adding 'torch/include/ATen/ops/constant_pad_nd_ops.h' 2025-07-24T03:55:18.0852550Z adding 'torch/include/ATen/ops/contiguous.h' 2025-07-24T03:55:18.0853630Z adding 'torch/include/ATen/ops/contiguous_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0854380Z adding 'torch/include/ATen/ops/contiguous_native.h' 2025-07-24T03:55:18.0855280Z adding 'torch/include/ATen/ops/contiguous_ops.h' 2025-07-24T03:55:18.0856400Z adding 'torch/include/ATen/ops/conv1d.h' 2025-07-24T03:55:18.0857520Z adding 'torch/include/ATen/ops/conv1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0858320Z adding 'torch/include/ATen/ops/conv1d_native.h' 2025-07-24T03:55:18.0859330Z adding 'torch/include/ATen/ops/conv1d_ops.h' 2025-07-24T03:55:18.0860450Z adding 'torch/include/ATen/ops/conv2d.h' 2025-07-24T03:55:18.0861600Z adding 'torch/include/ATen/ops/conv2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0862450Z adding 'torch/include/ATen/ops/conv2d_native.h' 2025-07-24T03:55:18.0863440Z adding 'torch/include/ATen/ops/conv2d_ops.h' 2025-07-24T03:55:18.0864510Z adding 'torch/include/ATen/ops/conv3d.h' 2025-07-24T03:55:18.0865660Z adding 'torch/include/ATen/ops/conv3d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0866480Z adding 'torch/include/ATen/ops/conv3d_native.h' 2025-07-24T03:55:18.0867470Z adding 'torch/include/ATen/ops/conv3d_ops.h' 2025-07-24T03:55:18.0868680Z adding 'torch/include/ATen/ops/conv_depthwise3d.h' 2025-07-24T03:55:18.0869880Z adding 'torch/include/ATen/ops/conv_depthwise3d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0870740Z adding 'torch/include/ATen/ops/conv_depthwise3d_cuda_dispatch.h' 2025-07-24T03:55:18.0871620Z adding 'torch/include/ATen/ops/conv_depthwise3d_native.h' 2025-07-24T03:55:18.0872660Z adding 'torch/include/ATen/ops/conv_depthwise3d_ops.h' 2025-07-24T03:55:18.0873650Z adding 'torch/include/ATen/ops/conv_tbc.h' 2025-07-24T03:55:18.0874570Z adding 'torch/include/ATen/ops/conv_tbc_backward.h' 2025-07-24T03:55:18.0875550Z adding 'torch/include/ATen/ops/conv_tbc_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0876320Z adding 'torch/include/ATen/ops/conv_tbc_backward_native.h' 2025-07-24T03:55:18.0877380Z adding 'torch/include/ATen/ops/conv_tbc_backward_ops.h' 2025-07-24T03:55:18.0878370Z adding 'torch/include/ATen/ops/conv_tbc_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0879120Z adding 'torch/include/ATen/ops/conv_tbc_native.h' 2025-07-24T03:55:18.0880080Z adding 'torch/include/ATen/ops/conv_tbc_ops.h' 2025-07-24T03:55:18.0881220Z adding 'torch/include/ATen/ops/conv_transpose1d.h' 2025-07-24T03:55:18.0882290Z adding 'torch/include/ATen/ops/conv_transpose1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0883060Z adding 'torch/include/ATen/ops/conv_transpose1d_native.h' 2025-07-24T03:55:18.0884030Z adding 'torch/include/ATen/ops/conv_transpose1d_ops.h' 2025-07-24T03:55:18.0885160Z adding 'torch/include/ATen/ops/conv_transpose2d.h' 2025-07-24T03:55:18.0886240Z adding 'torch/include/ATen/ops/conv_transpose2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0887050Z adding 'torch/include/ATen/ops/conv_transpose2d_native.h' 2025-07-24T03:55:18.0887980Z adding 'torch/include/ATen/ops/conv_transpose2d_ops.h' 2025-07-24T03:55:18.0889100Z adding 'torch/include/ATen/ops/conv_transpose3d.h' 2025-07-24T03:55:18.0890160Z adding 'torch/include/ATen/ops/conv_transpose3d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0890910Z adding 'torch/include/ATen/ops/conv_transpose3d_native.h' 2025-07-24T03:55:18.0891860Z adding 'torch/include/ATen/ops/conv_transpose3d_ops.h' 2025-07-24T03:55:18.0893800Z adding 'torch/include/ATen/ops/convolution.h' 2025-07-24T03:55:18.0894930Z adding 'torch/include/ATen/ops/convolution_backward.h' 2025-07-24T03:55:18.0896130Z adding 'torch/include/ATen/ops/convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0897050Z adding 'torch/include/ATen/ops/convolution_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0898070Z adding 'torch/include/ATen/ops/convolution_backward_native.h' 2025-07-24T03:55:18.0899160Z adding 'torch/include/ATen/ops/convolution_backward_ops.h' 2025-07-24T03:55:18.0900620Z adding 'torch/include/ATen/ops/convolution_backward_overrideable.h' 2025-07-24T03:55:18.0901780Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0902720Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_native.h' 2025-07-24T03:55:18.0903860Z adding 'torch/include/ATen/ops/convolution_backward_overrideable_ops.h' 2025-07-24T03:55:18.0904870Z adding 'torch/include/ATen/ops/convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0905690Z adding 'torch/include/ATen/ops/convolution_native.h' 2025-07-24T03:55:18.0906840Z adding 'torch/include/ATen/ops/convolution_ops.h' 2025-07-24T03:55:18.0908130Z adding 'torch/include/ATen/ops/convolution_overrideable.h' 2025-07-24T03:55:18.0909260Z adding 'torch/include/ATen/ops/convolution_overrideable_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0910080Z adding 'torch/include/ATen/ops/convolution_overrideable_native.h' 2025-07-24T03:55:18.0911180Z adding 'torch/include/ATen/ops/convolution_overrideable_ops.h' 2025-07-24T03:55:18.0912090Z adding 'torch/include/ATen/ops/copy.h' 2025-07-24T03:55:18.0913240Z adding 'torch/include/ATen/ops/copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0914150Z adding 'torch/include/ATen/ops/copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0915020Z adding 'torch/include/ATen/ops/copy_meta_dispatch.h' 2025-07-24T03:55:18.0915930Z adding 'torch/include/ATen/ops/copy_native.h' 2025-07-24T03:55:18.0916920Z adding 'torch/include/ATen/ops/copy_ops.h' 2025-07-24T03:55:18.0917930Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse.h' 2025-07-24T03:55:18.0919010Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0919890Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_meta_dispatch.h' 2025-07-24T03:55:18.0920740Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_native.h' 2025-07-24T03:55:18.0921760Z adding 'torch/include/ATen/ops/copy_sparse_to_sparse_ops.h' 2025-07-24T03:55:18.0922770Z adding 'torch/include/ATen/ops/copysign.h' 2025-07-24T03:55:18.0923790Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0924700Z adding 'torch/include/ATen/ops/copysign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0925460Z adding 'torch/include/ATen/ops/copysign_cpu_dispatch.h' 2025-07-24T03:55:18.0926380Z adding 'torch/include/ATen/ops/copysign_cuda_dispatch.h' 2025-07-24T03:55:18.0927250Z adding 'torch/include/ATen/ops/copysign_meta.h' 2025-07-24T03:55:18.0928100Z adding 'torch/include/ATen/ops/copysign_meta_dispatch.h' 2025-07-24T03:55:18.0928930Z adding 'torch/include/ATen/ops/copysign_mps_dispatch.h' 2025-07-24T03:55:18.0929890Z adding 'torch/include/ATen/ops/copysign_native.h' 2025-07-24T03:55:18.0931050Z adding 'torch/include/ATen/ops/copysign_ops.h' 2025-07-24T03:55:18.0931930Z adding 'torch/include/ATen/ops/corrcoef.h' 2025-07-24T03:55:18.0932860Z adding 'torch/include/ATen/ops/corrcoef_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0933770Z adding 'torch/include/ATen/ops/corrcoef_native.h' 2025-07-24T03:55:18.0934690Z adding 'torch/include/ATen/ops/corrcoef_ops.h' 2025-07-24T03:55:18.0935580Z adding 'torch/include/ATen/ops/cos.h' 2025-07-24T03:55:18.0936590Z adding 'torch/include/ATen/ops/cos_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0937470Z adding 'torch/include/ATen/ops/cos_cpu_dispatch.h' 2025-07-24T03:55:18.0938380Z adding 'torch/include/ATen/ops/cos_cuda_dispatch.h' 2025-07-24T03:55:18.0939210Z adding 'torch/include/ATen/ops/cos_meta.h' 2025-07-24T03:55:18.0940090Z adding 'torch/include/ATen/ops/cos_meta_dispatch.h' 2025-07-24T03:55:18.0941060Z adding 'torch/include/ATen/ops/cos_mps_dispatch.h' 2025-07-24T03:55:18.0941980Z adding 'torch/include/ATen/ops/cos_native.h' 2025-07-24T03:55:18.0943000Z adding 'torch/include/ATen/ops/cos_ops.h' 2025-07-24T03:55:18.0943910Z adding 'torch/include/ATen/ops/cosh.h' 2025-07-24T03:55:18.0945000Z adding 'torch/include/ATen/ops/cosh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0945740Z adding 'torch/include/ATen/ops/cosh_cpu_dispatch.h' 2025-07-24T03:55:18.0946580Z adding 'torch/include/ATen/ops/cosh_cuda_dispatch.h' 2025-07-24T03:55:18.0947470Z adding 'torch/include/ATen/ops/cosh_meta.h' 2025-07-24T03:55:18.0948390Z adding 'torch/include/ATen/ops/cosh_meta_dispatch.h' 2025-07-24T03:55:18.0949240Z adding 'torch/include/ATen/ops/cosh_mps_dispatch.h' 2025-07-24T03:55:18.0950060Z adding 'torch/include/ATen/ops/cosh_native.h' 2025-07-24T03:55:18.0951050Z adding 'torch/include/ATen/ops/cosh_ops.h' 2025-07-24T03:55:18.0952130Z adding 'torch/include/ATen/ops/cosine_embedding_loss.h' 2025-07-24T03:55:18.0953180Z adding 'torch/include/ATen/ops/cosine_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0953990Z adding 'torch/include/ATen/ops/cosine_embedding_loss_native.h' 2025-07-24T03:55:18.0954960Z adding 'torch/include/ATen/ops/cosine_embedding_loss_ops.h' 2025-07-24T03:55:18.0955970Z adding 'torch/include/ATen/ops/cosine_similarity.h' 2025-07-24T03:55:18.0957000Z adding 'torch/include/ATen/ops/cosine_similarity_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0957810Z adding 'torch/include/ATen/ops/cosine_similarity_native.h' 2025-07-24T03:55:18.0958700Z adding 'torch/include/ATen/ops/cosine_similarity_ops.h' 2025-07-24T03:55:18.0959780Z adding 'torch/include/ATen/ops/count_nonzero.h' 2025-07-24T03:55:18.0960810Z adding 'torch/include/ATen/ops/count_nonzero_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0961640Z adding 'torch/include/ATen/ops/count_nonzero_cpu_dispatch.h' 2025-07-24T03:55:18.0962450Z adding 'torch/include/ATen/ops/count_nonzero_cuda_dispatch.h' 2025-07-24T03:55:18.0963420Z adding 'torch/include/ATen/ops/count_nonzero_mps_dispatch.h' 2025-07-24T03:55:18.0964270Z adding 'torch/include/ATen/ops/count_nonzero_native.h' 2025-07-24T03:55:18.0965290Z adding 'torch/include/ATen/ops/count_nonzero_ops.h' 2025-07-24T03:55:18.0966200Z adding 'torch/include/ATen/ops/cov.h' 2025-07-24T03:55:18.0967240Z adding 'torch/include/ATen/ops/cov_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0968040Z adding 'torch/include/ATen/ops/cov_native.h' 2025-07-24T03:55:18.0969000Z adding 'torch/include/ATen/ops/cov_ops.h' 2025-07-24T03:55:18.0969950Z adding 'torch/include/ATen/ops/cross.h' 2025-07-24T03:55:18.0971070Z adding 'torch/include/ATen/ops/cross_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0972010Z adding 'torch/include/ATen/ops/cross_entropy_loss.h' 2025-07-24T03:55:18.0973050Z adding 'torch/include/ATen/ops/cross_entropy_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0973810Z adding 'torch/include/ATen/ops/cross_entropy_loss_native.h' 2025-07-24T03:55:18.0974870Z adding 'torch/include/ATen/ops/cross_entropy_loss_ops.h' 2025-07-24T03:55:18.0975720Z adding 'torch/include/ATen/ops/cross_native.h' 2025-07-24T03:55:18.0976660Z adding 'torch/include/ATen/ops/cross_ops.h' 2025-07-24T03:55:18.0977520Z adding 'torch/include/ATen/ops/crow_indices.h' 2025-07-24T03:55:18.0978620Z adding 'torch/include/ATen/ops/crow_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0979560Z adding 'torch/include/ATen/ops/crow_indices_copy.h' 2025-07-24T03:55:18.0980550Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0981440Z adding 'torch/include/ATen/ops/crow_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.0982300Z adding 'torch/include/ATen/ops/crow_indices_copy_native.h' 2025-07-24T03:55:18.0983290Z adding 'torch/include/ATen/ops/crow_indices_copy_ops.h' 2025-07-24T03:55:18.0984170Z adding 'torch/include/ATen/ops/crow_indices_native.h' 2025-07-24T03:55:18.0985060Z adding 'torch/include/ATen/ops/crow_indices_ops.h' 2025-07-24T03:55:18.0986080Z adding 'torch/include/ATen/ops/ctc_loss.h' 2025-07-24T03:55:18.0987100Z adding 'torch/include/ATen/ops/ctc_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.0987920Z adding 'torch/include/ATen/ops/ctc_loss_native.h' 2025-07-24T03:55:18.0989000Z adding 'torch/include/ATen/ops/ctc_loss_ops.h' 2025-07-24T03:55:18.0990090Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator.h' 2025-07-24T03:55:18.0991100Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward.h' 2025-07-24T03:55:18.0992100Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0992890Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_cuda_dispatch.h' 2025-07-24T03:55:18.0993820Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_native.h' 2025-07-24T03:55:18.0994840Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_backward_ops.h' 2025-07-24T03:55:18.0995830Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.0996690Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_cuda_dispatch.h' 2025-07-24T03:55:18.0997670Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_native.h' 2025-07-24T03:55:18.0998670Z adding 'torch/include/ATen/ops/cudnn_affine_grid_generator_ops.h' 2025-07-24T03:55:18.0999690Z adding 'torch/include/ATen/ops/cudnn_batch_norm.h' 2025-07-24T03:55:18.1000790Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward.h' 2025-07-24T03:55:18.1002020Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1002900Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1003810Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_native.h' 2025-07-24T03:55:18.1004880Z adding 'torch/include/ATen/ops/cudnn_batch_norm_backward_ops.h' 2025-07-24T03:55:18.1005990Z adding 'torch/include/ATen/ops/cudnn_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1010330Z adding 'torch/include/ATen/ops/cudnn_batch_norm_cuda_dispatch.h' 2025-07-24T03:55:18.1011030Z adding 'torch/include/ATen/ops/cudnn_batch_norm_native.h' 2025-07-24T03:55:18.1012090Z adding 'torch/include/ATen/ops/cudnn_batch_norm_ops.h' 2025-07-24T03:55:18.1013490Z adding 'torch/include/ATen/ops/cudnn_convolution.h' 2025-07-24T03:55:18.1014780Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu.h' 2025-07-24T03:55:18.1015900Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1016730Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_cuda_dispatch.h' 2025-07-24T03:55:18.1017720Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_native.h' 2025-07-24T03:55:18.1018770Z adding 'torch/include/ATen/ops/cudnn_convolution_add_relu_ops.h' 2025-07-24T03:55:18.1019750Z adding 'torch/include/ATen/ops/cudnn_convolution_cuda_dispatch.h' 2025-07-24T03:55:18.1020610Z adding 'torch/include/ATen/ops/cudnn_convolution_native.h' 2025-07-24T03:55:18.1021740Z adding 'torch/include/ATen/ops/cudnn_convolution_ops.h' 2025-07-24T03:55:18.1022940Z adding 'torch/include/ATen/ops/cudnn_convolution_relu.h' 2025-07-24T03:55:18.1024030Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1024850Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_cuda_dispatch.h' 2025-07-24T03:55:18.1025820Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_native.h' 2025-07-24T03:55:18.1026840Z adding 'torch/include/ATen/ops/cudnn_convolution_relu_ops.h' 2025-07-24T03:55:18.1028180Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose.h' 2025-07-24T03:55:18.1029280Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1030250Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_cuda_dispatch.h' 2025-07-24T03:55:18.1031130Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_native.h' 2025-07-24T03:55:18.1032170Z adding 'torch/include/ATen/ops/cudnn_convolution_transpose_ops.h' 2025-07-24T03:55:18.1033050Z adding 'torch/include/ATen/ops/cudnn_grid_sampler.h' 2025-07-24T03:55:18.1034130Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward.h' 2025-07-24T03:55:18.1035170Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1036070Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1036890Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_native.h' 2025-07-24T03:55:18.1037990Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_backward_ops.h' 2025-07-24T03:55:18.1038990Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1039790Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_cuda_dispatch.h' 2025-07-24T03:55:18.1040610Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_native.h' 2025-07-24T03:55:18.1041680Z adding 'torch/include/ATen/ops/cudnn_grid_sampler_ops.h' 2025-07-24T03:55:18.1042560Z adding 'torch/include/ATen/ops/cudnn_is_acceptable.h' 2025-07-24T03:55:18.1043530Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1044320Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_native.h' 2025-07-24T03:55:18.1045310Z adding 'torch/include/ATen/ops/cudnn_is_acceptable_ops.h' 2025-07-24T03:55:18.1046280Z adding 'torch/include/ATen/ops/cummax.h' 2025-07-24T03:55:18.1047270Z adding 'torch/include/ATen/ops/cummax_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1048140Z adding 'torch/include/ATen/ops/cummax_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1049110Z adding 'torch/include/ATen/ops/cummax_native.h' 2025-07-24T03:55:18.1050190Z adding 'torch/include/ATen/ops/cummax_ops.h' 2025-07-24T03:55:18.1051130Z adding 'torch/include/ATen/ops/cummaxmin_backward.h' 2025-07-24T03:55:18.1052120Z adding 'torch/include/ATen/ops/cummaxmin_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1052980Z adding 'torch/include/ATen/ops/cummaxmin_backward_native.h' 2025-07-24T03:55:18.1053930Z adding 'torch/include/ATen/ops/cummaxmin_backward_ops.h' 2025-07-24T03:55:18.1054840Z adding 'torch/include/ATen/ops/cummin.h' 2025-07-24T03:55:18.1055850Z adding 'torch/include/ATen/ops/cummin_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1056880Z adding 'torch/include/ATen/ops/cummin_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1057670Z adding 'torch/include/ATen/ops/cummin_native.h' 2025-07-24T03:55:18.1058730Z adding 'torch/include/ATen/ops/cummin_ops.h' 2025-07-24T03:55:18.1059680Z adding 'torch/include/ATen/ops/cumprod.h' 2025-07-24T03:55:18.1060720Z adding 'torch/include/ATen/ops/cumprod_backward.h' 2025-07-24T03:55:18.1061740Z adding 'torch/include/ATen/ops/cumprod_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1062670Z adding 'torch/include/ATen/ops/cumprod_backward_native.h' 2025-07-24T03:55:18.1063600Z adding 'torch/include/ATen/ops/cumprod_backward_ops.h' 2025-07-24T03:55:18.1064720Z adding 'torch/include/ATen/ops/cumprod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1065680Z adding 'torch/include/ATen/ops/cumprod_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1066560Z adding 'torch/include/ATen/ops/cumprod_cpu_dispatch.h' 2025-07-24T03:55:18.1067430Z adding 'torch/include/ATen/ops/cumprod_cuda_dispatch.h' 2025-07-24T03:55:18.1068400Z adding 'torch/include/ATen/ops/cumprod_meta.h' 2025-07-24T03:55:18.1069300Z adding 'torch/include/ATen/ops/cumprod_meta_dispatch.h' 2025-07-24T03:55:18.1070170Z adding 'torch/include/ATen/ops/cumprod_mps_dispatch.h' 2025-07-24T03:55:18.1071120Z adding 'torch/include/ATen/ops/cumprod_native.h' 2025-07-24T03:55:18.1072400Z adding 'torch/include/ATen/ops/cumprod_ops.h' 2025-07-24T03:55:18.1073440Z adding 'torch/include/ATen/ops/cumsum.h' 2025-07-24T03:55:18.1074500Z adding 'torch/include/ATen/ops/cumsum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1075420Z adding 'torch/include/ATen/ops/cumsum_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1076380Z adding 'torch/include/ATen/ops/cumsum_cpu_dispatch.h' 2025-07-24T03:55:18.1077260Z adding 'torch/include/ATen/ops/cumsum_cuda_dispatch.h' 2025-07-24T03:55:18.1078090Z adding 'torch/include/ATen/ops/cumsum_meta.h' 2025-07-24T03:55:18.1079000Z adding 'torch/include/ATen/ops/cumsum_meta_dispatch.h' 2025-07-24T03:55:18.1079980Z adding 'torch/include/ATen/ops/cumsum_mps_dispatch.h' 2025-07-24T03:55:18.1080880Z adding 'torch/include/ATen/ops/cumsum_native.h' 2025-07-24T03:55:18.1082010Z adding 'torch/include/ATen/ops/cumsum_ops.h' 2025-07-24T03:55:18.1082940Z adding 'torch/include/ATen/ops/cumulative_trapezoid.h' 2025-07-24T03:55:18.1084060Z adding 'torch/include/ATen/ops/cumulative_trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1084910Z adding 'torch/include/ATen/ops/cumulative_trapezoid_native.h' 2025-07-24T03:55:18.1085860Z adding 'torch/include/ATen/ops/cumulative_trapezoid_ops.h' 2025-07-24T03:55:18.1086640Z adding 'torch/include/ATen/ops/data.h' 2025-07-24T03:55:18.1087700Z adding 'torch/include/ATen/ops/data_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1088490Z adding 'torch/include/ATen/ops/data_native.h' 2025-07-24T03:55:18.1089380Z adding 'torch/include/ATen/ops/data_ops.h' 2025-07-24T03:55:18.1090280Z adding 'torch/include/ATen/ops/deg2rad.h' 2025-07-24T03:55:18.1091400Z adding 'torch/include/ATen/ops/deg2rad_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1092180Z adding 'torch/include/ATen/ops/deg2rad_native.h' 2025-07-24T03:55:18.1093120Z adding 'torch/include/ATen/ops/deg2rad_ops.h' 2025-07-24T03:55:18.1093950Z adding 'torch/include/ATen/ops/dense_dim.h' 2025-07-24T03:55:18.1095030Z adding 'torch/include/ATen/ops/dense_dim_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1095780Z adding 'torch/include/ATen/ops/dense_dim_native.h' 2025-07-24T03:55:18.1096670Z adding 'torch/include/ATen/ops/dense_dim_ops.h' 2025-07-24T03:55:18.1097650Z adding 'torch/include/ATen/ops/dequantize.h' 2025-07-24T03:55:18.1098810Z adding 'torch/include/ATen/ops/dequantize_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1099620Z adding 'torch/include/ATen/ops/dequantize_cpu_dispatch.h' 2025-07-24T03:55:18.1100430Z adding 'torch/include/ATen/ops/dequantize_cuda_dispatch.h' 2025-07-24T03:55:18.1101290Z adding 'torch/include/ATen/ops/dequantize_native.h' 2025-07-24T03:55:18.1102420Z adding 'torch/include/ATen/ops/dequantize_ops.h' 2025-07-24T03:55:18.1103280Z adding 'torch/include/ATen/ops/det.h' 2025-07-24T03:55:18.1104240Z adding 'torch/include/ATen/ops/det_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1104980Z adding 'torch/include/ATen/ops/det_native.h' 2025-07-24T03:55:18.1106000Z adding 'torch/include/ATen/ops/det_ops.h' 2025-07-24T03:55:18.1106930Z adding 'torch/include/ATen/ops/detach.h' 2025-07-24T03:55:18.1108030Z adding 'torch/include/ATen/ops/detach_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1108860Z adding 'torch/include/ATen/ops/detach_copy.h' 2025-07-24T03:55:18.1109940Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1110880Z adding 'torch/include/ATen/ops/detach_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1111610Z adding 'torch/include/ATen/ops/detach_copy_native.h' 2025-07-24T03:55:18.1112560Z adding 'torch/include/ATen/ops/detach_copy_ops.h' 2025-07-24T03:55:18.1113540Z adding 'torch/include/ATen/ops/detach_native.h' 2025-07-24T03:55:18.1114480Z adding 'torch/include/ATen/ops/detach_ops.h' 2025-07-24T03:55:18.1115400Z adding 'torch/include/ATen/ops/diag.h' 2025-07-24T03:55:18.1116360Z adding 'torch/include/ATen/ops/diag_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1117330Z adding 'torch/include/ATen/ops/diag_embed.h' 2025-07-24T03:55:18.1118340Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1119240Z adding 'torch/include/ATen/ops/diag_embed_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1119980Z adding 'torch/include/ATen/ops/diag_embed_native.h' 2025-07-24T03:55:18.1121060Z adding 'torch/include/ATen/ops/diag_embed_ops.h' 2025-07-24T03:55:18.1121990Z adding 'torch/include/ATen/ops/diag_native.h' 2025-07-24T03:55:18.1122900Z adding 'torch/include/ATen/ops/diag_ops.h' 2025-07-24T03:55:18.1123750Z adding 'torch/include/ATen/ops/diagflat.h' 2025-07-24T03:55:18.1124850Z adding 'torch/include/ATen/ops/diagflat_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1125580Z adding 'torch/include/ATen/ops/diagflat_native.h' 2025-07-24T03:55:18.1126470Z adding 'torch/include/ATen/ops/diagflat_ops.h' 2025-07-24T03:55:18.1127350Z adding 'torch/include/ATen/ops/diagonal.h' 2025-07-24T03:55:18.1128570Z adding 'torch/include/ATen/ops/diagonal_backward.h' 2025-07-24T03:55:18.1129660Z adding 'torch/include/ATen/ops/diagonal_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1130450Z adding 'torch/include/ATen/ops/diagonal_backward_native.h' 2025-07-24T03:55:18.1131400Z adding 'torch/include/ATen/ops/diagonal_backward_ops.h' 2025-07-24T03:55:18.1132430Z adding 'torch/include/ATen/ops/diagonal_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1133320Z adding 'torch/include/ATen/ops/diagonal_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1134160Z adding 'torch/include/ATen/ops/diagonal_copy.h' 2025-07-24T03:55:18.1135130Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1136160Z adding 'torch/include/ATen/ops/diagonal_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1136890Z adding 'torch/include/ATen/ops/diagonal_copy_native.h' 2025-07-24T03:55:18.1137880Z adding 'torch/include/ATen/ops/diagonal_copy_ops.h' 2025-07-24T03:55:18.1138670Z adding 'torch/include/ATen/ops/diagonal_native.h' 2025-07-24T03:55:18.1139730Z adding 'torch/include/ATen/ops/diagonal_ops.h' 2025-07-24T03:55:18.1140670Z adding 'torch/include/ATen/ops/diagonal_scatter.h' 2025-07-24T03:55:18.1141650Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1142580Z adding 'torch/include/ATen/ops/diagonal_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1143400Z adding 'torch/include/ATen/ops/diagonal_scatter_native.h' 2025-07-24T03:55:18.1144370Z adding 'torch/include/ATen/ops/diagonal_scatter_ops.h' 2025-07-24T03:55:18.1145260Z adding 'torch/include/ATen/ops/diff.h' 2025-07-24T03:55:18.1146250Z adding 'torch/include/ATen/ops/diff_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1147130Z adding 'torch/include/ATen/ops/diff_native.h' 2025-07-24T03:55:18.1148120Z adding 'torch/include/ATen/ops/diff_ops.h' 2025-07-24T03:55:18.1149000Z adding 'torch/include/ATen/ops/digamma.h' 2025-07-24T03:55:18.1150020Z adding 'torch/include/ATen/ops/digamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1150900Z adding 'torch/include/ATen/ops/digamma_cpu_dispatch.h' 2025-07-24T03:55:18.1151760Z adding 'torch/include/ATen/ops/digamma_cuda_dispatch.h' 2025-07-24T03:55:18.1152580Z adding 'torch/include/ATen/ops/digamma_meta.h' 2025-07-24T03:55:18.1153430Z adding 'torch/include/ATen/ops/digamma_meta_dispatch.h' 2025-07-24T03:55:18.1154350Z adding 'torch/include/ATen/ops/digamma_mps_dispatch.h' 2025-07-24T03:55:18.1155230Z adding 'torch/include/ATen/ops/digamma_native.h' 2025-07-24T03:55:18.1156200Z adding 'torch/include/ATen/ops/digamma_ops.h' 2025-07-24T03:55:18.1157090Z adding 'torch/include/ATen/ops/dist.h' 2025-07-24T03:55:18.1158190Z adding 'torch/include/ATen/ops/dist_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1158980Z adding 'torch/include/ATen/ops/dist_native.h' 2025-07-24T03:55:18.1159950Z adding 'torch/include/ATen/ops/dist_ops.h' 2025-07-24T03:55:18.1160970Z adding 'torch/include/ATen/ops/div.h' 2025-07-24T03:55:18.1162130Z adding 'torch/include/ATen/ops/div_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1163070Z adding 'torch/include/ATen/ops/div_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1163870Z adding 'torch/include/ATen/ops/div_cpu_dispatch.h' 2025-07-24T03:55:18.1164730Z adding 'torch/include/ATen/ops/div_cuda_dispatch.h' 2025-07-24T03:55:18.1165700Z adding 'torch/include/ATen/ops/div_meta.h' 2025-07-24T03:55:18.1166610Z adding 'torch/include/ATen/ops/div_meta_dispatch.h' 2025-07-24T03:55:18.1167460Z adding 'torch/include/ATen/ops/div_mps_dispatch.h' 2025-07-24T03:55:18.1168460Z adding 'torch/include/ATen/ops/div_native.h' 2025-07-24T03:55:18.1170030Z adding 'torch/include/ATen/ops/div_ops.h' 2025-07-24T03:55:18.1171020Z adding 'torch/include/ATen/ops/divide.h' 2025-07-24T03:55:18.1172050Z adding 'torch/include/ATen/ops/divide_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1172870Z adding 'torch/include/ATen/ops/divide_native.h' 2025-07-24T03:55:18.1174270Z adding 'torch/include/ATen/ops/divide_ops.h' 2025-07-24T03:55:18.1175170Z adding 'torch/include/ATen/ops/dot.h' 2025-07-24T03:55:18.1176150Z adding 'torch/include/ATen/ops/dot_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1176930Z adding 'torch/include/ATen/ops/dot_cpu_dispatch.h' 2025-07-24T03:55:18.1177880Z adding 'torch/include/ATen/ops/dot_cuda_dispatch.h' 2025-07-24T03:55:18.1178700Z adding 'torch/include/ATen/ops/dot_mps_dispatch.h' 2025-07-24T03:55:18.1179540Z adding 'torch/include/ATen/ops/dot_native.h' 2025-07-24T03:55:18.1180480Z adding 'torch/include/ATen/ops/dot_ops.h' 2025-07-24T03:55:18.1181460Z adding 'torch/include/ATen/ops/dropout.h' 2025-07-24T03:55:18.1182480Z adding 'torch/include/ATen/ops/dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1183240Z adding 'torch/include/ATen/ops/dropout_native.h' 2025-07-24T03:55:18.1184160Z adding 'torch/include/ATen/ops/dropout_ops.h' 2025-07-24T03:55:18.1185170Z adding 'torch/include/ATen/ops/dsplit.h' 2025-07-24T03:55:18.1186130Z adding 'torch/include/ATen/ops/dsplit_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1186910Z adding 'torch/include/ATen/ops/dsplit_native.h' 2025-07-24T03:55:18.1187830Z adding 'torch/include/ATen/ops/dsplit_ops.h' 2025-07-24T03:55:18.1188820Z adding 'torch/include/ATen/ops/dstack.h' 2025-07-24T03:55:18.1189810Z adding 'torch/include/ATen/ops/dstack_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1190560Z adding 'torch/include/ATen/ops/dstack_native.h' 2025-07-24T03:55:18.1191500Z adding 'torch/include/ATen/ops/dstack_ops.h' 2025-07-24T03:55:18.1192520Z adding 'torch/include/ATen/ops/einsum.h' 2025-07-24T03:55:18.1193570Z adding 'torch/include/ATen/ops/einsum_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1194330Z adding 'torch/include/ATen/ops/einsum_native.h' 2025-07-24T03:55:18.1195230Z adding 'torch/include/ATen/ops/einsum_ops.h' 2025-07-24T03:55:18.1196280Z adding 'torch/include/ATen/ops/elu.h' 2025-07-24T03:55:18.1197290Z adding 'torch/include/ATen/ops/elu_backward.h' 2025-07-24T03:55:18.1198490Z adding 'torch/include/ATen/ops/elu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1199280Z adding 'torch/include/ATen/ops/elu_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1200260Z adding 'torch/include/ATen/ops/elu_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1201160Z adding 'torch/include/ATen/ops/elu_backward_meta.h' 2025-07-24T03:55:18.1202060Z adding 'torch/include/ATen/ops/elu_backward_meta_dispatch.h' 2025-07-24T03:55:18.1202950Z adding 'torch/include/ATen/ops/elu_backward_mps_dispatch.h' 2025-07-24T03:55:18.1203960Z adding 'torch/include/ATen/ops/elu_backward_native.h' 2025-07-24T03:55:18.1205020Z adding 'torch/include/ATen/ops/elu_backward_ops.h' 2025-07-24T03:55:18.1206090Z adding 'torch/include/ATen/ops/elu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1206900Z adding 'torch/include/ATen/ops/elu_cpu_dispatch.h' 2025-07-24T03:55:18.1207890Z adding 'torch/include/ATen/ops/elu_cuda_dispatch.h' 2025-07-24T03:55:18.1208790Z adding 'torch/include/ATen/ops/elu_meta.h' 2025-07-24T03:55:18.1209680Z adding 'torch/include/ATen/ops/elu_meta_dispatch.h' 2025-07-24T03:55:18.1210560Z adding 'torch/include/ATen/ops/elu_mps_dispatch.h' 2025-07-24T03:55:18.1211530Z adding 'torch/include/ATen/ops/elu_native.h' 2025-07-24T03:55:18.1212550Z adding 'torch/include/ATen/ops/elu_ops.h' 2025-07-24T03:55:18.1213670Z adding 'torch/include/ATen/ops/embedding.h' 2025-07-24T03:55:18.1214680Z adding 'torch/include/ATen/ops/embedding_backward.h' 2025-07-24T03:55:18.1215870Z adding 'torch/include/ATen/ops/embedding_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1216620Z adding 'torch/include/ATen/ops/embedding_backward_native.h' 2025-07-24T03:55:18.1217560Z adding 'torch/include/ATen/ops/embedding_backward_ops.h' 2025-07-24T03:55:18.1218510Z adding 'torch/include/ATen/ops/embedding_bag.h' 2025-07-24T03:55:18.1219670Z adding 'torch/include/ATen/ops/embedding_bag_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1220580Z adding 'torch/include/ATen/ops/embedding_bag_native.h' 2025-07-24T03:55:18.1221610Z adding 'torch/include/ATen/ops/embedding_bag_ops.h' 2025-07-24T03:55:18.1222650Z adding 'torch/include/ATen/ops/embedding_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1223830Z adding 'torch/include/ATen/ops/embedding_dense_backward.h' 2025-07-24T03:55:18.1224900Z adding 'torch/include/ATen/ops/embedding_dense_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1225740Z adding 'torch/include/ATen/ops/embedding_dense_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1226570Z adding 'torch/include/ATen/ops/embedding_dense_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1227500Z adding 'torch/include/ATen/ops/embedding_dense_backward_mps_dispatch.h' 2025-07-24T03:55:18.1228410Z adding 'torch/include/ATen/ops/embedding_dense_backward_native.h' 2025-07-24T03:55:18.1229430Z adding 'torch/include/ATen/ops/embedding_dense_backward_ops.h' 2025-07-24T03:55:18.1230600Z adding 'torch/include/ATen/ops/embedding_native.h' 2025-07-24T03:55:18.1231690Z adding 'torch/include/ATen/ops/embedding_ops.h' 2025-07-24T03:55:18.1232660Z adding 'torch/include/ATen/ops/embedding_renorm.h' 2025-07-24T03:55:18.1233660Z adding 'torch/include/ATen/ops/embedding_renorm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1234450Z adding 'torch/include/ATen/ops/embedding_renorm_cpu_dispatch.h' 2025-07-24T03:55:18.1235400Z adding 'torch/include/ATen/ops/embedding_renorm_cuda_dispatch.h' 2025-07-24T03:55:18.1236220Z adding 'torch/include/ATen/ops/embedding_renorm_meta_dispatch.h' 2025-07-24T03:55:18.1237090Z adding 'torch/include/ATen/ops/embedding_renorm_native.h' 2025-07-24T03:55:18.1238100Z adding 'torch/include/ATen/ops/embedding_renorm_ops.h' 2025-07-24T03:55:18.1239120Z adding 'torch/include/ATen/ops/embedding_sparse_backward.h' 2025-07-24T03:55:18.1240130Z adding 'torch/include/ATen/ops/embedding_sparse_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1240910Z adding 'torch/include/ATen/ops/embedding_sparse_backward_native.h' 2025-07-24T03:55:18.1241850Z adding 'torch/include/ATen/ops/embedding_sparse_backward_ops.h' 2025-07-24T03:55:18.1243420Z adding 'torch/include/ATen/ops/empty.h' 2025-07-24T03:55:18.1244400Z adding 'torch/include/ATen/ops/empty_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1245310Z adding 'torch/include/ATen/ops/empty_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1246170Z adding 'torch/include/ATen/ops/empty_cpu_dispatch.h' 2025-07-24T03:55:18.1247150Z adding 'torch/include/ATen/ops/empty_cuda_dispatch.h' 2025-07-24T03:55:18.1248180Z adding 'torch/include/ATen/ops/empty_like.h' 2025-07-24T03:55:18.1249200Z adding 'torch/include/ATen/ops/empty_like_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1250060Z adding 'torch/include/ATen/ops/empty_like_native.h' 2025-07-24T03:55:18.1251150Z adding 'torch/include/ATen/ops/empty_like_ops.h' 2025-07-24T03:55:18.1252070Z adding 'torch/include/ATen/ops/empty_meta_dispatch.h' 2025-07-24T03:55:18.1252920Z adding 'torch/include/ATen/ops/empty_mps_dispatch.h' 2025-07-24T03:55:18.1253910Z adding 'torch/include/ATen/ops/empty_native.h' 2025-07-24T03:55:18.1255160Z adding 'torch/include/ATen/ops/empty_ops.h' 2025-07-24T03:55:18.1256440Z adding 'torch/include/ATen/ops/empty_permuted.h' 2025-07-24T03:55:18.1257500Z adding 'torch/include/ATen/ops/empty_permuted_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1258300Z adding 'torch/include/ATen/ops/empty_permuted_native.h' 2025-07-24T03:55:18.1259380Z adding 'torch/include/ATen/ops/empty_permuted_ops.h' 2025-07-24T03:55:18.1260440Z adding 'torch/include/ATen/ops/empty_quantized.h' 2025-07-24T03:55:18.1261440Z adding 'torch/include/ATen/ops/empty_quantized_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1262230Z adding 'torch/include/ATen/ops/empty_quantized_native.h' 2025-07-24T03:55:18.1263350Z adding 'torch/include/ATen/ops/empty_quantized_ops.h' 2025-07-24T03:55:18.1264590Z adding 'torch/include/ATen/ops/empty_strided.h' 2025-07-24T03:55:18.1265600Z adding 'torch/include/ATen/ops/empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1266430Z adding 'torch/include/ATen/ops/empty_strided_cpu_dispatch.h' 2025-07-24T03:55:18.1267420Z adding 'torch/include/ATen/ops/empty_strided_cuda_dispatch.h' 2025-07-24T03:55:18.1268330Z adding 'torch/include/ATen/ops/empty_strided_meta_dispatch.h' 2025-07-24T03:55:18.1269200Z adding 'torch/include/ATen/ops/empty_strided_mps_dispatch.h' 2025-07-24T03:55:18.1270140Z adding 'torch/include/ATen/ops/empty_strided_native.h' 2025-07-24T03:55:18.1271280Z adding 'torch/include/ATen/ops/empty_strided_ops.h' 2025-07-24T03:55:18.1272250Z adding 'torch/include/ATen/ops/eq.h' 2025-07-24T03:55:18.1273310Z adding 'torch/include/ATen/ops/eq_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1274230Z adding 'torch/include/ATen/ops/eq_cpu_dispatch.h' 2025-07-24T03:55:18.1275220Z adding 'torch/include/ATen/ops/eq_cuda_dispatch.h' 2025-07-24T03:55:18.1276130Z adding 'torch/include/ATen/ops/eq_meta.h' 2025-07-24T03:55:18.1276960Z adding 'torch/include/ATen/ops/eq_meta_dispatch.h' 2025-07-24T03:55:18.1277770Z adding 'torch/include/ATen/ops/eq_mps_dispatch.h' 2025-07-24T03:55:18.1278820Z adding 'torch/include/ATen/ops/eq_native.h' 2025-07-24T03:55:18.1279990Z adding 'torch/include/ATen/ops/eq_ops.h' 2025-07-24T03:55:18.1280840Z adding 'torch/include/ATen/ops/equal.h' 2025-07-24T03:55:18.1281740Z adding 'torch/include/ATen/ops/equal_cpu_dispatch.h' 2025-07-24T03:55:18.1282690Z adding 'torch/include/ATen/ops/equal_cuda_dispatch.h' 2025-07-24T03:55:18.1283550Z adding 'torch/include/ATen/ops/equal_mps_dispatch.h' 2025-07-24T03:55:18.1284440Z adding 'torch/include/ATen/ops/equal_native.h' 2025-07-24T03:55:18.1285350Z adding 'torch/include/ATen/ops/equal_ops.h' 2025-07-24T03:55:18.1286350Z adding 'torch/include/ATen/ops/erf.h' 2025-07-24T03:55:18.1287370Z adding 'torch/include/ATen/ops/erf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1288140Z adding 'torch/include/ATen/ops/erf_cpu_dispatch.h' 2025-07-24T03:55:18.1288960Z adding 'torch/include/ATen/ops/erf_cuda_dispatch.h' 2025-07-24T03:55:18.1289900Z adding 'torch/include/ATen/ops/erf_meta.h' 2025-07-24T03:55:18.1290760Z adding 'torch/include/ATen/ops/erf_meta_dispatch.h' 2025-07-24T03:55:18.1291550Z adding 'torch/include/ATen/ops/erf_mps_dispatch.h' 2025-07-24T03:55:18.1292420Z adding 'torch/include/ATen/ops/erf_native.h' 2025-07-24T03:55:18.1293490Z adding 'torch/include/ATen/ops/erf_ops.h' 2025-07-24T03:55:18.1294540Z adding 'torch/include/ATen/ops/erfc.h' 2025-07-24T03:55:18.1295530Z adding 'torch/include/ATen/ops/erfc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1296270Z adding 'torch/include/ATen/ops/erfc_cpu_dispatch.h' 2025-07-24T03:55:18.1297230Z adding 'torch/include/ATen/ops/erfc_cuda_dispatch.h' 2025-07-24T03:55:18.1298210Z adding 'torch/include/ATen/ops/erfc_meta.h' 2025-07-24T03:55:18.1299090Z adding 'torch/include/ATen/ops/erfc_meta_dispatch.h' 2025-07-24T03:55:18.1299890Z adding 'torch/include/ATen/ops/erfc_mps_dispatch.h' 2025-07-24T03:55:18.1300860Z adding 'torch/include/ATen/ops/erfc_native.h' 2025-07-24T03:55:18.1301840Z adding 'torch/include/ATen/ops/erfc_ops.h' 2025-07-24T03:55:18.1302750Z adding 'torch/include/ATen/ops/erfinv.h' 2025-07-24T03:55:18.1303800Z adding 'torch/include/ATen/ops/erfinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1304670Z adding 'torch/include/ATen/ops/erfinv_cpu_dispatch.h' 2025-07-24T03:55:18.1305510Z adding 'torch/include/ATen/ops/erfinv_cuda_dispatch.h' 2025-07-24T03:55:18.1306350Z adding 'torch/include/ATen/ops/erfinv_meta.h' 2025-07-24T03:55:18.1307210Z adding 'torch/include/ATen/ops/erfinv_meta_dispatch.h' 2025-07-24T03:55:18.1308090Z adding 'torch/include/ATen/ops/erfinv_mps_dispatch.h' 2025-07-24T03:55:18.1308980Z adding 'torch/include/ATen/ops/erfinv_native.h' 2025-07-24T03:55:18.1309940Z adding 'torch/include/ATen/ops/erfinv_ops.h' 2025-07-24T03:55:18.1310830Z adding 'torch/include/ATen/ops/exp.h' 2025-07-24T03:55:18.1311820Z adding 'torch/include/ATen/ops/exp2.h' 2025-07-24T03:55:18.1312840Z adding 'torch/include/ATen/ops/exp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1313660Z adding 'torch/include/ATen/ops/exp2_cpu_dispatch.h' 2025-07-24T03:55:18.1314510Z adding 'torch/include/ATen/ops/exp2_cuda_dispatch.h' 2025-07-24T03:55:18.1315510Z adding 'torch/include/ATen/ops/exp2_meta.h' 2025-07-24T03:55:18.1316430Z adding 'torch/include/ATen/ops/exp2_meta_dispatch.h' 2025-07-24T03:55:18.1317270Z adding 'torch/include/ATen/ops/exp2_mps_dispatch.h' 2025-07-24T03:55:18.1318110Z adding 'torch/include/ATen/ops/exp2_native.h' 2025-07-24T03:55:18.1319160Z adding 'torch/include/ATen/ops/exp2_ops.h' 2025-07-24T03:55:18.1320220Z adding 'torch/include/ATen/ops/exp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1320990Z adding 'torch/include/ATen/ops/exp_cpu_dispatch.h' 2025-07-24T03:55:18.1321960Z adding 'torch/include/ATen/ops/exp_cuda_dispatch.h' 2025-07-24T03:55:18.1322890Z adding 'torch/include/ATen/ops/exp_meta.h' 2025-07-24T03:55:18.1323760Z adding 'torch/include/ATen/ops/exp_meta_dispatch.h' 2025-07-24T03:55:18.1324560Z adding 'torch/include/ATen/ops/exp_mps_dispatch.h' 2025-07-24T03:55:18.1325430Z adding 'torch/include/ATen/ops/exp_native.h' 2025-07-24T03:55:18.1326540Z adding 'torch/include/ATen/ops/exp_ops.h' 2025-07-24T03:55:18.1327530Z adding 'torch/include/ATen/ops/expand.h' 2025-07-24T03:55:18.1328400Z adding 'torch/include/ATen/ops/expand_as.h' 2025-07-24T03:55:18.1329410Z adding 'torch/include/ATen/ops/expand_as_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1330310Z adding 'torch/include/ATen/ops/expand_as_native.h' 2025-07-24T03:55:18.1331280Z adding 'torch/include/ATen/ops/expand_as_ops.h' 2025-07-24T03:55:18.1332260Z adding 'torch/include/ATen/ops/expand_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1333250Z adding 'torch/include/ATen/ops/expand_copy.h' 2025-07-24T03:55:18.1334360Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1335300Z adding 'torch/include/ATen/ops/expand_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1336020Z adding 'torch/include/ATen/ops/expand_copy_native.h' 2025-07-24T03:55:18.1336970Z adding 'torch/include/ATen/ops/expand_copy_ops.h' 2025-07-24T03:55:18.1337920Z adding 'torch/include/ATen/ops/expand_native.h' 2025-07-24T03:55:18.1338840Z adding 'torch/include/ATen/ops/expand_ops.h' 2025-07-24T03:55:18.1339770Z adding 'torch/include/ATen/ops/expm1.h' 2025-07-24T03:55:18.1340870Z adding 'torch/include/ATen/ops/expm1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1341730Z adding 'torch/include/ATen/ops/expm1_cpu_dispatch.h' 2025-07-24T03:55:18.1342570Z adding 'torch/include/ATen/ops/expm1_cuda_dispatch.h' 2025-07-24T03:55:18.1343420Z adding 'torch/include/ATen/ops/expm1_meta.h' 2025-07-24T03:55:18.1344310Z adding 'torch/include/ATen/ops/expm1_meta_dispatch.h' 2025-07-24T03:55:18.1345250Z adding 'torch/include/ATen/ops/expm1_mps_dispatch.h' 2025-07-24T03:55:18.1346150Z adding 'torch/include/ATen/ops/expm1_native.h' 2025-07-24T03:55:18.1347100Z adding 'torch/include/ATen/ops/expm1_ops.h' 2025-07-24T03:55:18.1348060Z adding 'torch/include/ATen/ops/exponential.h' 2025-07-24T03:55:18.1349280Z adding 'torch/include/ATen/ops/exponential_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1350140Z adding 'torch/include/ATen/ops/exponential_cpu_dispatch.h' 2025-07-24T03:55:18.1350950Z adding 'torch/include/ATen/ops/exponential_cuda_dispatch.h' 2025-07-24T03:55:18.1351780Z adding 'torch/include/ATen/ops/exponential_meta_dispatch.h' 2025-07-24T03:55:18.1352720Z adding 'torch/include/ATen/ops/exponential_mps_dispatch.h' 2025-07-24T03:55:18.1353570Z adding 'torch/include/ATen/ops/exponential_native.h' 2025-07-24T03:55:18.1354560Z adding 'torch/include/ATen/ops/exponential_ops.h' 2025-07-24T03:55:18.1355960Z adding 'torch/include/ATen/ops/eye.h' 2025-07-24T03:55:18.1357200Z adding 'torch/include/ATen/ops/eye_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1358050Z adding 'torch/include/ATen/ops/eye_cpu_dispatch.h' 2025-07-24T03:55:18.1358920Z adding 'torch/include/ATen/ops/eye_cuda_dispatch.h' 2025-07-24T03:55:18.1359760Z adding 'torch/include/ATen/ops/eye_meta_dispatch.h' 2025-07-24T03:55:18.1360700Z adding 'torch/include/ATen/ops/eye_mps_dispatch.h' 2025-07-24T03:55:18.1361620Z adding 'torch/include/ATen/ops/eye_native.h' 2025-07-24T03:55:18.1365840Z adding 'torch/include/ATen/ops/eye_ops.h' 2025-07-24T03:55:18.1366100Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine.h' 2025-07-24T03:55:18.1366270Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask.h' 2025-07-24T03:55:18.1366440Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward.h' 2025-07-24T03:55:18.1366710Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1367480Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_native.h' 2025-07-24T03:55:18.1368480Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_backward_ops.h' 2025-07-24T03:55:18.1369590Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1370420Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cpu_dispatch.h' 2025-07-24T03:55:18.1371260Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_cuda_dispatch.h' 2025-07-24T03:55:18.1372270Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_native.h' 2025-07-24T03:55:18.1373360Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_cachemask_ops.h' 2025-07-24T03:55:18.1374320Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1375070Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_native.h' 2025-07-24T03:55:18.1376150Z adding 'torch/include/ATen/ops/fake_quantize_per_channel_affine_ops.h' 2025-07-24T03:55:18.1377140Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine.h' 2025-07-24T03:55:18.1378140Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask.h' 2025-07-24T03:55:18.1379000Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward.h' 2025-07-24T03:55:18.1380120Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1380910Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_native.h' 2025-07-24T03:55:18.1381930Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_backward_ops.h' 2025-07-24T03:55:18.1382980Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1383930Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cpu_dispatch.h' 2025-07-24T03:55:18.1384850Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_cuda_dispatch.h' 2025-07-24T03:55:18.1385700Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_native.h' 2025-07-24T03:55:18.1386730Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_cachemask_ops.h' 2025-07-24T03:55:18.1387830Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1388660Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_native.h' 2025-07-24T03:55:18.1389700Z adding 'torch/include/ATen/ops/fake_quantize_per_tensor_affine_ops.h' 2025-07-24T03:55:18.1390530Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight.h' 2025-07-24T03:55:18.1391640Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1392500Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation.h' 2025-07-24T03:55:18.1393530Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1394300Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_native.h' 2025-07-24T03:55:18.1395430Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_fp32_activation_ops.h' 2025-07-24T03:55:18.1396280Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_native.h' 2025-07-24T03:55:18.1397240Z adding 'torch/include/ATen/ops/fbgemm_linear_fp16_weight_ops.h' 2025-07-24T03:55:18.1398130Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight.h' 2025-07-24T03:55:18.1399230Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1400180Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation.h' 2025-07-24T03:55:18.1401240Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1402000Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_native.h' 2025-07-24T03:55:18.1403210Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_fp32_activation_ops.h' 2025-07-24T03:55:18.1404050Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_native.h' 2025-07-24T03:55:18.1405000Z adding 'torch/include/ATen/ops/fbgemm_linear_int8_weight_ops.h' 2025-07-24T03:55:18.1405870Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight.h' 2025-07-24T03:55:18.1406960Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1407770Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_native.h' 2025-07-24T03:55:18.1408700Z adding 'torch/include/ATen/ops/fbgemm_linear_quantize_weight_ops.h' 2025-07-24T03:55:18.1409560Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16.h' 2025-07-24T03:55:18.1410630Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1411400Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_native.h' 2025-07-24T03:55:18.1412290Z adding 'torch/include/ATen/ops/fbgemm_pack_gemm_matrix_fp16_ops.h' 2025-07-24T03:55:18.1413150Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix.h' 2025-07-24T03:55:18.1415250Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1415800Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_native.h' 2025-07-24T03:55:18.1416700Z adding 'torch/include/ATen/ops/fbgemm_pack_quantized_matrix_ops.h' 2025-07-24T03:55:18.1417560Z adding 'torch/include/ATen/ops/feature_alpha_dropout.h' 2025-07-24T03:55:18.1418640Z adding 'torch/include/ATen/ops/feature_alpha_dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1419440Z adding 'torch/include/ATen/ops/feature_alpha_dropout_native.h' 2025-07-24T03:55:18.1420370Z adding 'torch/include/ATen/ops/feature_alpha_dropout_ops.h' 2025-07-24T03:55:18.1421210Z adding 'torch/include/ATen/ops/feature_dropout.h' 2025-07-24T03:55:18.1422290Z adding 'torch/include/ATen/ops/feature_dropout_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1423060Z adding 'torch/include/ATen/ops/feature_dropout_native.h' 2025-07-24T03:55:18.1423980Z adding 'torch/include/ATen/ops/feature_dropout_ops.h' 2025-07-24T03:55:18.1425070Z adding 'torch/include/ATen/ops/fft_fft.h' 2025-07-24T03:55:18.1426310Z adding 'torch/include/ATen/ops/fft_fft2.h' 2025-07-24T03:55:18.1427400Z adding 'torch/include/ATen/ops/fft_fft2_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1428230Z adding 'torch/include/ATen/ops/fft_fft2_native.h' 2025-07-24T03:55:18.1429900Z adding 'torch/include/ATen/ops/fft_fft2_ops.h' 2025-07-24T03:55:18.1431690Z adding 'torch/include/ATen/ops/fft_fft_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1432430Z adding 'torch/include/ATen/ops/fft_fft_native.h' 2025-07-24T03:55:18.1433490Z adding 'torch/include/ATen/ops/fft_fft_ops.h' 2025-07-24T03:55:18.1434480Z adding 'torch/include/ATen/ops/fft_fftfreq.h' 2025-07-24T03:55:18.1435470Z adding 'torch/include/ATen/ops/fft_fftfreq_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1436340Z adding 'torch/include/ATen/ops/fft_fftfreq_native.h' 2025-07-24T03:55:18.1437380Z adding 'torch/include/ATen/ops/fft_fftfreq_ops.h' 2025-07-24T03:55:18.1438480Z adding 'torch/include/ATen/ops/fft_fftn.h' 2025-07-24T03:55:18.1439520Z adding 'torch/include/ATen/ops/fft_fftn_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1440400Z adding 'torch/include/ATen/ops/fft_fftn_native.h' 2025-07-24T03:55:18.1441410Z adding 'torch/include/ATen/ops/fft_fftn_ops.h' 2025-07-24T03:55:18.1442270Z adding 'torch/include/ATen/ops/fft_fftshift.h' 2025-07-24T03:55:18.1443300Z adding 'torch/include/ATen/ops/fft_fftshift_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1444170Z adding 'torch/include/ATen/ops/fft_fftshift_native.h' 2025-07-24T03:55:18.1445160Z adding 'torch/include/ATen/ops/fft_fftshift_ops.h' 2025-07-24T03:55:18.1446220Z adding 'torch/include/ATen/ops/fft_hfft.h' 2025-07-24T03:55:18.1447360Z adding 'torch/include/ATen/ops/fft_hfft2.h' 2025-07-24T03:55:18.1448490Z adding 'torch/include/ATen/ops/fft_hfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1449320Z adding 'torch/include/ATen/ops/fft_hfft2_native.h' 2025-07-24T03:55:18.1450310Z adding 'torch/include/ATen/ops/fft_hfft2_ops.h' 2025-07-24T03:55:18.1451360Z adding 'torch/include/ATen/ops/fft_hfft_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1452630Z adding 'torch/include/ATen/ops/fft_hfft_native.h' 2025-07-24T03:55:18.1453600Z adding 'torch/include/ATen/ops/fft_hfft_ops.h' 2025-07-24T03:55:18.1454700Z adding 'torch/include/ATen/ops/fft_hfftn.h' 2025-07-24T03:55:18.1455750Z adding 'torch/include/ATen/ops/fft_hfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1456650Z adding 'torch/include/ATen/ops/fft_hfftn_native.h' 2025-07-24T03:55:18.1457650Z adding 'torch/include/ATen/ops/fft_hfftn_ops.h' 2025-07-24T03:55:18.1458770Z adding 'torch/include/ATen/ops/fft_ifft.h' 2025-07-24T03:55:18.1459940Z adding 'torch/include/ATen/ops/fft_ifft2.h' 2025-07-24T03:55:18.1461090Z adding 'torch/include/ATen/ops/fft_ifft2_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1461920Z adding 'torch/include/ATen/ops/fft_ifft2_native.h' 2025-07-24T03:55:18.1462890Z adding 'torch/include/ATen/ops/fft_ifft2_ops.h' 2025-07-24T03:55:18.1463920Z adding 'torch/include/ATen/ops/fft_ifft_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1464760Z adding 'torch/include/ATen/ops/fft_ifft_native.h' 2025-07-24T03:55:18.1465730Z adding 'torch/include/ATen/ops/fft_ifft_ops.h' 2025-07-24T03:55:18.1466860Z adding 'torch/include/ATen/ops/fft_ifftn.h' 2025-07-24T03:55:18.1467910Z adding 'torch/include/ATen/ops/fft_ifftn_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1468820Z adding 'torch/include/ATen/ops/fft_ifftn_native.h' 2025-07-24T03:55:18.1469790Z adding 'torch/include/ATen/ops/fft_ifftn_ops.h' 2025-07-24T03:55:18.1470650Z adding 'torch/include/ATen/ops/fft_ifftshift.h' 2025-07-24T03:55:18.1471630Z adding 'torch/include/ATen/ops/fft_ifftshift_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1472520Z adding 'torch/include/ATen/ops/fft_ifftshift_native.h' 2025-07-24T03:55:18.1473410Z adding 'torch/include/ATen/ops/fft_ifftshift_ops.h' 2025-07-24T03:55:18.1474480Z adding 'torch/include/ATen/ops/fft_ihfft.h' 2025-07-24T03:55:18.1475620Z adding 'torch/include/ATen/ops/fft_ihfft2.h' 2025-07-24T03:55:18.1476760Z adding 'torch/include/ATen/ops/fft_ihfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1477530Z adding 'torch/include/ATen/ops/fft_ihfft2_native.h' 2025-07-24T03:55:18.1478560Z adding 'torch/include/ATen/ops/fft_ihfft2_ops.h' 2025-07-24T03:55:18.1479540Z adding 'torch/include/ATen/ops/fft_ihfft_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1480440Z adding 'torch/include/ATen/ops/fft_ihfft_native.h' 2025-07-24T03:55:18.1481420Z adding 'torch/include/ATen/ops/fft_ihfft_ops.h' 2025-07-24T03:55:18.1482520Z adding 'torch/include/ATen/ops/fft_ihfftn.h' 2025-07-24T03:55:18.1483570Z adding 'torch/include/ATen/ops/fft_ihfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1484420Z adding 'torch/include/ATen/ops/fft_ihfftn_native.h' 2025-07-24T03:55:18.1485430Z adding 'torch/include/ATen/ops/fft_ihfftn_ops.h' 2025-07-24T03:55:18.1486550Z adding 'torch/include/ATen/ops/fft_irfft.h' 2025-07-24T03:55:18.1487680Z adding 'torch/include/ATen/ops/fft_irfft2.h' 2025-07-24T03:55:18.1488840Z adding 'torch/include/ATen/ops/fft_irfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1489620Z adding 'torch/include/ATen/ops/fft_irfft2_native.h' 2025-07-24T03:55:18.1490580Z adding 'torch/include/ATen/ops/fft_irfft2_ops.h' 2025-07-24T03:55:18.1491600Z adding 'torch/include/ATen/ops/fft_irfft_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1492510Z adding 'torch/include/ATen/ops/fft_irfft_native.h' 2025-07-24T03:55:18.1493470Z adding 'torch/include/ATen/ops/fft_irfft_ops.h' 2025-07-24T03:55:18.1494630Z adding 'torch/include/ATen/ops/fft_irfftn.h' 2025-07-24T03:55:18.1495650Z adding 'torch/include/ATen/ops/fft_irfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1496510Z adding 'torch/include/ATen/ops/fft_irfftn_native.h' 2025-07-24T03:55:18.1497470Z adding 'torch/include/ATen/ops/fft_irfftn_ops.h' 2025-07-24T03:55:18.1498540Z adding 'torch/include/ATen/ops/fft_rfft.h' 2025-07-24T03:55:18.1499680Z adding 'torch/include/ATen/ops/fft_rfft2.h' 2025-07-24T03:55:18.1500820Z adding 'torch/include/ATen/ops/fft_rfft2_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1501620Z adding 'torch/include/ATen/ops/fft_rfft2_native.h' 2025-07-24T03:55:18.1502610Z adding 'torch/include/ATen/ops/fft_rfft2_ops.h' 2025-07-24T03:55:18.1503650Z adding 'torch/include/ATen/ops/fft_rfft_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1504540Z adding 'torch/include/ATen/ops/fft_rfft_native.h' 2025-07-24T03:55:18.1505520Z adding 'torch/include/ATen/ops/fft_rfft_ops.h' 2025-07-24T03:55:18.1506500Z adding 'torch/include/ATen/ops/fft_rfftfreq.h' 2025-07-24T03:55:18.1507490Z adding 'torch/include/ATen/ops/fft_rfftfreq_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1508360Z adding 'torch/include/ATen/ops/fft_rfftfreq_native.h' 2025-07-24T03:55:18.1509350Z adding 'torch/include/ATen/ops/fft_rfftfreq_ops.h' 2025-07-24T03:55:18.1510410Z adding 'torch/include/ATen/ops/fft_rfftn.h' 2025-07-24T03:55:18.1511470Z adding 'torch/include/ATen/ops/fft_rfftn_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1512380Z adding 'torch/include/ATen/ops/fft_rfftn_native.h' 2025-07-24T03:55:18.1513370Z adding 'torch/include/ATen/ops/fft_rfftn_ops.h' 2025-07-24T03:55:18.1514330Z adding 'torch/include/ATen/ops/fill.h' 2025-07-24T03:55:18.1515330Z adding 'torch/include/ATen/ops/fill_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1516220Z adding 'torch/include/ATen/ops/fill_cpu_dispatch.h' 2025-07-24T03:55:18.1517060Z adding 'torch/include/ATen/ops/fill_cuda_dispatch.h' 2025-07-24T03:55:18.1517870Z adding 'torch/include/ATen/ops/fill_diagonal.h' 2025-07-24T03:55:18.1518870Z adding 'torch/include/ATen/ops/fill_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1519700Z adding 'torch/include/ATen/ops/fill_diagonal_native.h' 2025-07-24T03:55:18.1520580Z adding 'torch/include/ATen/ops/fill_diagonal_ops.h' 2025-07-24T03:55:18.1521410Z adding 'torch/include/ATen/ops/fill_meta_dispatch.h' 2025-07-24T03:55:18.1522220Z adding 'torch/include/ATen/ops/fill_mps_dispatch.h' 2025-07-24T03:55:18.1523230Z adding 'torch/include/ATen/ops/fill_native.h' 2025-07-24T03:55:18.1524330Z adding 'torch/include/ATen/ops/fill_ops.h' 2025-07-24T03:55:18.1525260Z adding 'torch/include/ATen/ops/fix.h' 2025-07-24T03:55:18.1526240Z adding 'torch/include/ATen/ops/fix_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1527090Z adding 'torch/include/ATen/ops/fix_native.h' 2025-07-24T03:55:18.1528130Z adding 'torch/include/ATen/ops/fix_ops.h' 2025-07-24T03:55:18.1529070Z adding 'torch/include/ATen/ops/flatten.h' 2025-07-24T03:55:18.1530090Z adding 'torch/include/ATen/ops/flatten_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1531040Z adding 'torch/include/ATen/ops/flatten_dense_tensors.h' 2025-07-24T03:55:18.1532120Z adding 'torch/include/ATen/ops/flatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1532840Z adding 'torch/include/ATen/ops/flatten_dense_tensors_native.h' 2025-07-24T03:55:18.1533750Z adding 'torch/include/ATen/ops/flatten_dense_tensors_ops.h' 2025-07-24T03:55:18.1534730Z adding 'torch/include/ATen/ops/flatten_native.h' 2025-07-24T03:55:18.1535790Z adding 'torch/include/ATen/ops/flatten_ops.h' 2025-07-24T03:55:18.1536730Z adding 'torch/include/ATen/ops/flip.h' 2025-07-24T03:55:18.1537640Z adding 'torch/include/ATen/ops/flip_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1538560Z adding 'torch/include/ATen/ops/flip_cpu_dispatch.h' 2025-07-24T03:55:18.1539400Z adding 'torch/include/ATen/ops/flip_cuda_dispatch.h' 2025-07-24T03:55:18.1540260Z adding 'torch/include/ATen/ops/flip_mps_dispatch.h' 2025-07-24T03:55:18.1541130Z adding 'torch/include/ATen/ops/flip_native.h' 2025-07-24T03:55:18.1542130Z adding 'torch/include/ATen/ops/flip_ops.h' 2025-07-24T03:55:18.1543020Z adding 'torch/include/ATen/ops/fliplr.h' 2025-07-24T03:55:18.1543950Z adding 'torch/include/ATen/ops/fliplr_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1544720Z adding 'torch/include/ATen/ops/fliplr_native.h' 2025-07-24T03:55:18.1545710Z adding 'torch/include/ATen/ops/fliplr_ops.h' 2025-07-24T03:55:18.1546530Z adding 'torch/include/ATen/ops/flipud.h' 2025-07-24T03:55:18.1547480Z adding 'torch/include/ATen/ops/flipud_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1548220Z adding 'torch/include/ATen/ops/flipud_native.h' 2025-07-24T03:55:18.1549180Z adding 'torch/include/ATen/ops/flipud_ops.h' 2025-07-24T03:55:18.1550210Z adding 'torch/include/ATen/ops/float_power.h' 2025-07-24T03:55:18.1551270Z adding 'torch/include/ATen/ops/float_power_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1552100Z adding 'torch/include/ATen/ops/float_power_native.h' 2025-07-24T03:55:18.1553420Z adding 'torch/include/ATen/ops/float_power_ops.h' 2025-07-24T03:55:18.1554310Z adding 'torch/include/ATen/ops/floor.h' 2025-07-24T03:55:18.1555310Z adding 'torch/include/ATen/ops/floor_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1556080Z adding 'torch/include/ATen/ops/floor_cpu_dispatch.h' 2025-07-24T03:55:18.1557020Z adding 'torch/include/ATen/ops/floor_cuda_dispatch.h' 2025-07-24T03:55:18.1557970Z adding 'torch/include/ATen/ops/floor_divide.h' 2025-07-24T03:55:18.1559000Z adding 'torch/include/ATen/ops/floor_divide_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1559830Z adding 'torch/include/ATen/ops/floor_divide_cpu_dispatch.h' 2025-07-24T03:55:18.1560830Z adding 'torch/include/ATen/ops/floor_divide_cuda_dispatch.h' 2025-07-24T03:55:18.1561680Z adding 'torch/include/ATen/ops/floor_divide_meta_dispatch.h' 2025-07-24T03:55:18.1562510Z adding 'torch/include/ATen/ops/floor_divide_mps_dispatch.h' 2025-07-24T03:55:18.1563430Z adding 'torch/include/ATen/ops/floor_divide_native.h' 2025-07-24T03:55:18.1564610Z adding 'torch/include/ATen/ops/floor_divide_ops.h' 2025-07-24T03:55:18.1565470Z adding 'torch/include/ATen/ops/floor_meta.h' 2025-07-24T03:55:18.1566340Z adding 'torch/include/ATen/ops/floor_meta_dispatch.h' 2025-07-24T03:55:18.1567180Z adding 'torch/include/ATen/ops/floor_mps_dispatch.h' 2025-07-24T03:55:18.1568180Z adding 'torch/include/ATen/ops/floor_native.h' 2025-07-24T03:55:18.1569210Z adding 'torch/include/ATen/ops/floor_ops.h' 2025-07-24T03:55:18.1570080Z adding 'torch/include/ATen/ops/fmax.h' 2025-07-24T03:55:18.1571090Z adding 'torch/include/ATen/ops/fmax_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1571900Z adding 'torch/include/ATen/ops/fmax_cpu_dispatch.h' 2025-07-24T03:55:18.1572740Z adding 'torch/include/ATen/ops/fmax_cuda_dispatch.h' 2025-07-24T03:55:18.1573560Z adding 'torch/include/ATen/ops/fmax_meta.h' 2025-07-24T03:55:18.1574390Z adding 'torch/include/ATen/ops/fmax_meta_dispatch.h' 2025-07-24T03:55:18.1575260Z adding 'torch/include/ATen/ops/fmax_mps_dispatch.h' 2025-07-24T03:55:18.1576100Z adding 'torch/include/ATen/ops/fmax_native.h' 2025-07-24T03:55:18.1577030Z adding 'torch/include/ATen/ops/fmax_ops.h' 2025-07-24T03:55:18.1577900Z adding 'torch/include/ATen/ops/fmin.h' 2025-07-24T03:55:18.1578970Z adding 'torch/include/ATen/ops/fmin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1579720Z adding 'torch/include/ATen/ops/fmin_cpu_dispatch.h' 2025-07-24T03:55:18.1580530Z adding 'torch/include/ATen/ops/fmin_cuda_dispatch.h' 2025-07-24T03:55:18.1581380Z adding 'torch/include/ATen/ops/fmin_meta.h' 2025-07-24T03:55:18.1582270Z adding 'torch/include/ATen/ops/fmin_meta_dispatch.h' 2025-07-24T03:55:18.1583090Z adding 'torch/include/ATen/ops/fmin_mps_dispatch.h' 2025-07-24T03:55:18.1583910Z adding 'torch/include/ATen/ops/fmin_native.h' 2025-07-24T03:55:18.1584820Z adding 'torch/include/ATen/ops/fmin_ops.h' 2025-07-24T03:55:18.1585860Z adding 'torch/include/ATen/ops/fmod.h' 2025-07-24T03:55:18.1586820Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1587710Z adding 'torch/include/ATen/ops/fmod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1588450Z adding 'torch/include/ATen/ops/fmod_cpu_dispatch.h' 2025-07-24T03:55:18.1589410Z adding 'torch/include/ATen/ops/fmod_cuda_dispatch.h' 2025-07-24T03:55:18.1590290Z adding 'torch/include/ATen/ops/fmod_meta.h' 2025-07-24T03:55:18.1591140Z adding 'torch/include/ATen/ops/fmod_meta_dispatch.h' 2025-07-24T03:55:18.1591940Z adding 'torch/include/ATen/ops/fmod_mps_dispatch.h' 2025-07-24T03:55:18.1592890Z adding 'torch/include/ATen/ops/fmod_native.h' 2025-07-24T03:55:18.1594020Z adding 'torch/include/ATen/ops/fmod_ops.h' 2025-07-24T03:55:18.1594920Z adding 'torch/include/ATen/ops/frac.h' 2025-07-24T03:55:18.1595910Z adding 'torch/include/ATen/ops/frac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1596730Z adding 'torch/include/ATen/ops/frac_cpu_dispatch.h' 2025-07-24T03:55:18.1597590Z adding 'torch/include/ATen/ops/frac_cuda_dispatch.h' 2025-07-24T03:55:18.1598420Z adding 'torch/include/ATen/ops/frac_meta.h' 2025-07-24T03:55:18.1599260Z adding 'torch/include/ATen/ops/frac_meta_dispatch.h' 2025-07-24T03:55:18.1600160Z adding 'torch/include/ATen/ops/frac_mps_dispatch.h' 2025-07-24T03:55:18.1601090Z adding 'torch/include/ATen/ops/frac_native.h' 2025-07-24T03:55:18.1602070Z adding 'torch/include/ATen/ops/frac_ops.h' 2025-07-24T03:55:18.1603070Z adding 'torch/include/ATen/ops/fractional_max_pool2d.h' 2025-07-24T03:55:18.1604230Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward.h' 2025-07-24T03:55:18.1605260Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1606040Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1606930Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1607850Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta.h' 2025-07-24T03:55:18.1608780Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_meta_dispatch.h' 2025-07-24T03:55:18.1609630Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_native.h' 2025-07-24T03:55:18.1610620Z adding 'torch/include/ATen/ops/fractional_max_pool2d_backward_ops.h' 2025-07-24T03:55:18.1611720Z adding 'torch/include/ATen/ops/fractional_max_pool2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1612520Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cpu_dispatch.h' 2025-07-24T03:55:18.1613390Z adding 'torch/include/ATen/ops/fractional_max_pool2d_cuda_dispatch.h' 2025-07-24T03:55:18.1614210Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta.h' 2025-07-24T03:55:18.1615180Z adding 'torch/include/ATen/ops/fractional_max_pool2d_meta_dispatch.h' 2025-07-24T03:55:18.1616040Z adding 'torch/include/ATen/ops/fractional_max_pool2d_native.h' 2025-07-24T03:55:18.1617070Z adding 'torch/include/ATen/ops/fractional_max_pool2d_ops.h' 2025-07-24T03:55:18.1618020Z adding 'torch/include/ATen/ops/fractional_max_pool3d.h' 2025-07-24T03:55:18.1619420Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward.h' 2025-07-24T03:55:18.1620080Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1620930Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1621780Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_native.h' 2025-07-24T03:55:18.1622850Z adding 'torch/include/ATen/ops/fractional_max_pool3d_backward_ops.h' 2025-07-24T03:55:18.1623860Z adding 'torch/include/ATen/ops/fractional_max_pool3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1624660Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cpu_dispatch.h' 2025-07-24T03:55:18.1625560Z adding 'torch/include/ATen/ops/fractional_max_pool3d_cuda_dispatch.h' 2025-07-24T03:55:18.1627480Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta.h' 2025-07-24T03:55:18.1628080Z adding 'torch/include/ATen/ops/fractional_max_pool3d_meta_dispatch.h' 2025-07-24T03:55:18.1628990Z adding 'torch/include/ATen/ops/fractional_max_pool3d_native.h' 2025-07-24T03:55:18.1630090Z adding 'torch/include/ATen/ops/fractional_max_pool3d_ops.h' 2025-07-24T03:55:18.1631020Z adding 'torch/include/ATen/ops/frexp.h' 2025-07-24T03:55:18.1631960Z adding 'torch/include/ATen/ops/frexp_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1632750Z adding 'torch/include/ATen/ops/frexp_cpu_dispatch.h' 2025-07-24T03:55:18.1633590Z adding 'torch/include/ATen/ops/frexp_cuda_dispatch.h' 2025-07-24T03:55:18.1634500Z adding 'torch/include/ATen/ops/frexp_native.h' 2025-07-24T03:55:18.1635470Z adding 'torch/include/ATen/ops/frexp_ops.h' 2025-07-24T03:55:18.1636390Z adding 'torch/include/ATen/ops/frobenius_norm.h' 2025-07-24T03:55:18.1637400Z adding 'torch/include/ATen/ops/frobenius_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1638220Z adding 'torch/include/ATen/ops/frobenius_norm_native.h' 2025-07-24T03:55:18.1639200Z adding 'torch/include/ATen/ops/frobenius_norm_ops.h' 2025-07-24T03:55:18.1640450Z adding 'torch/include/ATen/ops/from_blob.h' 2025-07-24T03:55:18.1641470Z adding 'torch/include/ATen/ops/from_file.h' 2025-07-24T03:55:18.1642560Z adding 'torch/include/ATen/ops/from_file_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1643450Z adding 'torch/include/ATen/ops/from_file_cpu_dispatch.h' 2025-07-24T03:55:18.1644290Z adding 'torch/include/ATen/ops/from_file_native.h' 2025-07-24T03:55:18.1645310Z adding 'torch/include/ATen/ops/from_file_ops.h' 2025-07-24T03:55:18.1646900Z adding 'torch/include/ATen/ops/full.h' 2025-07-24T03:55:18.1647830Z adding 'torch/include/ATen/ops/full_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1648770Z adding 'torch/include/ATen/ops/full_like.h' 2025-07-24T03:55:18.1649800Z adding 'torch/include/ATen/ops/full_like_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1650680Z adding 'torch/include/ATen/ops/full_like_native.h' 2025-07-24T03:55:18.1651730Z adding 'torch/include/ATen/ops/full_like_ops.h' 2025-07-24T03:55:18.1652590Z adding 'torch/include/ATen/ops/full_native.h' 2025-07-24T03:55:18.1653720Z adding 'torch/include/ATen/ops/full_ops.h' 2025-07-24T03:55:18.1655070Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant.h' 2025-07-24T03:55:18.1655840Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1656610Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_native.h' 2025-07-24T03:55:18.1657680Z adding 'torch/include/ATen/ops/fused_moving_avg_obs_fake_quant_ops.h' 2025-07-24T03:55:18.1658620Z adding 'torch/include/ATen/ops/gather.h' 2025-07-24T03:55:18.1659570Z adding 'torch/include/ATen/ops/gather_backward.h' 2025-07-24T03:55:18.1660570Z adding 'torch/include/ATen/ops/gather_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1661350Z adding 'torch/include/ATen/ops/gather_backward_native.h' 2025-07-24T03:55:18.1662340Z adding 'torch/include/ATen/ops/gather_backward_ops.h' 2025-07-24T03:55:18.1663350Z adding 'torch/include/ATen/ops/gather_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1664190Z adding 'torch/include/ATen/ops/gather_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1665020Z adding 'torch/include/ATen/ops/gather_cpu_dispatch.h' 2025-07-24T03:55:18.1666200Z adding 'torch/include/ATen/ops/gather_cuda_dispatch.h' 2025-07-24T03:55:18.1666760Z adding 'torch/include/ATen/ops/gather_meta.h' 2025-07-24T03:55:18.1667630Z adding 'torch/include/ATen/ops/gather_meta_dispatch.h' 2025-07-24T03:55:18.1668420Z adding 'torch/include/ATen/ops/gather_mps_dispatch.h' 2025-07-24T03:55:18.1669380Z adding 'torch/include/ATen/ops/gather_native.h' 2025-07-24T03:55:18.1670480Z adding 'torch/include/ATen/ops/gather_ops.h' 2025-07-24T03:55:18.1671760Z adding 'torch/include/ATen/ops/gcd.h' 2025-07-24T03:55:18.1672720Z adding 'torch/include/ATen/ops/gcd_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1673600Z adding 'torch/include/ATen/ops/gcd_cpu_dispatch.h' 2025-07-24T03:55:18.1674460Z adding 'torch/include/ATen/ops/gcd_cuda_dispatch.h' 2025-07-24T03:55:18.1675270Z adding 'torch/include/ATen/ops/gcd_meta.h' 2025-07-24T03:55:18.1676100Z adding 'torch/include/ATen/ops/gcd_meta_dispatch.h' 2025-07-24T03:55:18.1677070Z adding 'torch/include/ATen/ops/gcd_native.h' 2025-07-24T03:55:18.1678030Z adding 'torch/include/ATen/ops/gcd_ops.h' 2025-07-24T03:55:18.1678950Z adding 'torch/include/ATen/ops/ge.h' 2025-07-24T03:55:18.1679960Z adding 'torch/include/ATen/ops/ge_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1680820Z adding 'torch/include/ATen/ops/ge_cpu_dispatch.h' 2025-07-24T03:55:18.1681690Z adding 'torch/include/ATen/ops/ge_cuda_dispatch.h' 2025-07-24T03:55:18.1682530Z adding 'torch/include/ATen/ops/ge_meta.h' 2025-07-24T03:55:18.1683400Z adding 'torch/include/ATen/ops/ge_meta_dispatch.h' 2025-07-24T03:55:18.1684340Z adding 'torch/include/ATen/ops/ge_mps_dispatch.h' 2025-07-24T03:55:18.1685290Z adding 'torch/include/ATen/ops/ge_native.h' 2025-07-24T03:55:18.1686360Z adding 'torch/include/ATen/ops/ge_ops.h' 2025-07-24T03:55:18.1687270Z adding 'torch/include/ATen/ops/gelu.h' 2025-07-24T03:55:18.1688320Z adding 'torch/include/ATen/ops/gelu_backward.h' 2025-07-24T03:55:18.1689360Z adding 'torch/include/ATen/ops/gelu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1690160Z adding 'torch/include/ATen/ops/gelu_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1691010Z adding 'torch/include/ATen/ops/gelu_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1692210Z adding 'torch/include/ATen/ops/gelu_backward_meta.h' 2025-07-24T03:55:18.1692850Z adding 'torch/include/ATen/ops/gelu_backward_meta_dispatch.h' 2025-07-24T03:55:18.1693670Z adding 'torch/include/ATen/ops/gelu_backward_mps_dispatch.h' 2025-07-24T03:55:18.1694550Z adding 'torch/include/ATen/ops/gelu_backward_native.h' 2025-07-24T03:55:18.1695640Z adding 'torch/include/ATen/ops/gelu_backward_ops.h' 2025-07-24T03:55:18.1696640Z adding 'torch/include/ATen/ops/gelu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1697410Z adding 'torch/include/ATen/ops/gelu_cpu_dispatch.h' 2025-07-24T03:55:18.1698250Z adding 'torch/include/ATen/ops/gelu_cuda_dispatch.h' 2025-07-24T03:55:18.1699170Z adding 'torch/include/ATen/ops/gelu_meta.h' 2025-07-24T03:55:18.1700050Z adding 'torch/include/ATen/ops/gelu_meta_dispatch.h' 2025-07-24T03:55:18.1700960Z adding 'torch/include/ATen/ops/gelu_mps_dispatch.h' 2025-07-24T03:55:18.1701850Z adding 'torch/include/ATen/ops/gelu_native.h' 2025-07-24T03:55:18.1703080Z adding 'torch/include/ATen/ops/gelu_ops.h' 2025-07-24T03:55:18.1704200Z adding 'torch/include/ATen/ops/geometric.h' 2025-07-24T03:55:18.1704980Z adding 'torch/include/ATen/ops/geometric_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1705810Z adding 'torch/include/ATen/ops/geometric_cpu_dispatch.h' 2025-07-24T03:55:18.1706740Z adding 'torch/include/ATen/ops/geometric_cuda_dispatch.h' 2025-07-24T03:55:18.1707560Z adding 'torch/include/ATen/ops/geometric_meta_dispatch.h' 2025-07-24T03:55:18.1708370Z adding 'torch/include/ATen/ops/geometric_native.h' 2025-07-24T03:55:18.1709550Z adding 'torch/include/ATen/ops/geometric_ops.h' 2025-07-24T03:55:18.1710580Z adding 'torch/include/ATen/ops/geqrf.h' 2025-07-24T03:55:18.1711450Z adding 'torch/include/ATen/ops/geqrf_cpu_dispatch.h' 2025-07-24T03:55:18.1712330Z adding 'torch/include/ATen/ops/geqrf_cuda_dispatch.h' 2025-07-24T03:55:18.1713120Z adding 'torch/include/ATen/ops/geqrf_native.h' 2025-07-24T03:55:18.1714170Z adding 'torch/include/ATen/ops/geqrf_ops.h' 2025-07-24T03:55:18.1715050Z adding 'torch/include/ATen/ops/ger.h' 2025-07-24T03:55:18.1716060Z adding 'torch/include/ATen/ops/ger_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1716910Z adding 'torch/include/ATen/ops/ger_native.h' 2025-07-24T03:55:18.1717980Z adding 'torch/include/ATen/ops/ger_ops.h' 2025-07-24T03:55:18.1718850Z adding 'torch/include/ATen/ops/glu.h' 2025-07-24T03:55:18.1719780Z adding 'torch/include/ATen/ops/glu_backward.h' 2025-07-24T03:55:18.1720720Z adding 'torch/include/ATen/ops/glu_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1721840Z adding 'torch/include/ATen/ops/glu_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1722950Z adding 'torch/include/ATen/ops/glu_backward_jvp.h' 2025-07-24T03:55:18.1723720Z adding 'torch/include/ATen/ops/glu_backward_jvp_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1724500Z adding 'torch/include/ATen/ops/glu_backward_jvp_cpu_dispatch.h' 2025-07-24T03:55:18.1725410Z adding 'torch/include/ATen/ops/glu_backward_jvp_cuda_dispatch.h' 2025-07-24T03:55:18.1726300Z adding 'torch/include/ATen/ops/glu_backward_jvp_native.h' 2025-07-24T03:55:18.1727250Z adding 'torch/include/ATen/ops/glu_backward_jvp_ops.h' 2025-07-24T03:55:18.1728140Z adding 'torch/include/ATen/ops/glu_backward_mps_dispatch.h' 2025-07-24T03:55:18.1729080Z adding 'torch/include/ATen/ops/glu_backward_native.h' 2025-07-24T03:55:18.1730070Z adding 'torch/include/ATen/ops/glu_backward_ops.h' 2025-07-24T03:55:18.1731060Z adding 'torch/include/ATen/ops/glu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1731810Z adding 'torch/include/ATen/ops/glu_cpu_dispatch.h' 2025-07-24T03:55:18.1732740Z adding 'torch/include/ATen/ops/glu_cuda_dispatch.h' 2025-07-24T03:55:18.1733650Z adding 'torch/include/ATen/ops/glu_jvp.h' 2025-07-24T03:55:18.1734590Z adding 'torch/include/ATen/ops/glu_jvp_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1735390Z adding 'torch/include/ATen/ops/glu_jvp_cpu_dispatch.h' 2025-07-24T03:55:18.1736300Z adding 'torch/include/ATen/ops/glu_jvp_cuda_dispatch.h' 2025-07-24T03:55:18.1737160Z adding 'torch/include/ATen/ops/glu_jvp_native.h' 2025-07-24T03:55:18.1738100Z adding 'torch/include/ATen/ops/glu_jvp_ops.h' 2025-07-24T03:55:18.1738970Z adding 'torch/include/ATen/ops/glu_meta.h' 2025-07-24T03:55:18.1739970Z adding 'torch/include/ATen/ops/glu_meta_dispatch.h' 2025-07-24T03:55:18.1740780Z adding 'torch/include/ATen/ops/glu_mps_dispatch.h' 2025-07-24T03:55:18.1741580Z adding 'torch/include/ATen/ops/glu_native.h' 2025-07-24T03:55:18.1742520Z adding 'torch/include/ATen/ops/glu_ops.h' 2025-07-24T03:55:18.1743660Z adding 'torch/include/ATen/ops/gradient.h' 2025-07-24T03:55:18.1744860Z adding 'torch/include/ATen/ops/gradient_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1746050Z adding 'torch/include/ATen/ops/gradient_native.h' 2025-07-24T03:55:18.1746910Z adding 'torch/include/ATen/ops/gradient_ops.h' 2025-07-24T03:55:18.1747930Z adding 'torch/include/ATen/ops/greater.h' 2025-07-24T03:55:18.1748980Z adding 'torch/include/ATen/ops/greater_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1749800Z adding 'torch/include/ATen/ops/greater_equal.h' 2025-07-24T03:55:18.1750810Z adding 'torch/include/ATen/ops/greater_equal_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1751670Z adding 'torch/include/ATen/ops/greater_equal_native.h' 2025-07-24T03:55:18.1752780Z adding 'torch/include/ATen/ops/greater_equal_ops.h' 2025-07-24T03:55:18.1753650Z adding 'torch/include/ATen/ops/greater_native.h' 2025-07-24T03:55:18.1754740Z adding 'torch/include/ATen/ops/greater_ops.h' 2025-07-24T03:55:18.1755710Z adding 'torch/include/ATen/ops/grid_sampler.h' 2025-07-24T03:55:18.1756690Z adding 'torch/include/ATen/ops/grid_sampler_2d.h' 2025-07-24T03:55:18.1757700Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward.h' 2025-07-24T03:55:18.1758720Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1759650Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1760520Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1761400Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_native.h' 2025-07-24T03:55:18.1762430Z adding 'torch/include/ATen/ops/grid_sampler_2d_backward_ops.h' 2025-07-24T03:55:18.1763530Z adding 'torch/include/ATen/ops/grid_sampler_2d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1764320Z adding 'torch/include/ATen/ops/grid_sampler_2d_cpu_dispatch.h' 2025-07-24T03:55:18.1765140Z adding 'torch/include/ATen/ops/grid_sampler_2d_cuda_dispatch.h' 2025-07-24T03:55:18.1765970Z adding 'torch/include/ATen/ops/grid_sampler_2d_mps_dispatch.h' 2025-07-24T03:55:18.1766920Z adding 'torch/include/ATen/ops/grid_sampler_2d_native.h' 2025-07-24T03:55:18.1767930Z adding 'torch/include/ATen/ops/grid_sampler_2d_ops.h' 2025-07-24T03:55:18.1768850Z adding 'torch/include/ATen/ops/grid_sampler_3d.h' 2025-07-24T03:55:18.1769870Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward.h' 2025-07-24T03:55:18.1771000Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1771810Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1772650Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1773510Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_native.h' 2025-07-24T03:55:18.1774610Z adding 'torch/include/ATen/ops/grid_sampler_3d_backward_ops.h' 2025-07-24T03:55:18.1775590Z adding 'torch/include/ATen/ops/grid_sampler_3d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1776370Z adding 'torch/include/ATen/ops/grid_sampler_3d_cpu_dispatch.h' 2025-07-24T03:55:18.1777220Z adding 'torch/include/ATen/ops/grid_sampler_3d_cuda_dispatch.h' 2025-07-24T03:55:18.1778160Z adding 'torch/include/ATen/ops/grid_sampler_3d_native.h' 2025-07-24T03:55:18.1779140Z adding 'torch/include/ATen/ops/grid_sampler_3d_ops.h' 2025-07-24T03:55:18.1780090Z adding 'torch/include/ATen/ops/grid_sampler_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1780880Z adding 'torch/include/ATen/ops/grid_sampler_native.h' 2025-07-24T03:55:18.1781870Z adding 'torch/include/ATen/ops/grid_sampler_ops.h' 2025-07-24T03:55:18.1782770Z adding 'torch/include/ATen/ops/group_norm.h' 2025-07-24T03:55:18.1783790Z adding 'torch/include/ATen/ops/group_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1784570Z adding 'torch/include/ATen/ops/group_norm_native.h' 2025-07-24T03:55:18.1785590Z adding 'torch/include/ATen/ops/group_norm_ops.h' 2025-07-24T03:55:18.1786530Z adding 'torch/include/ATen/ops/gru.h' 2025-07-24T03:55:18.1787440Z adding 'torch/include/ATen/ops/gru_cell.h' 2025-07-24T03:55:18.1788390Z adding 'torch/include/ATen/ops/gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1789250Z adding 'torch/include/ATen/ops/gru_cell_native.h' 2025-07-24T03:55:18.1790240Z adding 'torch/include/ATen/ops/gru_cell_ops.h' 2025-07-24T03:55:18.1791280Z adding 'torch/include/ATen/ops/gru_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1792030Z adding 'torch/include/ATen/ops/gru_native.h' 2025-07-24T03:55:18.1793130Z adding 'torch/include/ATen/ops/gru_ops.h' 2025-07-24T03:55:18.1794060Z adding 'torch/include/ATen/ops/gt.h' 2025-07-24T03:55:18.1795070Z adding 'torch/include/ATen/ops/gt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1795840Z adding 'torch/include/ATen/ops/gt_cpu_dispatch.h' 2025-07-24T03:55:18.1796830Z adding 'torch/include/ATen/ops/gt_cuda_dispatch.h' 2025-07-24T03:55:18.1797630Z adding 'torch/include/ATen/ops/gt_meta.h' 2025-07-24T03:55:18.1798510Z adding 'torch/include/ATen/ops/gt_meta_dispatch.h' 2025-07-24T03:55:18.1799340Z adding 'torch/include/ATen/ops/gt_mps_dispatch.h' 2025-07-24T03:55:18.1800340Z adding 'torch/include/ATen/ops/gt_native.h' 2025-07-24T03:55:18.1801450Z adding 'torch/include/ATen/ops/gt_ops.h' 2025-07-24T03:55:18.1802690Z adding 'torch/include/ATen/ops/hamming_window.h' 2025-07-24T03:55:18.1803820Z adding 'torch/include/ATen/ops/hamming_window_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1804760Z adding 'torch/include/ATen/ops/hamming_window_native.h' 2025-07-24T03:55:18.1806090Z adding 'torch/include/ATen/ops/hamming_window_ops.h' 2025-07-24T03:55:18.1807150Z adding 'torch/include/ATen/ops/hann_window.h' 2025-07-24T03:55:18.1808160Z adding 'torch/include/ATen/ops/hann_window_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1809020Z adding 'torch/include/ATen/ops/hann_window_native.h' 2025-07-24T03:55:18.1810100Z adding 'torch/include/ATen/ops/hann_window_ops.h' 2025-07-24T03:55:18.1810980Z adding 'torch/include/ATen/ops/hardshrink.h' 2025-07-24T03:55:18.1811900Z adding 'torch/include/ATen/ops/hardshrink_backward.h' 2025-07-24T03:55:18.1813010Z adding 'torch/include/ATen/ops/hardshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1813790Z adding 'torch/include/ATen/ops/hardshrink_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1814630Z adding 'torch/include/ATen/ops/hardshrink_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1815480Z adding 'torch/include/ATen/ops/hardshrink_backward_meta.h' 2025-07-24T03:55:18.1816730Z adding 'torch/include/ATen/ops/hardshrink_backward_meta_dispatch.h' 2025-07-24T03:55:18.1817610Z adding 'torch/include/ATen/ops/hardshrink_backward_mps_dispatch.h' 2025-07-24T03:55:18.1818460Z adding 'torch/include/ATen/ops/hardshrink_backward_native.h' 2025-07-24T03:55:18.1819420Z adding 'torch/include/ATen/ops/hardshrink_backward_ops.h' 2025-07-24T03:55:18.1820520Z adding 'torch/include/ATen/ops/hardshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1821300Z adding 'torch/include/ATen/ops/hardshrink_cpu_dispatch.h' 2025-07-24T03:55:18.1822120Z adding 'torch/include/ATen/ops/hardshrink_cuda_dispatch.h' 2025-07-24T03:55:18.1823030Z adding 'torch/include/ATen/ops/hardshrink_meta.h' 2025-07-24T03:55:18.1823980Z adding 'torch/include/ATen/ops/hardshrink_meta_dispatch.h' 2025-07-24T03:55:18.1824810Z adding 'torch/include/ATen/ops/hardshrink_mps_dispatch.h' 2025-07-24T03:55:18.1825620Z adding 'torch/include/ATen/ops/hardshrink_native.h' 2025-07-24T03:55:18.1826570Z adding 'torch/include/ATen/ops/hardshrink_ops.h' 2025-07-24T03:55:18.1827540Z adding 'torch/include/ATen/ops/hardsigmoid.h' 2025-07-24T03:55:18.1828470Z adding 'torch/include/ATen/ops/hardsigmoid_backward.h' 2025-07-24T03:55:18.1829490Z adding 'torch/include/ATen/ops/hardsigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1830250Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1831170Z adding 'torch/include/ATen/ops/hardsigmoid_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1831990Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta.h' 2025-07-24T03:55:18.1832830Z adding 'torch/include/ATen/ops/hardsigmoid_backward_meta_dispatch.h' 2025-07-24T03:55:18.1833640Z adding 'torch/include/ATen/ops/hardsigmoid_backward_mps_dispatch.h' 2025-07-24T03:55:18.1834600Z adding 'torch/include/ATen/ops/hardsigmoid_backward_native.h' 2025-07-24T03:55:18.1835510Z adding 'torch/include/ATen/ops/hardsigmoid_backward_ops.h' 2025-07-24T03:55:18.1836490Z adding 'torch/include/ATen/ops/hardsigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1837240Z adding 'torch/include/ATen/ops/hardsigmoid_cpu_dispatch.h' 2025-07-24T03:55:18.1838140Z adding 'torch/include/ATen/ops/hardsigmoid_cuda_dispatch.h' 2025-07-24T03:55:18.1838960Z adding 'torch/include/ATen/ops/hardsigmoid_meta.h' 2025-07-24T03:55:18.1839810Z adding 'torch/include/ATen/ops/hardsigmoid_meta_dispatch.h' 2025-07-24T03:55:18.1840610Z adding 'torch/include/ATen/ops/hardsigmoid_mps_dispatch.h' 2025-07-24T03:55:18.1841540Z adding 'torch/include/ATen/ops/hardsigmoid_native.h' 2025-07-24T03:55:18.1842510Z adding 'torch/include/ATen/ops/hardsigmoid_ops.h' 2025-07-24T03:55:18.1843430Z adding 'torch/include/ATen/ops/hardswish.h' 2025-07-24T03:55:18.1844320Z adding 'torch/include/ATen/ops/hardswish_backward.h' 2025-07-24T03:55:18.1845430Z adding 'torch/include/ATen/ops/hardswish_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1846240Z adding 'torch/include/ATen/ops/hardswish_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1847060Z adding 'torch/include/ATen/ops/hardswish_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1847870Z adding 'torch/include/ATen/ops/hardswish_backward_mps_dispatch.h' 2025-07-24T03:55:18.1848770Z adding 'torch/include/ATen/ops/hardswish_backward_native.h' 2025-07-24T03:55:18.1849700Z adding 'torch/include/ATen/ops/hardswish_backward_ops.h' 2025-07-24T03:55:18.1850570Z adding 'torch/include/ATen/ops/hardswish_cpu_dispatch.h' 2025-07-24T03:55:18.1851400Z adding 'torch/include/ATen/ops/hardswish_cuda_dispatch.h' 2025-07-24T03:55:18.1852330Z adding 'torch/include/ATen/ops/hardswish_meta_dispatch.h' 2025-07-24T03:55:18.1853150Z adding 'torch/include/ATen/ops/hardswish_mps_dispatch.h' 2025-07-24T03:55:18.1853980Z adding 'torch/include/ATen/ops/hardswish_native.h' 2025-07-24T03:55:18.1854930Z adding 'torch/include/ATen/ops/hardswish_ops.h' 2025-07-24T03:55:18.1855940Z adding 'torch/include/ATen/ops/hardtanh.h' 2025-07-24T03:55:18.1856900Z adding 'torch/include/ATen/ops/hardtanh_backward.h' 2025-07-24T03:55:18.1857830Z adding 'torch/include/ATen/ops/hardtanh_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1858690Z adding 'torch/include/ATen/ops/hardtanh_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1859590Z adding 'torch/include/ATen/ops/hardtanh_backward_mps_dispatch.h' 2025-07-24T03:55:18.1860470Z adding 'torch/include/ATen/ops/hardtanh_backward_native.h' 2025-07-24T03:55:18.1861430Z adding 'torch/include/ATen/ops/hardtanh_backward_ops.h' 2025-07-24T03:55:18.1862300Z adding 'torch/include/ATen/ops/hardtanh_cpu_dispatch.h' 2025-07-24T03:55:18.1863260Z adding 'torch/include/ATen/ops/hardtanh_cuda_dispatch.h' 2025-07-24T03:55:18.1864130Z adding 'torch/include/ATen/ops/hardtanh_meta_dispatch.h' 2025-07-24T03:55:18.1864960Z adding 'torch/include/ATen/ops/hardtanh_mps_dispatch.h' 2025-07-24T03:55:18.1865820Z adding 'torch/include/ATen/ops/hardtanh_native.h' 2025-07-24T03:55:18.1866900Z adding 'torch/include/ATen/ops/hardtanh_ops.h' 2025-07-24T03:55:18.1867820Z adding 'torch/include/ATen/ops/heaviside.h' 2025-07-24T03:55:18.1868810Z adding 'torch/include/ATen/ops/heaviside_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1869570Z adding 'torch/include/ATen/ops/heaviside_cpu_dispatch.h' 2025-07-24T03:55:18.1870470Z adding 'torch/include/ATen/ops/heaviside_cuda_dispatch.h' 2025-07-24T03:55:18.1871310Z adding 'torch/include/ATen/ops/heaviside_meta.h' 2025-07-24T03:55:18.1872160Z adding 'torch/include/ATen/ops/heaviside_meta_dispatch.h' 2025-07-24T03:55:18.1872980Z adding 'torch/include/ATen/ops/heaviside_native.h' 2025-07-24T03:55:18.1874050Z adding 'torch/include/ATen/ops/heaviside_ops.h' 2025-07-24T03:55:18.1874950Z adding 'torch/include/ATen/ops/hinge_embedding_loss.h' 2025-07-24T03:55:18.1875910Z adding 'torch/include/ATen/ops/hinge_embedding_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1876700Z adding 'torch/include/ATen/ops/hinge_embedding_loss_native.h' 2025-07-24T03:55:18.1877670Z adding 'torch/include/ATen/ops/hinge_embedding_loss_ops.h' 2025-07-24T03:55:18.1878590Z adding 'torch/include/ATen/ops/histc.h' 2025-07-24T03:55:18.1879500Z adding 'torch/include/ATen/ops/histc_cpu_dispatch.h' 2025-07-24T03:55:18.1880340Z adding 'torch/include/ATen/ops/histc_cuda_dispatch.h' 2025-07-24T03:55:18.1881280Z adding 'torch/include/ATen/ops/histc_mps_dispatch.h' 2025-07-24T03:55:18.1882140Z adding 'torch/include/ATen/ops/histc_native.h' 2025-07-24T03:55:18.1883070Z adding 'torch/include/ATen/ops/histc_ops.h' 2025-07-24T03:55:18.1884110Z adding 'torch/include/ATen/ops/histogram.h' 2025-07-24T03:55:18.1885810Z adding 'torch/include/ATen/ops/histogram_cpu_dispatch.h' 2025-07-24T03:55:18.1886470Z adding 'torch/include/ATen/ops/histogram_mps_dispatch.h' 2025-07-24T03:55:18.1887360Z adding 'torch/include/ATen/ops/histogram_native.h' 2025-07-24T03:55:18.1888460Z adding 'torch/include/ATen/ops/histogram_ops.h' 2025-07-24T03:55:18.1889500Z adding 'torch/include/ATen/ops/histogramdd.h' 2025-07-24T03:55:18.1890540Z adding 'torch/include/ATen/ops/histogramdd_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1891330Z adding 'torch/include/ATen/ops/histogramdd_native.h' 2025-07-24T03:55:18.1892440Z adding 'torch/include/ATen/ops/histogramdd_ops.h' 2025-07-24T03:55:18.1893380Z adding 'torch/include/ATen/ops/hsplit.h' 2025-07-24T03:55:18.1897900Z adding 'torch/include/ATen/ops/hsplit_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1898130Z adding 'torch/include/ATen/ops/hsplit_native.h' 2025-07-24T03:55:18.1898210Z adding 'torch/include/ATen/ops/hsplit_ops.h' 2025-07-24T03:55:18.1898560Z adding 'torch/include/ATen/ops/hspmm.h' 2025-07-24T03:55:18.1898640Z adding 'torch/include/ATen/ops/hspmm_native.h' 2025-07-24T03:55:18.1898820Z adding 'torch/include/ATen/ops/hspmm_ops.h' 2025-07-24T03:55:18.1899700Z adding 'torch/include/ATen/ops/hstack.h' 2025-07-24T03:55:18.1900880Z adding 'torch/include/ATen/ops/hstack_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1901520Z adding 'torch/include/ATen/ops/hstack_native.h' 2025-07-24T03:55:18.1902470Z adding 'torch/include/ATen/ops/hstack_ops.h' 2025-07-24T03:55:18.1903420Z adding 'torch/include/ATen/ops/huber_loss.h' 2025-07-24T03:55:18.1904450Z adding 'torch/include/ATen/ops/huber_loss_backward.h' 2025-07-24T03:55:18.1905440Z adding 'torch/include/ATen/ops/huber_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1906330Z adding 'torch/include/ATen/ops/huber_loss_backward_cpu_dispatch.h' 2025-07-24T03:55:18.1907170Z adding 'torch/include/ATen/ops/huber_loss_backward_cuda_dispatch.h' 2025-07-24T03:55:18.1908080Z adding 'torch/include/ATen/ops/huber_loss_backward_mps_dispatch.h' 2025-07-24T03:55:18.1908930Z adding 'torch/include/ATen/ops/huber_loss_backward_native.h' 2025-07-24T03:55:18.1909890Z adding 'torch/include/ATen/ops/huber_loss_backward_ops.h' 2025-07-24T03:55:18.1910780Z adding 'torch/include/ATen/ops/huber_loss_cpu_dispatch.h' 2025-07-24T03:55:18.1911910Z adding 'torch/include/ATen/ops/huber_loss_cuda_dispatch.h' 2025-07-24T03:55:18.1912560Z adding 'torch/include/ATen/ops/huber_loss_mps_dispatch.h' 2025-07-24T03:55:18.1913370Z adding 'torch/include/ATen/ops/huber_loss_native.h' 2025-07-24T03:55:18.1914340Z adding 'torch/include/ATen/ops/huber_loss_ops.h' 2025-07-24T03:55:18.1915280Z adding 'torch/include/ATen/ops/hypot.h' 2025-07-24T03:55:18.1916290Z adding 'torch/include/ATen/ops/hypot_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1917040Z adding 'torch/include/ATen/ops/hypot_cpu_dispatch.h' 2025-07-24T03:55:18.1917870Z adding 'torch/include/ATen/ops/hypot_cuda_dispatch.h' 2025-07-24T03:55:18.1918780Z adding 'torch/include/ATen/ops/hypot_meta.h' 2025-07-24T03:55:18.1919660Z adding 'torch/include/ATen/ops/hypot_meta_dispatch.h' 2025-07-24T03:55:18.1920450Z adding 'torch/include/ATen/ops/hypot_mps_dispatch.h' 2025-07-24T03:55:18.1921280Z adding 'torch/include/ATen/ops/hypot_native.h' 2025-07-24T03:55:18.1922350Z adding 'torch/include/ATen/ops/hypot_ops.h' 2025-07-24T03:55:18.1923220Z adding 'torch/include/ATen/ops/i0.h' 2025-07-24T03:55:18.1924200Z adding 'torch/include/ATen/ops/i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1924950Z adding 'torch/include/ATen/ops/i0_cpu_dispatch.h' 2025-07-24T03:55:18.1925860Z adding 'torch/include/ATen/ops/i0_cuda_dispatch.h' 2025-07-24T03:55:18.1926680Z adding 'torch/include/ATen/ops/i0_meta.h' 2025-07-24T03:55:18.1927510Z adding 'torch/include/ATen/ops/i0_meta_dispatch.h' 2025-07-24T03:55:18.1928320Z adding 'torch/include/ATen/ops/i0_mps_dispatch.h' 2025-07-24T03:55:18.1929220Z adding 'torch/include/ATen/ops/i0_native.h' 2025-07-24T03:55:18.1930190Z adding 'torch/include/ATen/ops/i0_ops.h' 2025-07-24T03:55:18.1931090Z adding 'torch/include/ATen/ops/igamma.h' 2025-07-24T03:55:18.1932100Z adding 'torch/include/ATen/ops/igamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1932940Z adding 'torch/include/ATen/ops/igamma_cpu_dispatch.h' 2025-07-24T03:55:18.1933760Z adding 'torch/include/ATen/ops/igamma_cuda_dispatch.h' 2025-07-24T03:55:18.1934570Z adding 'torch/include/ATen/ops/igamma_meta.h' 2025-07-24T03:55:18.1935430Z adding 'torch/include/ATen/ops/igamma_meta_dispatch.h' 2025-07-24T03:55:18.1936370Z adding 'torch/include/ATen/ops/igamma_native.h' 2025-07-24T03:55:18.1937300Z adding 'torch/include/ATen/ops/igamma_ops.h' 2025-07-24T03:55:18.1938190Z adding 'torch/include/ATen/ops/igammac.h' 2025-07-24T03:55:18.1939210Z adding 'torch/include/ATen/ops/igammac_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1940030Z adding 'torch/include/ATen/ops/igammac_cpu_dispatch.h' 2025-07-24T03:55:18.1940880Z adding 'torch/include/ATen/ops/igammac_cuda_dispatch.h' 2025-07-24T03:55:18.1941680Z adding 'torch/include/ATen/ops/igammac_meta.h' 2025-07-24T03:55:18.1942520Z adding 'torch/include/ATen/ops/igammac_meta_dispatch.h' 2025-07-24T03:55:18.1943430Z adding 'torch/include/ATen/ops/igammac_native.h' 2025-07-24T03:55:18.1944400Z adding 'torch/include/ATen/ops/igammac_ops.h' 2025-07-24T03:55:18.1945320Z adding 'torch/include/ATen/ops/im2col.h' 2025-07-24T03:55:18.1946240Z adding 'torch/include/ATen/ops/im2col_cpu_dispatch.h' 2025-07-24T03:55:18.1947170Z adding 'torch/include/ATen/ops/im2col_cuda_dispatch.h' 2025-07-24T03:55:18.1948030Z adding 'torch/include/ATen/ops/im2col_mps_dispatch.h' 2025-07-24T03:55:18.1948890Z adding 'torch/include/ATen/ops/im2col_native.h' 2025-07-24T03:55:18.1949860Z adding 'torch/include/ATen/ops/im2col_ops.h' 2025-07-24T03:55:18.1950810Z adding 'torch/include/ATen/ops/imag.h' 2025-07-24T03:55:18.1951790Z adding 'torch/include/ATen/ops/imag_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1952540Z adding 'torch/include/ATen/ops/imag_native.h' 2025-07-24T03:55:18.1953410Z adding 'torch/include/ATen/ops/imag_ops.h' 2025-07-24T03:55:18.1954410Z adding 'torch/include/ATen/ops/index.h' 2025-07-24T03:55:18.1955380Z adding 'torch/include/ATen/ops/index_add.h' 2025-07-24T03:55:18.1956420Z adding 'torch/include/ATen/ops/index_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1957260Z adding 'torch/include/ATen/ops/index_add_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1958170Z adding 'torch/include/ATen/ops/index_add_cpu_dispatch.h' 2025-07-24T03:55:18.1959030Z adding 'torch/include/ATen/ops/index_add_cuda_dispatch.h' 2025-07-24T03:55:18.1959950Z adding 'torch/include/ATen/ops/index_add_meta.h' 2025-07-24T03:55:18.1960840Z adding 'torch/include/ATen/ops/index_add_meta_dispatch.h' 2025-07-24T03:55:18.1961790Z adding 'torch/include/ATen/ops/index_add_mps_dispatch.h' 2025-07-24T03:55:18.1962690Z adding 'torch/include/ATen/ops/index_add_native.h' 2025-07-24T03:55:18.1963770Z adding 'torch/include/ATen/ops/index_add_ops.h' 2025-07-24T03:55:18.1964780Z adding 'torch/include/ATen/ops/index_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1965680Z adding 'torch/include/ATen/ops/index_copy.h' 2025-07-24T03:55:18.1966720Z adding 'torch/include/ATen/ops/index_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1967520Z adding 'torch/include/ATen/ops/index_copy_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1968320Z adding 'torch/include/ATen/ops/index_copy_cpu_dispatch.h' 2025-07-24T03:55:18.1969240Z adding 'torch/include/ATen/ops/index_copy_cuda_dispatch.h' 2025-07-24T03:55:18.1970160Z adding 'torch/include/ATen/ops/index_copy_meta.h' 2025-07-24T03:55:18.1971020Z adding 'torch/include/ATen/ops/index_copy_meta_dispatch.h' 2025-07-24T03:55:18.1971850Z adding 'torch/include/ATen/ops/index_copy_mps_dispatch.h' 2025-07-24T03:55:18.1972790Z adding 'torch/include/ATen/ops/index_copy_native.h' 2025-07-24T03:55:18.1973910Z adding 'torch/include/ATen/ops/index_copy_ops.h' 2025-07-24T03:55:18.1974800Z adding 'torch/include/ATen/ops/index_cpu_dispatch.h' 2025-07-24T03:55:18.1975630Z adding 'torch/include/ATen/ops/index_cuda_dispatch.h' 2025-07-24T03:55:18.1976760Z adding 'torch/include/ATen/ops/index_fill.h' 2025-07-24T03:55:18.1977800Z adding 'torch/include/ATen/ops/index_fill_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1978680Z adding 'torch/include/ATen/ops/index_fill_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.1979470Z adding 'torch/include/ATen/ops/index_fill_cpu_dispatch.h' 2025-07-24T03:55:18.1980440Z adding 'torch/include/ATen/ops/index_fill_cuda_dispatch.h' 2025-07-24T03:55:18.1981230Z adding 'torch/include/ATen/ops/index_fill_meta_dispatch.h' 2025-07-24T03:55:18.1982030Z adding 'torch/include/ATen/ops/index_fill_mps_dispatch.h' 2025-07-24T03:55:18.1982940Z adding 'torch/include/ATen/ops/index_fill_native.h' 2025-07-24T03:55:18.1984550Z adding 'torch/include/ATen/ops/index_fill_ops.h' 2025-07-24T03:55:18.1985530Z adding 'torch/include/ATen/ops/index_meta.h' 2025-07-24T03:55:18.1986410Z adding 'torch/include/ATen/ops/index_meta_dispatch.h' 2025-07-24T03:55:18.1987210Z adding 'torch/include/ATen/ops/index_mps_dispatch.h' 2025-07-24T03:55:18.1988140Z adding 'torch/include/ATen/ops/index_native.h' 2025-07-24T03:55:18.1989130Z adding 'torch/include/ATen/ops/index_ops.h' 2025-07-24T03:55:18.1990080Z adding 'torch/include/ATen/ops/index_put.h' 2025-07-24T03:55:18.1991130Z adding 'torch/include/ATen/ops/index_put_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.1992020Z adding 'torch/include/ATen/ops/index_put_native.h' 2025-07-24T03:55:18.1993120Z adding 'torch/include/ATen/ops/index_put_ops.h' 2025-07-24T03:55:18.1994120Z adding 'torch/include/ATen/ops/index_reduce.h' 2025-07-24T03:55:18.1995150Z adding 'torch/include/ATen/ops/index_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.1996040Z adding 'torch/include/ATen/ops/index_reduce_cpu_dispatch.h' 2025-07-24T03:55:18.1996910Z adding 'torch/include/ATen/ops/index_reduce_cuda_dispatch.h' 2025-07-24T03:55:18.1997800Z adding 'torch/include/ATen/ops/index_reduce_meta.h' 2025-07-24T03:55:18.1998690Z adding 'torch/include/ATen/ops/index_reduce_meta_dispatch.h' 2025-07-24T03:55:18.1999640Z adding 'torch/include/ATen/ops/index_reduce_native.h' 2025-07-24T03:55:18.2000670Z adding 'torch/include/ATen/ops/index_reduce_ops.h' 2025-07-24T03:55:18.2001620Z adding 'torch/include/ATen/ops/index_select.h' 2025-07-24T03:55:18.2002570Z adding 'torch/include/ATen/ops/index_select_backward.h' 2025-07-24T03:55:18.2003670Z adding 'torch/include/ATen/ops/index_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2004440Z adding 'torch/include/ATen/ops/index_select_backward_native.h' 2025-07-24T03:55:18.2005370Z adding 'torch/include/ATen/ops/index_select_backward_ops.h' 2025-07-24T03:55:18.2006350Z adding 'torch/include/ATen/ops/index_select_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2007220Z adding 'torch/include/ATen/ops/index_select_cpu_dispatch.h' 2025-07-24T03:55:18.2008070Z adding 'torch/include/ATen/ops/index_select_cuda_dispatch.h' 2025-07-24T03:55:18.2008910Z adding 'torch/include/ATen/ops/index_select_mps_dispatch.h' 2025-07-24T03:55:18.2009800Z adding 'torch/include/ATen/ops/index_select_native.h' 2025-07-24T03:55:18.2010980Z adding 'torch/include/ATen/ops/index_select_ops.h' 2025-07-24T03:55:18.2011760Z adding 'torch/include/ATen/ops/indices.h' 2025-07-24T03:55:18.2012710Z adding 'torch/include/ATen/ops/indices_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2013490Z adding 'torch/include/ATen/ops/indices_copy.h' 2025-07-24T03:55:18.2014530Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2015440Z adding 'torch/include/ATen/ops/indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2016150Z adding 'torch/include/ATen/ops/indices_copy_native.h' 2025-07-24T03:55:18.2017080Z adding 'torch/include/ATen/ops/indices_copy_ops.h' 2025-07-24T03:55:18.2017990Z adding 'torch/include/ATen/ops/indices_native.h' 2025-07-24T03:55:18.2018890Z adding 'torch/include/ATen/ops/indices_ops.h' 2025-07-24T03:55:18.2019820Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward.h' 2025-07-24T03:55:18.2020800Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2021620Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_native.h' 2025-07-24T03:55:18.2022540Z adding 'torch/include/ATen/ops/infinitely_differentiable_gelu_backward_ops.h' 2025-07-24T03:55:18.2023340Z adding 'torch/include/ATen/ops/inner.h' 2025-07-24T03:55:18.2024270Z adding 'torch/include/ATen/ops/inner_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2025100Z adding 'torch/include/ATen/ops/inner_native.h' 2025-07-24T03:55:18.2026040Z adding 'torch/include/ATen/ops/inner_ops.h' 2025-07-24T03:55:18.2026940Z adding 'torch/include/ATen/ops/instance_norm.h' 2025-07-24T03:55:18.2027910Z adding 'torch/include/ATen/ops/instance_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2028770Z adding 'torch/include/ATen/ops/instance_norm_native.h' 2025-07-24T03:55:18.2029760Z adding 'torch/include/ATen/ops/instance_norm_ops.h' 2025-07-24T03:55:18.2030610Z adding 'torch/include/ATen/ops/int_repr.h' 2025-07-24T03:55:18.2031550Z adding 'torch/include/ATen/ops/int_repr_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2032380Z adding 'torch/include/ATen/ops/int_repr_native.h' 2025-07-24T03:55:18.2033290Z adding 'torch/include/ATen/ops/int_repr_ops.h' 2025-07-24T03:55:18.2034160Z adding 'torch/include/ATen/ops/inverse.h' 2025-07-24T03:55:18.2035110Z adding 'torch/include/ATen/ops/inverse_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2035980Z adding 'torch/include/ATen/ops/inverse_native.h' 2025-07-24T03:55:18.2036900Z adding 'torch/include/ATen/ops/inverse_ops.h' 2025-07-24T03:55:18.2037720Z adding 'torch/include/ATen/ops/is_coalesced.h' 2025-07-24T03:55:18.2038650Z adding 'torch/include/ATen/ops/is_coalesced_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2039480Z adding 'torch/include/ATen/ops/is_coalesced_native.h' 2025-07-24T03:55:18.2040360Z adding 'torch/include/ATen/ops/is_coalesced_ops.h' 2025-07-24T03:55:18.2041200Z adding 'torch/include/ATen/ops/is_complex.h' 2025-07-24T03:55:18.2042130Z adding 'torch/include/ATen/ops/is_complex_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2042980Z adding 'torch/include/ATen/ops/is_complex_native.h' 2025-07-24T03:55:18.2043860Z adding 'torch/include/ATen/ops/is_complex_ops.h' 2025-07-24T03:55:18.2044700Z adding 'torch/include/ATen/ops/is_conj.h' 2025-07-24T03:55:18.2045630Z adding 'torch/include/ATen/ops/is_conj_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2046450Z adding 'torch/include/ATen/ops/is_conj_native.h' 2025-07-24T03:55:18.2047320Z adding 'torch/include/ATen/ops/is_conj_ops.h' 2025-07-24T03:55:18.2048160Z adding 'torch/include/ATen/ops/is_distributed.h' 2025-07-24T03:55:18.2049100Z adding 'torch/include/ATen/ops/is_distributed_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2049960Z adding 'torch/include/ATen/ops/is_distributed_native.h' 2025-07-24T03:55:18.2050840Z adding 'torch/include/ATen/ops/is_distributed_ops.h' 2025-07-24T03:55:18.2051700Z adding 'torch/include/ATen/ops/is_floating_point.h' 2025-07-24T03:55:18.2052630Z adding 'torch/include/ATen/ops/is_floating_point_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2053440Z adding 'torch/include/ATen/ops/is_floating_point_native.h' 2025-07-24T03:55:18.2054330Z adding 'torch/include/ATen/ops/is_floating_point_ops.h' 2025-07-24T03:55:18.2055150Z adding 'torch/include/ATen/ops/is_inference.h' 2025-07-24T03:55:18.2056090Z adding 'torch/include/ATen/ops/is_inference_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2056940Z adding 'torch/include/ATen/ops/is_inference_native.h' 2025-07-24T03:55:18.2057760Z adding 'torch/include/ATen/ops/is_inference_ops.h' 2025-07-24T03:55:18.2058590Z adding 'torch/include/ATen/ops/is_leaf.h' 2025-07-24T03:55:18.2059500Z adding 'torch/include/ATen/ops/is_leaf_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2060340Z adding 'torch/include/ATen/ops/is_leaf_native.h' 2025-07-24T03:55:18.2061210Z adding 'torch/include/ATen/ops/is_leaf_ops.h' 2025-07-24T03:55:18.2062030Z adding 'torch/include/ATen/ops/is_neg.h' 2025-07-24T03:55:18.2062950Z adding 'torch/include/ATen/ops/is_neg_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2063780Z adding 'torch/include/ATen/ops/is_neg_native.h' 2025-07-24T03:55:18.2064660Z adding 'torch/include/ATen/ops/is_neg_ops.h' 2025-07-24T03:55:18.2065530Z adding 'torch/include/ATen/ops/is_nonzero.h' 2025-07-24T03:55:18.2066460Z adding 'torch/include/ATen/ops/is_nonzero_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2067280Z adding 'torch/include/ATen/ops/is_nonzero_native.h' 2025-07-24T03:55:18.2068160Z adding 'torch/include/ATen/ops/is_nonzero_ops.h' 2025-07-24T03:55:18.2068970Z adding 'torch/include/ATen/ops/is_pinned.h' 2025-07-24T03:55:18.2069930Z adding 'torch/include/ATen/ops/is_pinned_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2070770Z adding 'torch/include/ATen/ops/is_pinned_native.h' 2025-07-24T03:55:18.2071710Z adding 'torch/include/ATen/ops/is_pinned_ops.h' 2025-07-24T03:55:18.2072560Z adding 'torch/include/ATen/ops/is_same_size.h' 2025-07-24T03:55:18.2073590Z adding 'torch/include/ATen/ops/is_same_size_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2074440Z adding 'torch/include/ATen/ops/is_same_size_native.h' 2025-07-24T03:55:18.2075350Z adding 'torch/include/ATen/ops/is_same_size_ops.h' 2025-07-24T03:55:18.2076150Z adding 'torch/include/ATen/ops/is_set_to.h' 2025-07-24T03:55:18.2077050Z adding 'torch/include/ATen/ops/is_set_to_cpu_dispatch.h' 2025-07-24T03:55:18.2077960Z adding 'torch/include/ATen/ops/is_set_to_cuda_dispatch.h' 2025-07-24T03:55:18.2078810Z adding 'torch/include/ATen/ops/is_set_to_mps_dispatch.h' 2025-07-24T03:55:18.2079710Z adding 'torch/include/ATen/ops/is_set_to_native.h' 2025-07-24T03:55:18.2080630Z adding 'torch/include/ATen/ops/is_set_to_ops.h' 2025-07-24T03:55:18.2081520Z adding 'torch/include/ATen/ops/is_signed.h' 2025-07-24T03:55:18.2082480Z adding 'torch/include/ATen/ops/is_signed_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2083180Z adding 'torch/include/ATen/ops/is_signed_native.h' 2025-07-24T03:55:18.2084030Z adding 'torch/include/ATen/ops/is_signed_ops.h' 2025-07-24T03:55:18.2084980Z adding 'torch/include/ATen/ops/is_vulkan_available.h' 2025-07-24T03:55:18.2085940Z adding 'torch/include/ATen/ops/is_vulkan_available_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2086670Z adding 'torch/include/ATen/ops/is_vulkan_available_native.h' 2025-07-24T03:55:18.2087520Z adding 'torch/include/ATen/ops/is_vulkan_available_ops.h' 2025-07-24T03:55:18.2088440Z adding 'torch/include/ATen/ops/isclose.h' 2025-07-24T03:55:18.2089410Z adding 'torch/include/ATen/ops/isclose_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2090160Z adding 'torch/include/ATen/ops/isclose_native.h' 2025-07-24T03:55:18.2091040Z adding 'torch/include/ATen/ops/isclose_ops.h' 2025-07-24T03:55:18.2091970Z adding 'torch/include/ATen/ops/isfinite.h' 2025-07-24T03:55:18.2092910Z adding 'torch/include/ATen/ops/isfinite_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2094010Z adding 'torch/include/ATen/ops/isfinite_native.h' 2025-07-24T03:55:18.2094860Z adding 'torch/include/ATen/ops/isfinite_ops.h' 2025-07-24T03:55:18.2095980Z adding 'torch/include/ATen/ops/isin.h' 2025-07-24T03:55:18.2097040Z adding 'torch/include/ATen/ops/isin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2097860Z adding 'torch/include/ATen/ops/isin_cpu_dispatch.h' 2025-07-24T03:55:18.2098770Z adding 'torch/include/ATen/ops/isin_cuda_dispatch.h' 2025-07-24T03:55:18.2099710Z adding 'torch/include/ATen/ops/isin_meta.h' 2025-07-24T03:55:18.2100660Z adding 'torch/include/ATen/ops/isin_meta_dispatch.h' 2025-07-24T03:55:18.2101530Z adding 'torch/include/ATen/ops/isin_mps_dispatch.h' 2025-07-24T03:55:18.2102420Z adding 'torch/include/ATen/ops/isin_native.h' 2025-07-24T03:55:18.2103670Z adding 'torch/include/ATen/ops/isin_ops.h' 2025-07-24T03:55:18.2104590Z adding 'torch/include/ATen/ops/isinf.h' 2025-07-24T03:55:18.2105550Z adding 'torch/include/ATen/ops/isinf_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2106310Z adding 'torch/include/ATen/ops/isinf_native.h' 2025-07-24T03:55:18.2107320Z adding 'torch/include/ATen/ops/isinf_ops.h' 2025-07-24T03:55:18.2108200Z adding 'torch/include/ATen/ops/isnan.h' 2025-07-24T03:55:18.2109190Z adding 'torch/include/ATen/ops/isnan_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2109940Z adding 'torch/include/ATen/ops/isnan_cpu_dispatch.h' 2025-07-24T03:55:18.2110830Z adding 'torch/include/ATen/ops/isnan_cuda_dispatch.h' 2025-07-24T03:55:18.2111640Z adding 'torch/include/ATen/ops/isnan_mps_dispatch.h' 2025-07-24T03:55:18.2112480Z adding 'torch/include/ATen/ops/isnan_native.h' 2025-07-24T03:55:18.2113390Z adding 'torch/include/ATen/ops/isnan_ops.h' 2025-07-24T03:55:18.2114370Z adding 'torch/include/ATen/ops/isneginf.h' 2025-07-24T03:55:18.2115380Z adding 'torch/include/ATen/ops/isneginf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2116110Z adding 'torch/include/ATen/ops/isneginf_cpu_dispatch.h' 2025-07-24T03:55:18.2116930Z adding 'torch/include/ATen/ops/isneginf_cuda_dispatch.h' 2025-07-24T03:55:18.2117820Z adding 'torch/include/ATen/ops/isneginf_meta.h' 2025-07-24T03:55:18.2118680Z adding 'torch/include/ATen/ops/isneginf_meta_dispatch.h' 2025-07-24T03:55:18.2119470Z adding 'torch/include/ATen/ops/isneginf_mps_dispatch.h' 2025-07-24T03:55:18.2120320Z adding 'torch/include/ATen/ops/isneginf_native.h' 2025-07-24T03:55:18.2121320Z adding 'torch/include/ATen/ops/isneginf_ops.h' 2025-07-24T03:55:18.2122200Z adding 'torch/include/ATen/ops/isposinf.h' 2025-07-24T03:55:18.2123190Z adding 'torch/include/ATen/ops/isposinf_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2123890Z adding 'torch/include/ATen/ops/isposinf_cpu_dispatch.h' 2025-07-24T03:55:18.2124780Z adding 'torch/include/ATen/ops/isposinf_cuda_dispatch.h' 2025-07-24T03:55:18.2125610Z adding 'torch/include/ATen/ops/isposinf_meta.h' 2025-07-24T03:55:18.2126440Z adding 'torch/include/ATen/ops/isposinf_meta_dispatch.h' 2025-07-24T03:55:18.2127240Z adding 'torch/include/ATen/ops/isposinf_mps_dispatch.h' 2025-07-24T03:55:18.2128170Z adding 'torch/include/ATen/ops/isposinf_native.h' 2025-07-24T03:55:18.2129110Z adding 'torch/include/ATen/ops/isposinf_ops.h' 2025-07-24T03:55:18.2129940Z adding 'torch/include/ATen/ops/isreal.h' 2025-07-24T03:55:18.2130910Z adding 'torch/include/ATen/ops/isreal_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2131730Z adding 'torch/include/ATen/ops/isreal_native.h' 2025-07-24T03:55:18.2132610Z adding 'torch/include/ATen/ops/isreal_ops.h' 2025-07-24T03:55:18.2133530Z adding 'torch/include/ATen/ops/istft.h' 2025-07-24T03:55:18.2134540Z adding 'torch/include/ATen/ops/istft_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2135410Z adding 'torch/include/ATen/ops/istft_native.h' 2025-07-24T03:55:18.2136380Z adding 'torch/include/ATen/ops/istft_ops.h' 2025-07-24T03:55:18.2137200Z adding 'torch/include/ATen/ops/item.h' 2025-07-24T03:55:18.2138160Z adding 'torch/include/ATen/ops/item_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2138980Z adding 'torch/include/ATen/ops/item_native.h' 2025-07-24T03:55:18.2139880Z adding 'torch/include/ATen/ops/item_ops.h' 2025-07-24T03:55:18.2141030Z adding 'torch/include/ATen/ops/kaiser_window.h' 2025-07-24T03:55:18.2142120Z adding 'torch/include/ATen/ops/kaiser_window_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2143030Z adding 'torch/include/ATen/ops/kaiser_window_native.h' 2025-07-24T03:55:18.2144200Z adding 'torch/include/ATen/ops/kaiser_window_ops.h' 2025-07-24T03:55:18.2145080Z adding 'torch/include/ATen/ops/kl_div.h' 2025-07-24T03:55:18.2146060Z adding 'torch/include/ATen/ops/kl_div_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2146880Z adding 'torch/include/ATen/ops/kl_div_native.h' 2025-07-24T03:55:18.2147800Z adding 'torch/include/ATen/ops/kl_div_ops.h' 2025-07-24T03:55:18.2148680Z adding 'torch/include/ATen/ops/kron.h' 2025-07-24T03:55:18.2149620Z adding 'torch/include/ATen/ops/kron_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2150460Z adding 'torch/include/ATen/ops/kron_native.h' 2025-07-24T03:55:18.2151390Z adding 'torch/include/ATen/ops/kron_ops.h' 2025-07-24T03:55:18.2152710Z adding 'torch/include/ATen/ops/kthvalue.h' 2025-07-24T03:55:18.2153710Z adding 'torch/include/ATen/ops/kthvalue_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2154750Z adding 'torch/include/ATen/ops/kthvalue_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2155580Z adding 'torch/include/ATen/ops/kthvalue_cpu_dispatch.h' 2025-07-24T03:55:18.2156450Z adding 'torch/include/ATen/ops/kthvalue_cuda_dispatch.h' 2025-07-24T03:55:18.2157290Z adding 'torch/include/ATen/ops/kthvalue_native.h' 2025-07-24T03:55:18.2158470Z adding 'torch/include/ATen/ops/kthvalue_ops.h' 2025-07-24T03:55:18.2159330Z adding 'torch/include/ATen/ops/l1_loss.h' 2025-07-24T03:55:18.2160280Z adding 'torch/include/ATen/ops/l1_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2161040Z adding 'torch/include/ATen/ops/l1_loss_native.h' 2025-07-24T03:55:18.2162020Z adding 'torch/include/ATen/ops/l1_loss_ops.h' 2025-07-24T03:55:18.2163010Z adding 'torch/include/ATen/ops/layer_norm.h' 2025-07-24T03:55:18.2164030Z adding 'torch/include/ATen/ops/layer_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2164790Z adding 'torch/include/ATen/ops/layer_norm_native.h' 2025-07-24T03:55:18.2165800Z adding 'torch/include/ATen/ops/layer_norm_ops.h' 2025-07-24T03:55:18.2166710Z adding 'torch/include/ATen/ops/lcm.h' 2025-07-24T03:55:18.2167680Z adding 'torch/include/ATen/ops/lcm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2168430Z adding 'torch/include/ATen/ops/lcm_cpu_dispatch.h' 2025-07-24T03:55:18.2169330Z adding 'torch/include/ATen/ops/lcm_cuda_dispatch.h' 2025-07-24T03:55:18.2170170Z adding 'torch/include/ATen/ops/lcm_meta.h' 2025-07-24T03:55:18.2171010Z adding 'torch/include/ATen/ops/lcm_meta_dispatch.h' 2025-07-24T03:55:18.2171850Z adding 'torch/include/ATen/ops/lcm_native.h' 2025-07-24T03:55:18.2172900Z adding 'torch/include/ATen/ops/lcm_ops.h' 2025-07-24T03:55:18.2173820Z adding 'torch/include/ATen/ops/ldexp.h' 2025-07-24T03:55:18.2174780Z adding 'torch/include/ATen/ops/ldexp_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2175540Z adding 'torch/include/ATen/ops/ldexp_native.h' 2025-07-24T03:55:18.2176620Z adding 'torch/include/ATen/ops/ldexp_ops.h' 2025-07-24T03:55:18.2177560Z adding 'torch/include/ATen/ops/le.h' 2025-07-24T03:55:18.2178560Z adding 'torch/include/ATen/ops/le_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2179350Z adding 'torch/include/ATen/ops/le_cpu_dispatch.h' 2025-07-24T03:55:18.2180280Z adding 'torch/include/ATen/ops/le_cuda_dispatch.h' 2025-07-24T03:55:18.2181120Z adding 'torch/include/ATen/ops/le_meta.h' 2025-07-24T03:55:18.2181980Z adding 'torch/include/ATen/ops/le_meta_dispatch.h' 2025-07-24T03:55:18.2182810Z adding 'torch/include/ATen/ops/le_mps_dispatch.h' 2025-07-24T03:55:18.2183780Z adding 'torch/include/ATen/ops/le_native.h' 2025-07-24T03:55:18.2184940Z adding 'torch/include/ATen/ops/le_ops.h' 2025-07-24T03:55:18.2185830Z adding 'torch/include/ATen/ops/leaky_relu.h' 2025-07-24T03:55:18.2186800Z adding 'torch/include/ATen/ops/leaky_relu_backward.h' 2025-07-24T03:55:18.2187880Z adding 'torch/include/ATen/ops/leaky_relu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2188690Z adding 'torch/include/ATen/ops/leaky_relu_backward_cpu_dispatch.h' 2025-07-24T03:55:18.2189540Z adding 'torch/include/ATen/ops/leaky_relu_backward_cuda_dispatch.h' 2025-07-24T03:55:18.2190350Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta.h' 2025-07-24T03:55:18.2191320Z adding 'torch/include/ATen/ops/leaky_relu_backward_meta_dispatch.h' 2025-07-24T03:55:18.2192180Z adding 'torch/include/ATen/ops/leaky_relu_backward_mps_dispatch.h' 2025-07-24T03:55:18.2193010Z adding 'torch/include/ATen/ops/leaky_relu_backward_native.h' 2025-07-24T03:55:18.2193960Z adding 'torch/include/ATen/ops/leaky_relu_backward_ops.h' 2025-07-24T03:55:18.2195050Z adding 'torch/include/ATen/ops/leaky_relu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2195840Z adding 'torch/include/ATen/ops/leaky_relu_cpu_dispatch.h' 2025-07-24T03:55:18.2196680Z adding 'torch/include/ATen/ops/leaky_relu_cuda_dispatch.h' 2025-07-24T03:55:18.2197510Z adding 'torch/include/ATen/ops/leaky_relu_meta.h' 2025-07-24T03:55:18.2198470Z adding 'torch/include/ATen/ops/leaky_relu_meta_dispatch.h' 2025-07-24T03:55:18.2199270Z adding 'torch/include/ATen/ops/leaky_relu_mps_dispatch.h' 2025-07-24T03:55:18.2200150Z adding 'torch/include/ATen/ops/leaky_relu_native.h' 2025-07-24T03:55:18.2201130Z adding 'torch/include/ATen/ops/leaky_relu_ops.h' 2025-07-24T03:55:18.2202160Z adding 'torch/include/ATen/ops/lerp.h' 2025-07-24T03:55:18.2203180Z adding 'torch/include/ATen/ops/lerp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2203970Z adding 'torch/include/ATen/ops/lerp_cpu_dispatch.h' 2025-07-24T03:55:18.2204820Z adding 'torch/include/ATen/ops/lerp_cuda_dispatch.h' 2025-07-24T03:55:18.2205750Z adding 'torch/include/ATen/ops/lerp_meta.h' 2025-07-24T03:55:18.2206660Z adding 'torch/include/ATen/ops/lerp_meta_dispatch.h' 2025-07-24T03:55:18.2207530Z adding 'torch/include/ATen/ops/lerp_mps_dispatch.h' 2025-07-24T03:55:18.2208380Z adding 'torch/include/ATen/ops/lerp_native.h' 2025-07-24T03:55:18.2209620Z adding 'torch/include/ATen/ops/lerp_ops.h' 2025-07-24T03:55:18.2210590Z adding 'torch/include/ATen/ops/less.h' 2025-07-24T03:55:18.2211580Z adding 'torch/include/ATen/ops/less_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2212450Z adding 'torch/include/ATen/ops/less_equal.h' 2025-07-24T03:55:18.2213530Z adding 'torch/include/ATen/ops/less_equal_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2214320Z adding 'torch/include/ATen/ops/less_equal_native.h' 2025-07-24T03:55:18.2215400Z adding 'torch/include/ATen/ops/less_equal_ops.h' 2025-07-24T03:55:18.2216260Z adding 'torch/include/ATen/ops/less_native.h' 2025-07-24T03:55:18.2217420Z adding 'torch/include/ATen/ops/less_ops.h' 2025-07-24T03:55:18.2218340Z adding 'torch/include/ATen/ops/lgamma.h' 2025-07-24T03:55:18.2219330Z adding 'torch/include/ATen/ops/lgamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2220090Z adding 'torch/include/ATen/ops/lgamma_cpu_dispatch.h' 2025-07-24T03:55:18.2221010Z adding 'torch/include/ATen/ops/lgamma_cuda_dispatch.h' 2025-07-24T03:55:18.2221830Z adding 'torch/include/ATen/ops/lgamma_meta.h' 2025-07-24T03:55:18.2222670Z adding 'torch/include/ATen/ops/lgamma_meta_dispatch.h' 2025-07-24T03:55:18.2223470Z adding 'torch/include/ATen/ops/lgamma_mps_dispatch.h' 2025-07-24T03:55:18.2224390Z adding 'torch/include/ATen/ops/lgamma_native.h' 2025-07-24T03:55:18.2225350Z adding 'torch/include/ATen/ops/lgamma_ops.h' 2025-07-24T03:55:18.2226210Z adding 'torch/include/ATen/ops/lift.h' 2025-07-24T03:55:18.2227160Z adding 'torch/include/ATen/ops/lift_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2228040Z adding 'torch/include/ATen/ops/lift_fresh.h' 2025-07-24T03:55:18.2229030Z adding 'torch/include/ATen/ops/lift_fresh_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2229810Z adding 'torch/include/ATen/ops/lift_fresh_copy.h' 2025-07-24T03:55:18.2230780Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2231770Z adding 'torch/include/ATen/ops/lift_fresh_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2232490Z adding 'torch/include/ATen/ops/lift_fresh_copy_native.h' 2025-07-24T03:55:18.2233400Z adding 'torch/include/ATen/ops/lift_fresh_copy_ops.h' 2025-07-24T03:55:18.2234210Z adding 'torch/include/ATen/ops/lift_fresh_native.h' 2025-07-24T03:55:18.2235210Z adding 'torch/include/ATen/ops/lift_fresh_ops.h' 2025-07-24T03:55:18.2236010Z adding 'torch/include/ATen/ops/lift_native.h' 2025-07-24T03:55:18.2236920Z adding 'torch/include/ATen/ops/lift_ops.h' 2025-07-24T03:55:18.2237820Z adding 'torch/include/ATen/ops/linalg_cholesky.h' 2025-07-24T03:55:18.2238930Z adding 'torch/include/ATen/ops/linalg_cholesky_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2239780Z adding 'torch/include/ATen/ops/linalg_cholesky_ex.h' 2025-07-24T03:55:18.2240790Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2241610Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cpu_dispatch.h' 2025-07-24T03:55:18.2242550Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_cuda_dispatch.h' 2025-07-24T03:55:18.2243360Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta.h' 2025-07-24T03:55:18.2244280Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_meta_dispatch.h' 2025-07-24T03:55:18.2245110Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_mps_dispatch.h' 2025-07-24T03:55:18.2246010Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_native.h' 2025-07-24T03:55:18.2246990Z adding 'torch/include/ATen/ops/linalg_cholesky_ex_ops.h' 2025-07-24T03:55:18.2247830Z adding 'torch/include/ATen/ops/linalg_cholesky_native.h' 2025-07-24T03:55:18.2248760Z adding 'torch/include/ATen/ops/linalg_cholesky_ops.h' 2025-07-24T03:55:18.2249780Z adding 'torch/include/ATen/ops/linalg_cond.h' 2025-07-24T03:55:18.2250790Z adding 'torch/include/ATen/ops/linalg_cond_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2251560Z adding 'torch/include/ATen/ops/linalg_cond_native.h' 2025-07-24T03:55:18.2252600Z adding 'torch/include/ATen/ops/linalg_cond_ops.h' 2025-07-24T03:55:18.2253580Z adding 'torch/include/ATen/ops/linalg_cross.h' 2025-07-24T03:55:18.2254600Z adding 'torch/include/ATen/ops/linalg_cross_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2255390Z adding 'torch/include/ATen/ops/linalg_cross_cpu_dispatch.h' 2025-07-24T03:55:18.2256220Z adding 'torch/include/ATen/ops/linalg_cross_cuda_dispatch.h' 2025-07-24T03:55:18.2257130Z adding 'torch/include/ATen/ops/linalg_cross_meta.h' 2025-07-24T03:55:18.2258020Z adding 'torch/include/ATen/ops/linalg_cross_meta_dispatch.h' 2025-07-24T03:55:18.2258870Z adding 'torch/include/ATen/ops/linalg_cross_mps_dispatch.h' 2025-07-24T03:55:18.2259700Z adding 'torch/include/ATen/ops/linalg_cross_native.h' 2025-07-24T03:55:18.2260750Z adding 'torch/include/ATen/ops/linalg_cross_ops.h' 2025-07-24T03:55:18.2261630Z adding 'torch/include/ATen/ops/linalg_det.h' 2025-07-24T03:55:18.2262590Z adding 'torch/include/ATen/ops/linalg_det_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2263340Z adding 'torch/include/ATen/ops/linalg_det_native.h' 2025-07-24T03:55:18.2264350Z adding 'torch/include/ATen/ops/linalg_det_ops.h' 2025-07-24T03:55:18.2265270Z adding 'torch/include/ATen/ops/linalg_diagonal.h' 2025-07-24T03:55:18.2266230Z adding 'torch/include/ATen/ops/linalg_diagonal_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2266980Z adding 'torch/include/ATen/ops/linalg_diagonal_native.h' 2025-07-24T03:55:18.2267980Z adding 'torch/include/ATen/ops/linalg_diagonal_ops.h' 2025-07-24T03:55:18.2268870Z adding 'torch/include/ATen/ops/linalg_eig.h' 2025-07-24T03:55:18.2269770Z adding 'torch/include/ATen/ops/linalg_eig_cpu_dispatch.h' 2025-07-24T03:55:18.2270640Z adding 'torch/include/ATen/ops/linalg_eig_cuda_dispatch.h' 2025-07-24T03:55:18.2271510Z adding 'torch/include/ATen/ops/linalg_eig_native.h' 2025-07-24T03:55:18.2272470Z adding 'torch/include/ATen/ops/linalg_eig_ops.h' 2025-07-24T03:55:18.2273400Z adding 'torch/include/ATen/ops/linalg_eigh.h' 2025-07-24T03:55:18.2274400Z adding 'torch/include/ATen/ops/linalg_eigh_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2275260Z adding 'torch/include/ATen/ops/linalg_eigh_native.h' 2025-07-24T03:55:18.2276230Z adding 'torch/include/ATen/ops/linalg_eigh_ops.h' 2025-07-24T03:55:18.2277100Z adding 'torch/include/ATen/ops/linalg_eigvals.h' 2025-07-24T03:55:18.2278070Z adding 'torch/include/ATen/ops/linalg_eigvals_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2278950Z adding 'torch/include/ATen/ops/linalg_eigvals_cpu_dispatch.h' 2025-07-24T03:55:18.2279780Z adding 'torch/include/ATen/ops/linalg_eigvals_cuda_dispatch.h' 2025-07-24T03:55:18.2280600Z adding 'torch/include/ATen/ops/linalg_eigvals_native.h' 2025-07-24T03:55:18.2281530Z adding 'torch/include/ATen/ops/linalg_eigvals_ops.h' 2025-07-24T03:55:18.2282490Z adding 'torch/include/ATen/ops/linalg_eigvalsh.h' 2025-07-24T03:55:18.2283490Z adding 'torch/include/ATen/ops/linalg_eigvalsh_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2284430Z adding 'torch/include/ATen/ops/linalg_eigvalsh_native.h' 2025-07-24T03:55:18.2285230Z adding 'torch/include/ATen/ops/linalg_eigvalsh_ops.h' 2025-07-24T03:55:18.2286250Z adding 'torch/include/ATen/ops/linalg_householder_product.h' 2025-07-24T03:55:18.2287230Z adding 'torch/include/ATen/ops/linalg_householder_product_cpu_dispatch.h' 2025-07-24T03:55:18.2288040Z adding 'torch/include/ATen/ops/linalg_householder_product_cuda_dispatch.h' 2025-07-24T03:55:18.2288860Z adding 'torch/include/ATen/ops/linalg_householder_product_native.h' 2025-07-24T03:55:18.2289880Z adding 'torch/include/ATen/ops/linalg_householder_product_ops.h' 2025-07-24T03:55:18.2290800Z adding 'torch/include/ATen/ops/linalg_inv.h' 2025-07-24T03:55:18.2291770Z adding 'torch/include/ATen/ops/linalg_inv_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2292580Z adding 'torch/include/ATen/ops/linalg_inv_ex.h' 2025-07-24T03:55:18.2293680Z adding 'torch/include/ATen/ops/linalg_inv_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2294490Z adding 'torch/include/ATen/ops/linalg_inv_ex_cpu_dispatch.h' 2025-07-24T03:55:18.2295310Z adding 'torch/include/ATen/ops/linalg_inv_ex_cuda_dispatch.h' 2025-07-24T03:55:18.2296140Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta.h' 2025-07-24T03:55:18.2297070Z adding 'torch/include/ATen/ops/linalg_inv_ex_meta_dispatch.h' 2025-07-24T03:55:18.2297910Z adding 'torch/include/ATen/ops/linalg_inv_ex_mps_dispatch.h' 2025-07-24T03:55:18.2298740Z adding 'torch/include/ATen/ops/linalg_inv_ex_native.h' 2025-07-24T03:55:18.2299700Z adding 'torch/include/ATen/ops/linalg_inv_ex_ops.h' 2025-07-24T03:55:18.2300610Z adding 'torch/include/ATen/ops/linalg_inv_native.h' 2025-07-24T03:55:18.2301560Z adding 'torch/include/ATen/ops/linalg_inv_ops.h' 2025-07-24T03:55:18.2302470Z adding 'torch/include/ATen/ops/linalg_ldl_factor.h' 2025-07-24T03:55:18.2303460Z adding 'torch/include/ATen/ops/linalg_ldl_factor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2304790Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex.h' 2025-07-24T03:55:18.2305930Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2306700Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cpu_dispatch.h' 2025-07-24T03:55:18.2307540Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_cuda_dispatch.h' 2025-07-24T03:55:18.2308460Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta.h' 2025-07-24T03:55:18.2309350Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_meta_dispatch.h' 2025-07-24T03:55:18.2310170Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_native.h' 2025-07-24T03:55:18.2311170Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ex_ops.h' 2025-07-24T03:55:18.2312110Z adding 'torch/include/ATen/ops/linalg_ldl_factor_native.h' 2025-07-24T03:55:18.2313070Z adding 'torch/include/ATen/ops/linalg_ldl_factor_ops.h' 2025-07-24T03:55:18.2313950Z adding 'torch/include/ATen/ops/linalg_ldl_solve.h' 2025-07-24T03:55:18.2314980Z adding 'torch/include/ATen/ops/linalg_ldl_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2315860Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cpu_dispatch.h' 2025-07-24T03:55:18.2316730Z adding 'torch/include/ATen/ops/linalg_ldl_solve_cuda_dispatch.h' 2025-07-24T03:55:18.2317570Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta.h' 2025-07-24T03:55:18.2318420Z adding 'torch/include/ATen/ops/linalg_ldl_solve_meta_dispatch.h' 2025-07-24T03:55:18.2319330Z adding 'torch/include/ATen/ops/linalg_ldl_solve_native.h' 2025-07-24T03:55:18.2320300Z adding 'torch/include/ATen/ops/linalg_ldl_solve_ops.h' 2025-07-24T03:55:18.2321260Z adding 'torch/include/ATen/ops/linalg_lstsq.h' 2025-07-24T03:55:18.2322270Z adding 'torch/include/ATen/ops/linalg_lstsq_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2323160Z adding 'torch/include/ATen/ops/linalg_lstsq_cpu_dispatch.h' 2025-07-24T03:55:18.2324040Z adding 'torch/include/ATen/ops/linalg_lstsq_cuda_dispatch.h' 2025-07-24T03:55:18.2324910Z adding 'torch/include/ATen/ops/linalg_lstsq_native.h' 2025-07-24T03:55:18.2325890Z adding 'torch/include/ATen/ops/linalg_lstsq_ops.h' 2025-07-24T03:55:18.2326880Z adding 'torch/include/ATen/ops/linalg_lu.h' 2025-07-24T03:55:18.2327910Z adding 'torch/include/ATen/ops/linalg_lu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2328680Z adding 'torch/include/ATen/ops/linalg_lu_cpu_dispatch.h' 2025-07-24T03:55:18.2329500Z adding 'torch/include/ATen/ops/linalg_lu_cuda_dispatch.h' 2025-07-24T03:55:18.2330500Z adding 'torch/include/ATen/ops/linalg_lu_factor.h' 2025-07-24T03:55:18.2331490Z adding 'torch/include/ATen/ops/linalg_lu_factor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2332320Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex.h' 2025-07-24T03:55:18.2333340Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2334210Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cpu_dispatch.h' 2025-07-24T03:55:18.2335100Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_cuda_dispatch.h' 2025-07-24T03:55:18.2335890Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta.h' 2025-07-24T03:55:18.2336760Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_meta_dispatch.h' 2025-07-24T03:55:18.2337700Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_mps_dispatch.h' 2025-07-24T03:55:18.2338540Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_native.h' 2025-07-24T03:55:18.2339530Z adding 'torch/include/ATen/ops/linalg_lu_factor_ex_ops.h' 2025-07-24T03:55:18.2340420Z adding 'torch/include/ATen/ops/linalg_lu_factor_mps_dispatch.h' 2025-07-24T03:55:18.2341360Z adding 'torch/include/ATen/ops/linalg_lu_factor_native.h' 2025-07-24T03:55:18.2342340Z adding 'torch/include/ATen/ops/linalg_lu_factor_ops.h' 2025-07-24T03:55:18.2343180Z adding 'torch/include/ATen/ops/linalg_lu_meta.h' 2025-07-24T03:55:18.2344060Z adding 'torch/include/ATen/ops/linalg_lu_meta_dispatch.h' 2025-07-24T03:55:18.2345000Z adding 'torch/include/ATen/ops/linalg_lu_native.h' 2025-07-24T03:55:18.2345980Z adding 'torch/include/ATen/ops/linalg_lu_ops.h' 2025-07-24T03:55:18.2346910Z adding 'torch/include/ATen/ops/linalg_lu_solve.h' 2025-07-24T03:55:18.2347920Z adding 'torch/include/ATen/ops/linalg_lu_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2348780Z adding 'torch/include/ATen/ops/linalg_lu_solve_cpu_dispatch.h' 2025-07-24T03:55:18.2349630Z adding 'torch/include/ATen/ops/linalg_lu_solve_cuda_dispatch.h' 2025-07-24T03:55:18.2350450Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta.h' 2025-07-24T03:55:18.2351280Z adding 'torch/include/ATen/ops/linalg_lu_solve_meta_dispatch.h' 2025-07-24T03:55:18.2352220Z adding 'torch/include/ATen/ops/linalg_lu_solve_native.h' 2025-07-24T03:55:18.2353170Z adding 'torch/include/ATen/ops/linalg_lu_solve_ops.h' 2025-07-24T03:55:18.2354050Z adding 'torch/include/ATen/ops/linalg_matmul.h' 2025-07-24T03:55:18.2355010Z adding 'torch/include/ATen/ops/linalg_matmul_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2355840Z adding 'torch/include/ATen/ops/linalg_matmul_native.h' 2025-07-24T03:55:18.2356780Z adding 'torch/include/ATen/ops/linalg_matmul_ops.h' 2025-07-24T03:55:18.2357670Z adding 'torch/include/ATen/ops/linalg_matrix_exp.h' 2025-07-24T03:55:18.2358640Z adding 'torch/include/ATen/ops/linalg_matrix_exp_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2359510Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cpu_dispatch.h' 2025-07-24T03:55:18.2360370Z adding 'torch/include/ATen/ops/linalg_matrix_exp_cuda_dispatch.h' 2025-07-24T03:55:18.2361180Z adding 'torch/include/ATen/ops/linalg_matrix_exp_native.h' 2025-07-24T03:55:18.2362090Z adding 'torch/include/ATen/ops/linalg_matrix_exp_ops.h' 2025-07-24T03:55:18.2363240Z adding 'torch/include/ATen/ops/linalg_matrix_norm.h' 2025-07-24T03:55:18.2365340Z adding 'torch/include/ATen/ops/linalg_matrix_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2365920Z adding 'torch/include/ATen/ops/linalg_matrix_norm_native.h' 2025-07-24T03:55:18.2366240Z adding 'torch/include/ATen/ops/linalg_matrix_norm_ops.h' 2025-07-24T03:55:18.2367200Z adding 'torch/include/ATen/ops/linalg_matrix_power.h' 2025-07-24T03:55:18.2368350Z adding 'torch/include/ATen/ops/linalg_matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2369010Z adding 'torch/include/ATen/ops/linalg_matrix_power_native.h' 2025-07-24T03:55:18.2369960Z adding 'torch/include/ATen/ops/linalg_matrix_power_ops.h' 2025-07-24T03:55:18.2371200Z adding 'torch/include/ATen/ops/linalg_matrix_rank.h' 2025-07-24T03:55:18.2372310Z adding 'torch/include/ATen/ops/linalg_matrix_rank_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2373180Z adding 'torch/include/ATen/ops/linalg_matrix_rank_native.h' 2025-07-24T03:55:18.2374410Z adding 'torch/include/ATen/ops/linalg_matrix_rank_ops.h' 2025-07-24T03:55:18.2378350Z adding 'torch/include/ATen/ops/linalg_multi_dot.h' 2025-07-24T03:55:18.2378690Z adding 'torch/include/ATen/ops/linalg_multi_dot_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2379420Z adding 'torch/include/ATen/ops/linalg_multi_dot_native.h' 2025-07-24T03:55:18.2379690Z adding 'torch/include/ATen/ops/linalg_multi_dot_ops.h' 2025-07-24T03:55:18.2379920Z adding 'torch/include/ATen/ops/linalg_norm.h' 2025-07-24T03:55:18.2380490Z adding 'torch/include/ATen/ops/linalg_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2381260Z adding 'torch/include/ATen/ops/linalg_norm_native.h' 2025-07-24T03:55:18.2382180Z adding 'torch/include/ATen/ops/linalg_norm_ops.h' 2025-07-24T03:55:18.2383400Z adding 'torch/include/ATen/ops/linalg_pinv.h' 2025-07-24T03:55:18.2384410Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2385310Z adding 'torch/include/ATen/ops/linalg_pinv_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2386200Z adding 'torch/include/ATen/ops/linalg_pinv_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2387190Z adding 'torch/include/ATen/ops/linalg_pinv_native.h' 2025-07-24T03:55:18.2388480Z adding 'torch/include/ATen/ops/linalg_pinv_ops.h' 2025-07-24T03:55:18.2389470Z adding 'torch/include/ATen/ops/linalg_qr.h' 2025-07-24T03:55:18.2390500Z adding 'torch/include/ATen/ops/linalg_qr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2391410Z adding 'torch/include/ATen/ops/linalg_qr_cpu_dispatch.h' 2025-07-24T03:55:18.2392280Z adding 'torch/include/ATen/ops/linalg_qr_cuda_dispatch.h' 2025-07-24T03:55:18.2393100Z adding 'torch/include/ATen/ops/linalg_qr_meta.h' 2025-07-24T03:55:18.2393990Z adding 'torch/include/ATen/ops/linalg_qr_meta_dispatch.h' 2025-07-24T03:55:18.2394900Z adding 'torch/include/ATen/ops/linalg_qr_native.h' 2025-07-24T03:55:18.2395920Z adding 'torch/include/ATen/ops/linalg_qr_ops.h' 2025-07-24T03:55:18.2396790Z adding 'torch/include/ATen/ops/linalg_slogdet.h' 2025-07-24T03:55:18.2397760Z adding 'torch/include/ATen/ops/linalg_slogdet_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2398600Z adding 'torch/include/ATen/ops/linalg_slogdet_native.h' 2025-07-24T03:55:18.2399550Z adding 'torch/include/ATen/ops/linalg_slogdet_ops.h' 2025-07-24T03:55:18.2400450Z adding 'torch/include/ATen/ops/linalg_solve.h' 2025-07-24T03:55:18.2401410Z adding 'torch/include/ATen/ops/linalg_solve_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2402330Z adding 'torch/include/ATen/ops/linalg_solve_ex.h' 2025-07-24T03:55:18.2403320Z adding 'torch/include/ATen/ops/linalg_solve_ex_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2404100Z adding 'torch/include/ATen/ops/linalg_solve_ex_native.h' 2025-07-24T03:55:18.2405080Z adding 'torch/include/ATen/ops/linalg_solve_ex_ops.h' 2025-07-24T03:55:18.2406010Z adding 'torch/include/ATen/ops/linalg_solve_native.h' 2025-07-24T03:55:18.2406940Z adding 'torch/include/ATen/ops/linalg_solve_ops.h' 2025-07-24T03:55:18.2407900Z adding 'torch/include/ATen/ops/linalg_solve_triangular.h' 2025-07-24T03:55:18.2408810Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cpu_dispatch.h' 2025-07-24T03:55:18.2409780Z adding 'torch/include/ATen/ops/linalg_solve_triangular_cuda_dispatch.h' 2025-07-24T03:55:18.2410610Z adding 'torch/include/ATen/ops/linalg_solve_triangular_mps_dispatch.h' 2025-07-24T03:55:18.2411460Z adding 'torch/include/ATen/ops/linalg_solve_triangular_native.h' 2025-07-24T03:55:18.2412610Z adding 'torch/include/ATen/ops/linalg_solve_triangular_ops.h' 2025-07-24T03:55:18.2413590Z adding 'torch/include/ATen/ops/linalg_svd.h' 2025-07-24T03:55:18.2414590Z adding 'torch/include/ATen/ops/linalg_svd_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2415370Z adding 'torch/include/ATen/ops/linalg_svd_native.h' 2025-07-24T03:55:18.2416350Z adding 'torch/include/ATen/ops/linalg_svd_ops.h' 2025-07-24T03:55:18.2417330Z adding 'torch/include/ATen/ops/linalg_svdvals.h' 2025-07-24T03:55:18.2418310Z adding 'torch/include/ATen/ops/linalg_svdvals_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2419060Z adding 'torch/include/ATen/ops/linalg_svdvals_native.h' 2025-07-24T03:55:18.2420020Z adding 'torch/include/ATen/ops/linalg_svdvals_ops.h' 2025-07-24T03:55:18.2420990Z adding 'torch/include/ATen/ops/linalg_tensorinv.h' 2025-07-24T03:55:18.2421990Z adding 'torch/include/ATen/ops/linalg_tensorinv_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2422750Z adding 'torch/include/ATen/ops/linalg_tensorinv_native.h' 2025-07-24T03:55:18.2423680Z adding 'torch/include/ATen/ops/linalg_tensorinv_ops.h' 2025-07-24T03:55:18.2424670Z adding 'torch/include/ATen/ops/linalg_tensorsolve.h' 2025-07-24T03:55:18.2425660Z adding 'torch/include/ATen/ops/linalg_tensorsolve_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2426420Z adding 'torch/include/ATen/ops/linalg_tensorsolve_native.h' 2025-07-24T03:55:18.2427380Z adding 'torch/include/ATen/ops/linalg_tensorsolve_ops.h' 2025-07-24T03:55:18.2428370Z adding 'torch/include/ATen/ops/linalg_vander.h' 2025-07-24T03:55:18.2429350Z adding 'torch/include/ATen/ops/linalg_vander_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2430100Z adding 'torch/include/ATen/ops/linalg_vander_native.h' 2025-07-24T03:55:18.2431000Z adding 'torch/include/ATen/ops/linalg_vander_ops.h' 2025-07-24T03:55:18.2431960Z adding 'torch/include/ATen/ops/linalg_vecdot.h' 2025-07-24T03:55:18.2432940Z adding 'torch/include/ATen/ops/linalg_vecdot_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2433700Z adding 'torch/include/ATen/ops/linalg_vecdot_native.h' 2025-07-24T03:55:18.2434610Z adding 'torch/include/ATen/ops/linalg_vecdot_ops.h' 2025-07-24T03:55:18.2435670Z adding 'torch/include/ATen/ops/linalg_vector_norm.h' 2025-07-24T03:55:18.2436710Z adding 'torch/include/ATen/ops/linalg_vector_norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2437570Z adding 'torch/include/ATen/ops/linalg_vector_norm_cpu_dispatch.h' 2025-07-24T03:55:18.2438380Z adding 'torch/include/ATen/ops/linalg_vector_norm_cuda_dispatch.h' 2025-07-24T03:55:18.2439320Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta.h' 2025-07-24T03:55:18.2440200Z adding 'torch/include/ATen/ops/linalg_vector_norm_meta_dispatch.h' 2025-07-24T03:55:18.2441040Z adding 'torch/include/ATen/ops/linalg_vector_norm_mps_dispatch.h' 2025-07-24T03:55:18.2441900Z adding 'torch/include/ATen/ops/linalg_vector_norm_native.h' 2025-07-24T03:55:18.2442960Z adding 'torch/include/ATen/ops/linalg_vector_norm_ops.h' 2025-07-24T03:55:18.2443890Z adding 'torch/include/ATen/ops/linear.h' 2025-07-24T03:55:18.2444930Z adding 'torch/include/ATen/ops/linear_backward.h' 2025-07-24T03:55:18.2445910Z adding 'torch/include/ATen/ops/linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2446830Z adding 'torch/include/ATen/ops/linear_backward_mps_dispatch.h' 2025-07-24T03:55:18.2447670Z adding 'torch/include/ATen/ops/linear_backward_native.h' 2025-07-24T03:55:18.2448670Z adding 'torch/include/ATen/ops/linear_backward_ops.h' 2025-07-24T03:55:18.2449620Z adding 'torch/include/ATen/ops/linear_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2450580Z adding 'torch/include/ATen/ops/linear_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2451400Z adding 'torch/include/ATen/ops/linear_mps_dispatch.h' 2025-07-24T03:55:18.2452210Z adding 'torch/include/ATen/ops/linear_native.h' 2025-07-24T03:55:18.2453150Z adding 'torch/include/ATen/ops/linear_ops.h' 2025-07-24T03:55:18.2454530Z adding 'torch/include/ATen/ops/linspace.h' 2025-07-24T03:55:18.2455670Z adding 'torch/include/ATen/ops/linspace_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2456500Z adding 'torch/include/ATen/ops/linspace_cpu_dispatch.h' 2025-07-24T03:55:18.2457350Z adding 'torch/include/ATen/ops/linspace_cuda_dispatch.h' 2025-07-24T03:55:18.2458250Z adding 'torch/include/ATen/ops/linspace_meta_dispatch.h' 2025-07-24T03:55:18.2459050Z adding 'torch/include/ATen/ops/linspace_mps_dispatch.h' 2025-07-24T03:55:18.2459970Z adding 'torch/include/ATen/ops/linspace_native.h' 2025-07-24T03:55:18.2461350Z adding 'torch/include/ATen/ops/linspace_ops.h' 2025-07-24T03:55:18.2462340Z adding 'torch/include/ATen/ops/log.h' 2025-07-24T03:55:18.2463280Z adding 'torch/include/ATen/ops/log10.h' 2025-07-24T03:55:18.2464230Z adding 'torch/include/ATen/ops/log10_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2464990Z adding 'torch/include/ATen/ops/log10_cpu_dispatch.h' 2025-07-24T03:55:18.2465900Z adding 'torch/include/ATen/ops/log10_cuda_dispatch.h' 2025-07-24T03:55:18.2466750Z adding 'torch/include/ATen/ops/log10_meta.h' 2025-07-24T03:55:18.2467560Z adding 'torch/include/ATen/ops/log10_meta_dispatch.h' 2025-07-24T03:55:18.2468360Z adding 'torch/include/ATen/ops/log10_mps_dispatch.h' 2025-07-24T03:55:18.2469270Z adding 'torch/include/ATen/ops/log10_native.h' 2025-07-24T03:55:18.2470250Z adding 'torch/include/ATen/ops/log10_ops.h' 2025-07-24T03:55:18.2471090Z adding 'torch/include/ATen/ops/log1p.h' 2025-07-24T03:55:18.2472080Z adding 'torch/include/ATen/ops/log1p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2472910Z adding 'torch/include/ATen/ops/log1p_cpu_dispatch.h' 2025-07-24T03:55:18.2473730Z adding 'torch/include/ATen/ops/log1p_cuda_dispatch.h' 2025-07-24T03:55:18.2474550Z adding 'torch/include/ATen/ops/log1p_meta.h' 2025-07-24T03:55:18.2475390Z adding 'torch/include/ATen/ops/log1p_meta_dispatch.h' 2025-07-24T03:55:18.2476240Z adding 'torch/include/ATen/ops/log1p_mps_dispatch.h' 2025-07-24T03:55:18.2477100Z adding 'torch/include/ATen/ops/log1p_native.h' 2025-07-24T03:55:18.2478080Z adding 'torch/include/ATen/ops/log1p_ops.h' 2025-07-24T03:55:18.2479230Z adding 'torch/include/ATen/ops/log2.h' 2025-07-24T03:55:18.2480300Z adding 'torch/include/ATen/ops/log2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2481060Z adding 'torch/include/ATen/ops/log2_cpu_dispatch.h' 2025-07-24T03:55:18.2481920Z adding 'torch/include/ATen/ops/log2_cuda_dispatch.h' 2025-07-24T03:55:18.2482730Z adding 'torch/include/ATen/ops/log2_meta.h' 2025-07-24T03:55:18.2483670Z adding 'torch/include/ATen/ops/log2_meta_dispatch.h' 2025-07-24T03:55:18.2484470Z adding 'torch/include/ATen/ops/log2_mps_dispatch.h' 2025-07-24T03:55:18.2485320Z adding 'torch/include/ATen/ops/log2_native.h' 2025-07-24T03:55:18.2486250Z adding 'torch/include/ATen/ops/log2_ops.h' 2025-07-24T03:55:18.2487370Z adding 'torch/include/ATen/ops/log_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2488120Z adding 'torch/include/ATen/ops/log_cpu_dispatch.h' 2025-07-24T03:55:18.2488950Z adding 'torch/include/ATen/ops/log_cuda_dispatch.h' 2025-07-24T03:55:18.2489760Z adding 'torch/include/ATen/ops/log_meta.h' 2025-07-24T03:55:18.2490660Z adding 'torch/include/ATen/ops/log_meta_dispatch.h' 2025-07-24T03:55:18.2491460Z adding 'torch/include/ATen/ops/log_mps_dispatch.h' 2025-07-24T03:55:18.2492290Z adding 'torch/include/ATen/ops/log_native.h' 2025-07-24T03:55:18.2493190Z adding 'torch/include/ATen/ops/log_normal.h' 2025-07-24T03:55:18.2494280Z adding 'torch/include/ATen/ops/log_normal_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2495080Z adding 'torch/include/ATen/ops/log_normal_cpu_dispatch.h' 2025-07-24T03:55:18.2495950Z adding 'torch/include/ATen/ops/log_normal_cuda_dispatch.h' 2025-07-24T03:55:18.2496710Z adding 'torch/include/ATen/ops/log_normal_meta_dispatch.h' 2025-07-24T03:55:18.2497650Z adding 'torch/include/ATen/ops/log_normal_native.h' 2025-07-24T03:55:18.2498680Z adding 'torch/include/ATen/ops/log_normal_ops.h' 2025-07-24T03:55:18.2499630Z adding 'torch/include/ATen/ops/log_ops.h' 2025-07-24T03:55:18.2500530Z adding 'torch/include/ATen/ops/log_sigmoid.h' 2025-07-24T03:55:18.2501530Z adding 'torch/include/ATen/ops/log_sigmoid_backward.h' 2025-07-24T03:55:18.2502470Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cpu_dispatch.h' 2025-07-24T03:55:18.2503320Z adding 'torch/include/ATen/ops/log_sigmoid_backward_cuda_dispatch.h' 2025-07-24T03:55:18.2504130Z adding 'torch/include/ATen/ops/log_sigmoid_backward_mps_dispatch.h' 2025-07-24T03:55:18.2505130Z adding 'torch/include/ATen/ops/log_sigmoid_backward_native.h' 2025-07-24T03:55:18.2506090Z adding 'torch/include/ATen/ops/log_sigmoid_backward_ops.h' 2025-07-24T03:55:18.2507030Z adding 'torch/include/ATen/ops/log_sigmoid_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2507860Z adding 'torch/include/ATen/ops/log_sigmoid_forward.h' 2025-07-24T03:55:18.2508860Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cpu_dispatch.h' 2025-07-24T03:55:18.2509690Z adding 'torch/include/ATen/ops/log_sigmoid_forward_cuda_dispatch.h' 2025-07-24T03:55:18.2510520Z adding 'torch/include/ATen/ops/log_sigmoid_forward_mps_dispatch.h' 2025-07-24T03:55:18.2511370Z adding 'torch/include/ATen/ops/log_sigmoid_forward_native.h' 2025-07-24T03:55:18.2512420Z adding 'torch/include/ATen/ops/log_sigmoid_forward_ops.h' 2025-07-24T03:55:18.2513260Z adding 'torch/include/ATen/ops/log_sigmoid_native.h' 2025-07-24T03:55:18.2514180Z adding 'torch/include/ATen/ops/log_sigmoid_ops.h' 2025-07-24T03:55:18.2515090Z adding 'torch/include/ATen/ops/log_softmax.h' 2025-07-24T03:55:18.2516200Z adding 'torch/include/ATen/ops/log_softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2517080Z adding 'torch/include/ATen/ops/log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2518190Z adding 'torch/include/ATen/ops/log_softmax_native.h' 2025-07-24T03:55:18.2519190Z adding 'torch/include/ATen/ops/log_softmax_ops.h' 2025-07-24T03:55:18.2520200Z adding 'torch/include/ATen/ops/logaddexp.h' 2025-07-24T03:55:18.2521140Z adding 'torch/include/ATen/ops/logaddexp2.h' 2025-07-24T03:55:18.2522140Z adding 'torch/include/ATen/ops/logaddexp2_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2522900Z adding 'torch/include/ATen/ops/logaddexp2_cpu_dispatch.h' 2025-07-24T03:55:18.2523820Z adding 'torch/include/ATen/ops/logaddexp2_cuda_dispatch.h' 2025-07-24T03:55:18.2524630Z adding 'torch/include/ATen/ops/logaddexp2_meta.h' 2025-07-24T03:55:18.2525540Z adding 'torch/include/ATen/ops/logaddexp2_meta_dispatch.h' 2025-07-24T03:55:18.2526300Z adding 'torch/include/ATen/ops/logaddexp2_mps_dispatch.h' 2025-07-24T03:55:18.2527250Z adding 'torch/include/ATen/ops/logaddexp2_native.h' 2025-07-24T03:55:18.2528190Z adding 'torch/include/ATen/ops/logaddexp2_ops.h' 2025-07-24T03:55:18.2529180Z adding 'torch/include/ATen/ops/logaddexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2529930Z adding 'torch/include/ATen/ops/logaddexp_cpu_dispatch.h' 2025-07-24T03:55:18.2530840Z adding 'torch/include/ATen/ops/logaddexp_cuda_dispatch.h' 2025-07-24T03:55:18.2531660Z adding 'torch/include/ATen/ops/logaddexp_meta.h' 2025-07-24T03:55:18.2532490Z adding 'torch/include/ATen/ops/logaddexp_meta_dispatch.h' 2025-07-24T03:55:18.2533300Z adding 'torch/include/ATen/ops/logaddexp_mps_dispatch.h' 2025-07-24T03:55:18.2534210Z adding 'torch/include/ATen/ops/logaddexp_native.h' 2025-07-24T03:55:18.2535160Z adding 'torch/include/ATen/ops/logaddexp_ops.h' 2025-07-24T03:55:18.2536110Z adding 'torch/include/ATen/ops/logcumsumexp.h' 2025-07-24T03:55:18.2537070Z adding 'torch/include/ATen/ops/logcumsumexp_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2538020Z adding 'torch/include/ATen/ops/logcumsumexp_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2538820Z adding 'torch/include/ATen/ops/logcumsumexp_native.h' 2025-07-24T03:55:18.2539810Z adding 'torch/include/ATen/ops/logcumsumexp_ops.h' 2025-07-24T03:55:18.2540650Z adding 'torch/include/ATen/ops/logdet.h' 2025-07-24T03:55:18.2541700Z adding 'torch/include/ATen/ops/logdet_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2542450Z adding 'torch/include/ATen/ops/logdet_native.h' 2025-07-24T03:55:18.2543340Z adding 'torch/include/ATen/ops/logdet_ops.h' 2025-07-24T03:55:18.2544240Z adding 'torch/include/ATen/ops/logical_and.h' 2025-07-24T03:55:18.2545280Z adding 'torch/include/ATen/ops/logical_and_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2546100Z adding 'torch/include/ATen/ops/logical_and_cpu_dispatch.h' 2025-07-24T03:55:18.2546920Z adding 'torch/include/ATen/ops/logical_and_cuda_dispatch.h' 2025-07-24T03:55:18.2547720Z adding 'torch/include/ATen/ops/logical_and_mps_dispatch.h' 2025-07-24T03:55:18.2548640Z adding 'torch/include/ATen/ops/logical_and_native.h' 2025-07-24T03:55:18.2549630Z adding 'torch/include/ATen/ops/logical_and_ops.h' 2025-07-24T03:55:18.2550480Z adding 'torch/include/ATen/ops/logical_not.h' 2025-07-24T03:55:18.2551420Z adding 'torch/include/ATen/ops/logical_not_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2552300Z adding 'torch/include/ATen/ops/logical_not_cpu_dispatch.h' 2025-07-24T03:55:18.2553150Z adding 'torch/include/ATen/ops/logical_not_cuda_dispatch.h' 2025-07-24T03:55:18.2553940Z adding 'torch/include/ATen/ops/logical_not_mps_dispatch.h' 2025-07-24T03:55:18.2554760Z adding 'torch/include/ATen/ops/logical_not_native.h' 2025-07-24T03:55:18.2555850Z adding 'torch/include/ATen/ops/logical_not_ops.h' 2025-07-24T03:55:18.2556710Z adding 'torch/include/ATen/ops/logical_or.h' 2025-07-24T03:55:18.2557650Z adding 'torch/include/ATen/ops/logical_or_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2558430Z adding 'torch/include/ATen/ops/logical_or_cpu_dispatch.h' 2025-07-24T03:55:18.2559320Z adding 'torch/include/ATen/ops/logical_or_cuda_dispatch.h' 2025-07-24T03:55:18.2560130Z adding 'torch/include/ATen/ops/logical_or_mps_dispatch.h' 2025-07-24T03:55:18.2560940Z adding 'torch/include/ATen/ops/logical_or_native.h' 2025-07-24T03:55:18.2561920Z adding 'torch/include/ATen/ops/logical_or_ops.h' 2025-07-24T03:55:18.2562890Z adding 'torch/include/ATen/ops/logical_xor.h' 2025-07-24T03:55:18.2563880Z adding 'torch/include/ATen/ops/logical_xor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2564680Z adding 'torch/include/ATen/ops/logical_xor_cpu_dispatch.h' 2025-07-24T03:55:18.2565480Z adding 'torch/include/ATen/ops/logical_xor_cuda_dispatch.h' 2025-07-24T03:55:18.2566370Z adding 'torch/include/ATen/ops/logical_xor_mps_dispatch.h' 2025-07-24T03:55:18.2567270Z adding 'torch/include/ATen/ops/logical_xor_native.h' 2025-07-24T03:55:18.2568170Z adding 'torch/include/ATen/ops/logical_xor_ops.h' 2025-07-24T03:55:18.2569060Z adding 'torch/include/ATen/ops/logit.h' 2025-07-24T03:55:18.2570090Z adding 'torch/include/ATen/ops/logit_backward.h' 2025-07-24T03:55:18.2571150Z adding 'torch/include/ATen/ops/logit_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2572020Z adding 'torch/include/ATen/ops/logit_backward_cpu_dispatch.h' 2025-07-24T03:55:18.2572810Z adding 'torch/include/ATen/ops/logit_backward_cuda_dispatch.h' 2025-07-24T03:55:18.2573780Z adding 'torch/include/ATen/ops/logit_backward_meta.h' 2025-07-24T03:55:18.2574690Z adding 'torch/include/ATen/ops/logit_backward_meta_dispatch.h' 2025-07-24T03:55:18.2575530Z adding 'torch/include/ATen/ops/logit_backward_mps_dispatch.h' 2025-07-24T03:55:18.2576370Z adding 'torch/include/ATen/ops/logit_backward_native.h' 2025-07-24T03:55:18.2577450Z adding 'torch/include/ATen/ops/logit_backward_ops.h' 2025-07-24T03:55:18.2578320Z adding 'torch/include/ATen/ops/logit_cpu_dispatch.h' 2025-07-24T03:55:18.2579170Z adding 'torch/include/ATen/ops/logit_cuda_dispatch.h' 2025-07-24T03:55:18.2580080Z adding 'torch/include/ATen/ops/logit_meta_dispatch.h' 2025-07-24T03:55:18.2581060Z adding 'torch/include/ATen/ops/logit_mps_dispatch.h' 2025-07-24T03:55:18.2581890Z adding 'torch/include/ATen/ops/logit_native.h' 2025-07-24T03:55:18.2582910Z adding 'torch/include/ATen/ops/logit_ops.h' 2025-07-24T03:55:18.2584230Z adding 'torch/include/ATen/ops/logspace.h' 2025-07-24T03:55:18.2585480Z adding 'torch/include/ATen/ops/logspace_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2586300Z adding 'torch/include/ATen/ops/logspace_cpu_dispatch.h' 2025-07-24T03:55:18.2587130Z adding 'torch/include/ATen/ops/logspace_cuda_dispatch.h' 2025-07-24T03:55:18.2587960Z adding 'torch/include/ATen/ops/logspace_meta_dispatch.h' 2025-07-24T03:55:18.2588980Z adding 'torch/include/ATen/ops/logspace_native.h' 2025-07-24T03:55:18.2590360Z adding 'torch/include/ATen/ops/logspace_ops.h' 2025-07-24T03:55:18.2591350Z adding 'torch/include/ATen/ops/logsumexp.h' 2025-07-24T03:55:18.2592300Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2593340Z adding 'torch/include/ATen/ops/logsumexp_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2594200Z adding 'torch/include/ATen/ops/logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2594980Z adding 'torch/include/ATen/ops/logsumexp_native.h' 2025-07-24T03:55:18.2596020Z adding 'torch/include/ATen/ops/logsumexp_ops.h' 2025-07-24T03:55:18.2597050Z adding 'torch/include/ATen/ops/lshift.h' 2025-07-24T03:55:18.2598050Z adding 'torch/include/ATen/ops/lshift_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2598850Z adding 'torch/include/ATen/ops/lshift_cpu_dispatch.h' 2025-07-24T03:55:18.2599730Z adding 'torch/include/ATen/ops/lshift_cuda_dispatch.h' 2025-07-24T03:55:18.2600620Z adding 'torch/include/ATen/ops/lshift_meta_dispatch.h' 2025-07-24T03:55:18.2601450Z adding 'torch/include/ATen/ops/lshift_mps_dispatch.h' 2025-07-24T03:55:18.2602290Z adding 'torch/include/ATen/ops/lshift_native.h' 2025-07-24T03:55:18.2603400Z adding 'torch/include/ATen/ops/lshift_ops.h' 2025-07-24T03:55:18.2604470Z adding 'torch/include/ATen/ops/lstm.h' 2025-07-24T03:55:18.2605380Z adding 'torch/include/ATen/ops/lstm_cell.h' 2025-07-24T03:55:18.2606360Z adding 'torch/include/ATen/ops/lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2607140Z adding 'torch/include/ATen/ops/lstm_cell_native.h' 2025-07-24T03:55:18.2608180Z adding 'torch/include/ATen/ops/lstm_cell_ops.h' 2025-07-24T03:55:18.2609140Z adding 'torch/include/ATen/ops/lstm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2610140Z adding 'torch/include/ATen/ops/lstm_mps_backward.h' 2025-07-24T03:55:18.2611210Z adding 'torch/include/ATen/ops/lstm_mps_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2612170Z adding 'torch/include/ATen/ops/lstm_mps_backward_mps_dispatch.h' 2025-07-24T03:55:18.2613070Z adding 'torch/include/ATen/ops/lstm_mps_backward_native.h' 2025-07-24T03:55:18.2614210Z adding 'torch/include/ATen/ops/lstm_mps_backward_ops.h' 2025-07-24T03:55:18.2615060Z adding 'torch/include/ATen/ops/lstm_native.h' 2025-07-24T03:55:18.2616170Z adding 'torch/include/ATen/ops/lstm_ops.h' 2025-07-24T03:55:18.2617140Z adding 'torch/include/ATen/ops/lt.h' 2025-07-24T03:55:18.2618150Z adding 'torch/include/ATen/ops/lt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2618940Z adding 'torch/include/ATen/ops/lt_cpu_dispatch.h' 2025-07-24T03:55:18.2619880Z adding 'torch/include/ATen/ops/lt_cuda_dispatch.h' 2025-07-24T03:55:18.2620740Z adding 'torch/include/ATen/ops/lt_meta.h' 2025-07-24T03:55:18.2621630Z adding 'torch/include/ATen/ops/lt_meta_dispatch.h' 2025-07-24T03:55:18.2622500Z adding 'torch/include/ATen/ops/lt_mps_dispatch.h' 2025-07-24T03:55:18.2623500Z adding 'torch/include/ATen/ops/lt_native.h' 2025-07-24T03:55:18.2624660Z adding 'torch/include/ATen/ops/lt_ops.h' 2025-07-24T03:55:18.2625540Z adding 'torch/include/ATen/ops/lu_solve.h' 2025-07-24T03:55:18.2626500Z adding 'torch/include/ATen/ops/lu_solve_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2627390Z adding 'torch/include/ATen/ops/lu_solve_native.h' 2025-07-24T03:55:18.2628370Z adding 'torch/include/ATen/ops/lu_solve_ops.h' 2025-07-24T03:55:18.2629310Z adding 'torch/include/ATen/ops/lu_unpack.h' 2025-07-24T03:55:18.2630350Z adding 'torch/include/ATen/ops/lu_unpack_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2631290Z adding 'torch/include/ATen/ops/lu_unpack_cpu_dispatch.h' 2025-07-24T03:55:18.2632160Z adding 'torch/include/ATen/ops/lu_unpack_cuda_dispatch.h' 2025-07-24T03:55:18.2633020Z adding 'torch/include/ATen/ops/lu_unpack_meta.h' 2025-07-24T03:55:18.2633870Z adding 'torch/include/ATen/ops/lu_unpack_meta_dispatch.h' 2025-07-24T03:55:18.2634790Z adding 'torch/include/ATen/ops/lu_unpack_mps_dispatch.h' 2025-07-24T03:55:18.2635650Z adding 'torch/include/ATen/ops/lu_unpack_native.h' 2025-07-24T03:55:18.2636710Z adding 'torch/include/ATen/ops/lu_unpack_ops.h' 2025-07-24T03:55:18.2637490Z adding 'torch/include/ATen/ops/mH.h' 2025-07-24T03:55:18.2638560Z adding 'torch/include/ATen/ops/mH_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2639360Z adding 'torch/include/ATen/ops/mH_native.h' 2025-07-24T03:55:18.2640230Z adding 'torch/include/ATen/ops/mH_ops.h' 2025-07-24T03:55:18.2641030Z adding 'torch/include/ATen/ops/mT.h' 2025-07-24T03:55:18.2642070Z adding 'torch/include/ATen/ops/mT_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2642860Z adding 'torch/include/ATen/ops/mT_native.h' 2025-07-24T03:55:18.2647000Z adding 'torch/include/ATen/ops/mT_ops.h' 2025-07-24T03:55:18.2647240Z adding 'torch/include/ATen/ops/margin_ranking_loss.h' 2025-07-24T03:55:18.2647590Z adding 'torch/include/ATen/ops/margin_ranking_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2647970Z adding 'torch/include/ATen/ops/margin_ranking_loss_native.h' 2025-07-24T03:55:18.2648260Z adding 'torch/include/ATen/ops/margin_ranking_loss_ops.h' 2025-07-24T03:55:18.2648500Z adding 'torch/include/ATen/ops/masked_fill.h' 2025-07-24T03:55:18.2649490Z adding 'torch/include/ATen/ops/masked_fill_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2650320Z adding 'torch/include/ATen/ops/masked_fill_cpu_dispatch.h' 2025-07-24T03:55:18.2651150Z adding 'torch/include/ATen/ops/masked_fill_cuda_dispatch.h' 2025-07-24T03:55:18.2651980Z adding 'torch/include/ATen/ops/masked_fill_meta_dispatch.h' 2025-07-24T03:55:18.2652920Z adding 'torch/include/ATen/ops/masked_fill_mps_dispatch.h' 2025-07-24T03:55:18.2653920Z adding 'torch/include/ATen/ops/masked_fill_native.h' 2025-07-24T03:55:18.2655130Z adding 'torch/include/ATen/ops/masked_fill_ops.h' 2025-07-24T03:55:18.2656050Z adding 'torch/include/ATen/ops/masked_scatter.h' 2025-07-24T03:55:18.2657160Z adding 'torch/include/ATen/ops/masked_scatter_backward.h' 2025-07-24T03:55:18.2658280Z adding 'torch/include/ATen/ops/masked_scatter_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2659090Z adding 'torch/include/ATen/ops/masked_scatter_backward_native.h' 2025-07-24T03:55:18.2660040Z adding 'torch/include/ATen/ops/masked_scatter_backward_ops.h' 2025-07-24T03:55:18.2661100Z adding 'torch/include/ATen/ops/masked_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2661910Z adding 'torch/include/ATen/ops/masked_scatter_cpu_dispatch.h' 2025-07-24T03:55:18.2662740Z adding 'torch/include/ATen/ops/masked_scatter_cuda_dispatch.h' 2025-07-24T03:55:18.2663530Z adding 'torch/include/ATen/ops/masked_scatter_meta_dispatch.h' 2025-07-24T03:55:18.2664470Z adding 'torch/include/ATen/ops/masked_scatter_mps_dispatch.h' 2025-07-24T03:55:18.2665340Z adding 'torch/include/ATen/ops/masked_scatter_native.h' 2025-07-24T03:55:18.2666320Z adding 'torch/include/ATen/ops/masked_scatter_ops.h' 2025-07-24T03:55:18.2667240Z adding 'torch/include/ATen/ops/masked_select.h' 2025-07-24T03:55:18.2668260Z adding 'torch/include/ATen/ops/masked_select_backward.h' 2025-07-24T03:55:18.2669260Z adding 'torch/include/ATen/ops/masked_select_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2670020Z adding 'torch/include/ATen/ops/masked_select_backward_native.h' 2025-07-24T03:55:18.2670940Z adding 'torch/include/ATen/ops/masked_select_backward_ops.h' 2025-07-24T03:55:18.2671870Z adding 'torch/include/ATen/ops/masked_select_cpu_dispatch.h' 2025-07-24T03:55:18.2672720Z adding 'torch/include/ATen/ops/masked_select_cuda_dispatch.h' 2025-07-24T03:55:18.2673560Z adding 'torch/include/ATen/ops/masked_select_mps_dispatch.h' 2025-07-24T03:55:18.2674430Z adding 'torch/include/ATen/ops/masked_select_native.h' 2025-07-24T03:55:18.2675490Z adding 'torch/include/ATen/ops/masked_select_ops.h' 2025-07-24T03:55:18.2676380Z adding 'torch/include/ATen/ops/matmul.h' 2025-07-24T03:55:18.2677310Z adding 'torch/include/ATen/ops/matmul_backward.h' 2025-07-24T03:55:18.2678330Z adding 'torch/include/ATen/ops/matmul_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2679200Z adding 'torch/include/ATen/ops/matmul_backward_native.h' 2025-07-24T03:55:18.2680230Z adding 'torch/include/ATen/ops/matmul_backward_ops.h' 2025-07-24T03:55:18.2681210Z adding 'torch/include/ATen/ops/matmul_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2681980Z adding 'torch/include/ATen/ops/matmul_native.h' 2025-07-24T03:55:18.2683010Z adding 'torch/include/ATen/ops/matmul_ops.h' 2025-07-24T03:55:18.2683860Z adding 'torch/include/ATen/ops/matrix_H.h' 2025-07-24T03:55:18.2684820Z adding 'torch/include/ATen/ops/matrix_H_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2685580Z adding 'torch/include/ATen/ops/matrix_H_native.h' 2025-07-24T03:55:18.2686630Z adding 'torch/include/ATen/ops/matrix_H_ops.h' 2025-07-24T03:55:18.2687530Z adding 'torch/include/ATen/ops/matrix_exp.h' 2025-07-24T03:55:18.2688410Z adding 'torch/include/ATen/ops/matrix_exp_backward.h' 2025-07-24T03:55:18.2689410Z adding 'torch/include/ATen/ops/matrix_exp_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2690270Z adding 'torch/include/ATen/ops/matrix_exp_backward_native.h' 2025-07-24T03:55:18.2691170Z adding 'torch/include/ATen/ops/matrix_exp_backward_ops.h' 2025-07-24T03:55:18.2692110Z adding 'torch/include/ATen/ops/matrix_exp_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2692850Z adding 'torch/include/ATen/ops/matrix_exp_native.h' 2025-07-24T03:55:18.2693820Z adding 'torch/include/ATen/ops/matrix_exp_ops.h' 2025-07-24T03:55:18.2694730Z adding 'torch/include/ATen/ops/matrix_power.h' 2025-07-24T03:55:18.2695720Z adding 'torch/include/ATen/ops/matrix_power_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2696480Z adding 'torch/include/ATen/ops/matrix_power_native.h' 2025-07-24T03:55:18.2697490Z adding 'torch/include/ATen/ops/matrix_power_ops.h' 2025-07-24T03:55:18.2698580Z adding 'torch/include/ATen/ops/max.h' 2025-07-24T03:55:18.2699640Z adding 'torch/include/ATen/ops/max_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2700600Z adding 'torch/include/ATen/ops/max_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2701490Z adding 'torch/include/ATen/ops/max_cpu_dispatch.h' 2025-07-24T03:55:18.2702410Z adding 'torch/include/ATen/ops/max_cuda_dispatch.h' 2025-07-24T03:55:18.2703310Z adding 'torch/include/ATen/ops/max_meta.h' 2025-07-24T03:55:18.2704220Z adding 'torch/include/ATen/ops/max_meta_dispatch.h' 2025-07-24T03:55:18.2705230Z adding 'torch/include/ATen/ops/max_mps_dispatch.h' 2025-07-24T03:55:18.2706190Z adding 'torch/include/ATen/ops/max_native.h' 2025-07-24T03:55:18.2707420Z adding 'torch/include/ATen/ops/max_ops.h' 2025-07-24T03:55:18.2708350Z adding 'torch/include/ATen/ops/max_pool1d.h' 2025-07-24T03:55:18.2709480Z adding 'torch/include/ATen/ops/max_pool1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2710270Z adding 'torch/include/ATen/ops/max_pool1d_native.h' 2025-07-24T03:55:18.2711200Z adding 'torch/include/ATen/ops/max_pool1d_ops.h' 2025-07-24T03:55:18.2712120Z adding 'torch/include/ATen/ops/max_pool1d_with_indices.h' 2025-07-24T03:55:18.2713230Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2714020Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_native.h' 2025-07-24T03:55:18.2714980Z adding 'torch/include/ATen/ops/max_pool1d_with_indices_ops.h' 2025-07-24T03:55:18.2715810Z adding 'torch/include/ATen/ops/max_pool2d.h' 2025-07-24T03:55:18.2716970Z adding 'torch/include/ATen/ops/max_pool2d_backward.h' 2025-07-24T03:55:18.2718010Z adding 'torch/include/ATen/ops/max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2718850Z adding 'torch/include/ATen/ops/max_pool2d_backward_mps_dispatch.h' 2025-07-24T03:55:18.2719690Z adding 'torch/include/ATen/ops/max_pool2d_backward_native.h' 2025-07-24T03:55:18.2720800Z adding 'torch/include/ATen/ops/max_pool2d_backward_ops.h' 2025-07-24T03:55:18.2721770Z adding 'torch/include/ATen/ops/max_pool2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2722610Z adding 'torch/include/ATen/ops/max_pool2d_mps_dispatch.h' 2025-07-24T03:55:18.2723500Z adding 'torch/include/ATen/ops/max_pool2d_native.h' 2025-07-24T03:55:18.2724520Z adding 'torch/include/ATen/ops/max_pool2d_ops.h' 2025-07-24T03:55:18.2725540Z adding 'torch/include/ATen/ops/max_pool2d_with_indices.h' 2025-07-24T03:55:18.2726540Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward.h' 2025-07-24T03:55:18.2727610Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2728540Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cpu_dispatch.h' 2025-07-24T03:55:18.2729410Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_cuda_dispatch.h' 2025-07-24T03:55:18.2730290Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta.h' 2025-07-24T03:55:18.2731130Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_meta_dispatch.h' 2025-07-24T03:55:18.2732490Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_mps_dispatch.h' 2025-07-24T03:55:18.2733420Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_native.h' 2025-07-24T03:55:18.2734440Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_backward_ops.h' 2025-07-24T03:55:18.2735450Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2736360Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cpu_dispatch.h' 2025-07-24T03:55:18.2737240Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_cuda_dispatch.h' 2025-07-24T03:55:18.2738100Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta.h' 2025-07-24T03:55:18.2738990Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_meta_dispatch.h' 2025-07-24T03:55:18.2739960Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_mps_dispatch.h' 2025-07-24T03:55:18.2740850Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_native.h' 2025-07-24T03:55:18.2741920Z adding 'torch/include/ATen/ops/max_pool2d_with_indices_ops.h' 2025-07-24T03:55:18.2742760Z adding 'torch/include/ATen/ops/max_pool3d.h' 2025-07-24T03:55:18.2743860Z adding 'torch/include/ATen/ops/max_pool3d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2744620Z adding 'torch/include/ATen/ops/max_pool3d_native.h' 2025-07-24T03:55:18.2745530Z adding 'torch/include/ATen/ops/max_pool3d_ops.h' 2025-07-24T03:55:18.2746540Z adding 'torch/include/ATen/ops/max_pool3d_with_indices.h' 2025-07-24T03:55:18.2747630Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward.h' 2025-07-24T03:55:18.2748560Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cpu_dispatch.h' 2025-07-24T03:55:18.2749440Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_cuda_dispatch.h' 2025-07-24T03:55:18.2750300Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_mps_dispatch.h' 2025-07-24T03:55:18.2751310Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_native.h' 2025-07-24T03:55:18.2752380Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_backward_ops.h' 2025-07-24T03:55:18.2753280Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cpu_dispatch.h' 2025-07-24T03:55:18.2754140Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_cuda_dispatch.h' 2025-07-24T03:55:18.2755130Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_mps_dispatch.h' 2025-07-24T03:55:18.2756010Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_native.h' 2025-07-24T03:55:18.2757050Z adding 'torch/include/ATen/ops/max_pool3d_with_indices_ops.h' 2025-07-24T03:55:18.2758090Z adding 'torch/include/ATen/ops/max_unpool2d.h' 2025-07-24T03:55:18.2759150Z adding 'torch/include/ATen/ops/max_unpool2d_cpu_dispatch.h' 2025-07-24T03:55:18.2760060Z adding 'torch/include/ATen/ops/max_unpool2d_cuda_dispatch.h' 2025-07-24T03:55:18.2761040Z adding 'torch/include/ATen/ops/max_unpool2d_native.h' 2025-07-24T03:55:18.2761990Z adding 'torch/include/ATen/ops/max_unpool2d_ops.h' 2025-07-24T03:55:18.2763210Z adding 'torch/include/ATen/ops/max_unpool3d.h' 2025-07-24T03:55:18.2764180Z adding 'torch/include/ATen/ops/max_unpool3d_cpu_dispatch.h' 2025-07-24T03:55:18.2765050Z adding 'torch/include/ATen/ops/max_unpool3d_cuda_dispatch.h' 2025-07-24T03:55:18.2765920Z adding 'torch/include/ATen/ops/max_unpool3d_native.h' 2025-07-24T03:55:18.2767010Z adding 'torch/include/ATen/ops/max_unpool3d_ops.h' 2025-07-24T03:55:18.2767890Z adding 'torch/include/ATen/ops/maximum.h' 2025-07-24T03:55:18.2768900Z adding 'torch/include/ATen/ops/maximum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2769660Z adding 'torch/include/ATen/ops/maximum_cpu_dispatch.h' 2025-07-24T03:55:18.2770580Z adding 'torch/include/ATen/ops/maximum_cuda_dispatch.h' 2025-07-24T03:55:18.2771440Z adding 'torch/include/ATen/ops/maximum_meta.h' 2025-07-24T03:55:18.2772260Z adding 'torch/include/ATen/ops/maximum_meta_dispatch.h' 2025-07-24T03:55:18.2773060Z adding 'torch/include/ATen/ops/maximum_mps_dispatch.h' 2025-07-24T03:55:18.2774000Z adding 'torch/include/ATen/ops/maximum_native.h' 2025-07-24T03:55:18.2774960Z adding 'torch/include/ATen/ops/maximum_ops.h' 2025-07-24T03:55:18.2776030Z adding 'torch/include/ATen/ops/mean.h' 2025-07-24T03:55:18.2777030Z adding 'torch/include/ATen/ops/mean_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2778090Z adding 'torch/include/ATen/ops/mean_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2778940Z adding 'torch/include/ATen/ops/mean_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2779780Z adding 'torch/include/ATen/ops/mean_cpu_dispatch.h' 2025-07-24T03:55:18.2780630Z adding 'torch/include/ATen/ops/mean_cuda_dispatch.h' 2025-07-24T03:55:18.2781590Z adding 'torch/include/ATen/ops/mean_meta.h' 2025-07-24T03:55:18.2782500Z adding 'torch/include/ATen/ops/mean_meta_dispatch.h' 2025-07-24T03:55:18.2783310Z adding 'torch/include/ATen/ops/mean_mps_dispatch.h' 2025-07-24T03:55:18.2784260Z adding 'torch/include/ATen/ops/mean_native.h' 2025-07-24T03:55:18.2785560Z adding 'torch/include/ATen/ops/mean_ops.h' 2025-07-24T03:55:18.2786630Z adding 'torch/include/ATen/ops/median.h' 2025-07-24T03:55:18.2787600Z adding 'torch/include/ATen/ops/median_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2788480Z adding 'torch/include/ATen/ops/median_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2789430Z adding 'torch/include/ATen/ops/median_cpu_dispatch.h' 2025-07-24T03:55:18.2790280Z adding 'torch/include/ATen/ops/median_cuda_dispatch.h' 2025-07-24T03:55:18.2791110Z adding 'torch/include/ATen/ops/median_mps_dispatch.h' 2025-07-24T03:55:18.2792000Z adding 'torch/include/ATen/ops/median_native.h' 2025-07-24T03:55:18.2793260Z adding 'torch/include/ATen/ops/median_ops.h' 2025-07-24T03:55:18.2794160Z adding 'torch/include/ATen/ops/meshgrid.h' 2025-07-24T03:55:18.2795150Z adding 'torch/include/ATen/ops/meshgrid_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2795900Z adding 'torch/include/ATen/ops/meshgrid_native.h' 2025-07-24T03:55:18.2796950Z adding 'torch/include/ATen/ops/meshgrid_ops.h' 2025-07-24T03:55:18.2798030Z adding 'torch/include/ATen/ops/min.h' 2025-07-24T03:55:18.2799060Z adding 'torch/include/ATen/ops/min_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2799950Z adding 'torch/include/ATen/ops/min_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2800930Z adding 'torch/include/ATen/ops/min_cpu_dispatch.h' 2025-07-24T03:55:18.2801800Z adding 'torch/include/ATen/ops/min_cuda_dispatch.h' 2025-07-24T03:55:18.2802710Z adding 'torch/include/ATen/ops/min_meta.h' 2025-07-24T03:55:18.2803610Z adding 'torch/include/ATen/ops/min_meta_dispatch.h' 2025-07-24T03:55:18.2804580Z adding 'torch/include/ATen/ops/min_mps_dispatch.h' 2025-07-24T03:55:18.2805550Z adding 'torch/include/ATen/ops/min_native.h' 2025-07-24T03:55:18.2806760Z adding 'torch/include/ATen/ops/min_ops.h' 2025-07-24T03:55:18.2807660Z adding 'torch/include/ATen/ops/minimum.h' 2025-07-24T03:55:18.2808780Z adding 'torch/include/ATen/ops/minimum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2809550Z adding 'torch/include/ATen/ops/minimum_cpu_dispatch.h' 2025-07-24T03:55:18.2810410Z adding 'torch/include/ATen/ops/minimum_cuda_dispatch.h' 2025-07-24T03:55:18.2811230Z adding 'torch/include/ATen/ops/minimum_meta.h' 2025-07-24T03:55:18.2812210Z adding 'torch/include/ATen/ops/minimum_meta_dispatch.h' 2025-07-24T03:55:18.2813020Z adding 'torch/include/ATen/ops/minimum_mps_dispatch.h' 2025-07-24T03:55:18.2813860Z adding 'torch/include/ATen/ops/minimum_native.h' 2025-07-24T03:55:18.2814810Z adding 'torch/include/ATen/ops/minimum_ops.h' 2025-07-24T03:55:18.2815960Z adding 'torch/include/ATen/ops/miopen_batch_norm.h' 2025-07-24T03:55:18.2817030Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward.h' 2025-07-24T03:55:18.2818080Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2818970Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_cuda_dispatch.h' 2025-07-24T03:55:18.2819930Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_native.h' 2025-07-24T03:55:18.2821020Z adding 'torch/include/ATen/ops/miopen_batch_norm_backward_ops.h' 2025-07-24T03:55:18.2822070Z adding 'torch/include/ATen/ops/miopen_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2822890Z adding 'torch/include/ATen/ops/miopen_batch_norm_cuda_dispatch.h' 2025-07-24T03:55:18.2823850Z adding 'torch/include/ATen/ops/miopen_batch_norm_native.h' 2025-07-24T03:55:18.2824920Z adding 'torch/include/ATen/ops/miopen_batch_norm_ops.h' 2025-07-24T03:55:18.2826160Z adding 'torch/include/ATen/ops/miopen_convolution.h' 2025-07-24T03:55:18.2827230Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu.h' 2025-07-24T03:55:18.2828280Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_cuda_dispatch.h' 2025-07-24T03:55:18.2829150Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_native.h' 2025-07-24T03:55:18.2830130Z adding 'torch/include/ATen/ops/miopen_convolution_add_relu_ops.h' 2025-07-24T03:55:18.2831220Z adding 'torch/include/ATen/ops/miopen_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2832170Z adding 'torch/include/ATen/ops/miopen_convolution_cuda_dispatch.h' 2025-07-24T03:55:18.2833050Z adding 'torch/include/ATen/ops/miopen_convolution_native.h' 2025-07-24T03:55:18.2834110Z adding 'torch/include/ATen/ops/miopen_convolution_ops.h' 2025-07-24T03:55:18.2835100Z adding 'torch/include/ATen/ops/miopen_convolution_relu.h' 2025-07-24T03:55:18.2836130Z adding 'torch/include/ATen/ops/miopen_convolution_relu_cuda_dispatch.h' 2025-07-24T03:55:18.2836970Z adding 'torch/include/ATen/ops/miopen_convolution_relu_native.h' 2025-07-24T03:55:18.2837920Z adding 'torch/include/ATen/ops/miopen_convolution_relu_ops.h' 2025-07-24T03:55:18.2839220Z adding 'torch/include/ATen/ops/miopen_convolution_transpose.h' 2025-07-24T03:55:18.2841470Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2842280Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_cuda_dispatch.h' 2025-07-24T03:55:18.2843350Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_native.h' 2025-07-24T03:55:18.2845380Z adding 'torch/include/ATen/ops/miopen_convolution_transpose_ops.h' 2025-07-24T03:55:18.2846450Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution.h' 2025-07-24T03:55:18.2847570Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2848480Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_cuda_dispatch.h' 2025-07-24T03:55:18.2849540Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_native.h' 2025-07-24T03:55:18.2850670Z adding 'torch/include/ATen/ops/miopen_depthwise_convolution_ops.h' 2025-07-24T03:55:18.2851810Z adding 'torch/include/ATen/ops/miopen_rnn.h' 2025-07-24T03:55:18.2853080Z adding 'torch/include/ATen/ops/miopen_rnn_backward.h' 2025-07-24T03:55:18.2854330Z adding 'torch/include/ATen/ops/miopen_rnn_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2855270Z adding 'torch/include/ATen/ops/miopen_rnn_backward_cuda_dispatch.h' 2025-07-24T03:55:18.2856210Z adding 'torch/include/ATen/ops/miopen_rnn_backward_native.h' 2025-07-24T03:55:18.2857480Z adding 'torch/include/ATen/ops/miopen_rnn_backward_ops.h' 2025-07-24T03:55:18.2858660Z adding 'torch/include/ATen/ops/miopen_rnn_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2859530Z adding 'torch/include/ATen/ops/miopen_rnn_cuda_dispatch.h' 2025-07-24T03:55:18.2860440Z adding 'torch/include/ATen/ops/miopen_rnn_native.h' 2025-07-24T03:55:18.2861600Z adding 'torch/include/ATen/ops/miopen_rnn_ops.h' 2025-07-24T03:55:18.2862650Z adding 'torch/include/ATen/ops/mish.h' 2025-07-24T03:55:18.2863560Z adding 'torch/include/ATen/ops/mish_backward.h' 2025-07-24T03:55:18.2864590Z adding 'torch/include/ATen/ops/mish_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2865410Z adding 'torch/include/ATen/ops/mish_backward_cpu_dispatch.h' 2025-07-24T03:55:18.2866380Z adding 'torch/include/ATen/ops/mish_backward_cuda_dispatch.h' 2025-07-24T03:55:18.2867180Z adding 'torch/include/ATen/ops/mish_backward_mps_dispatch.h' 2025-07-24T03:55:18.2868030Z adding 'torch/include/ATen/ops/mish_backward_native.h' 2025-07-24T03:55:18.2868930Z adding 'torch/include/ATen/ops/mish_backward_ops.h' 2025-07-24T03:55:18.2870010Z adding 'torch/include/ATen/ops/mish_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2870810Z adding 'torch/include/ATen/ops/mish_cpu_dispatch.h' 2025-07-24T03:55:18.2871670Z adding 'torch/include/ATen/ops/mish_cuda_dispatch.h' 2025-07-24T03:55:18.2872570Z adding 'torch/include/ATen/ops/mish_meta.h' 2025-07-24T03:55:18.2873560Z adding 'torch/include/ATen/ops/mish_meta_dispatch.h' 2025-07-24T03:55:18.2874430Z adding 'torch/include/ATen/ops/mish_mps_dispatch.h' 2025-07-24T03:55:18.2875290Z adding 'torch/include/ATen/ops/mish_native.h' 2025-07-24T03:55:18.2876320Z adding 'torch/include/ATen/ops/mish_ops.h' 2025-07-24T03:55:18.2877480Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d.h' 2025-07-24T03:55:18.2878410Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward.h' 2025-07-24T03:55:18.2879470Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2880290Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_native.h' 2025-07-24T03:55:18.2881440Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_backward_ops.h' 2025-07-24T03:55:18.2882280Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_native.h' 2025-07-24T03:55:18.2883240Z adding 'torch/include/ATen/ops/mkldnn_adaptive_avg_pool2d_ops.h' 2025-07-24T03:55:18.2884430Z adding 'torch/include/ATen/ops/mkldnn_convolution.h' 2025-07-24T03:55:18.2885650Z adding 'torch/include/ATen/ops/mkldnn_convolution_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2886510Z adding 'torch/include/ATen/ops/mkldnn_convolution_native.h' 2025-07-24T03:55:18.2887560Z adding 'torch/include/ATen/ops/mkldnn_convolution_ops.h' 2025-07-24T03:55:18.2888500Z adding 'torch/include/ATen/ops/mkldnn_linear.h' 2025-07-24T03:55:18.2889600Z adding 'torch/include/ATen/ops/mkldnn_linear_backward.h' 2025-07-24T03:55:18.2890650Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2891560Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input.h' 2025-07-24T03:55:18.2892560Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2893480Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_native.h' 2025-07-24T03:55:18.2894470Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_input_ops.h' 2025-07-24T03:55:18.2895330Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_native.h' 2025-07-24T03:55:18.2896360Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_ops.h' 2025-07-24T03:55:18.2897430Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights.h' 2025-07-24T03:55:18.2898440Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2899230Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_native.h' 2025-07-24T03:55:18.2900220Z adding 'torch/include/ATen/ops/mkldnn_linear_backward_weights_ops.h' 2025-07-24T03:55:18.2901310Z adding 'torch/include/ATen/ops/mkldnn_linear_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2902140Z adding 'torch/include/ATen/ops/mkldnn_linear_native.h' 2025-07-24T03:55:18.2903150Z adding 'torch/include/ATen/ops/mkldnn_linear_ops.h' 2025-07-24T03:55:18.2904140Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d.h' 2025-07-24T03:55:18.2905310Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward.h' 2025-07-24T03:55:18.2906350Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2907140Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_native.h' 2025-07-24T03:55:18.2908170Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_backward_ops.h' 2025-07-24T03:55:18.2909250Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2910060Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_native.h' 2025-07-24T03:55:18.2911050Z adding 'torch/include/ATen/ops/mkldnn_max_pool2d_ops.h' 2025-07-24T03:55:18.2911990Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d.h' 2025-07-24T03:55:18.2913120Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward.h' 2025-07-24T03:55:18.2914190Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2915030Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_native.h' 2025-07-24T03:55:18.2916120Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_backward_ops.h' 2025-07-24T03:55:18.2917220Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2918020Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_native.h' 2025-07-24T03:55:18.2919110Z adding 'torch/include/ATen/ops/mkldnn_max_pool3d_ops.h' 2025-07-24T03:55:18.2920460Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight.h' 2025-07-24T03:55:18.2921700Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2922530Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_native.h' 2025-07-24T03:55:18.2923520Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv2d_weight_ops.h' 2025-07-24T03:55:18.2924770Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight.h' 2025-07-24T03:55:18.2926020Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2926880Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_native.h' 2025-07-24T03:55:18.2927920Z adding 'torch/include/ATen/ops/mkldnn_reorder_conv3d_weight_ops.h' 2025-07-24T03:55:18.2928960Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer.h' 2025-07-24T03:55:18.2930600Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward.h' 2025-07-24T03:55:18.2931580Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2932500Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_cpu_dispatch.h' 2025-07-24T03:55:18.2933540Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_native.h' 2025-07-24T03:55:18.2935440Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_backward_ops.h' 2025-07-24T03:55:18.2936090Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2937020Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_cpu_dispatch.h' 2025-07-24T03:55:18.2937980Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_native.h' 2025-07-24T03:55:18.2939300Z adding 'torch/include/ATen/ops/mkldnn_rnn_layer_ops.h' 2025-07-24T03:55:18.2940270Z adding 'torch/include/ATen/ops/mm.h' 2025-07-24T03:55:18.2941310Z adding 'torch/include/ATen/ops/mm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2942210Z adding 'torch/include/ATen/ops/mm_cpu_dispatch.h' 2025-07-24T03:55:18.2943360Z adding 'torch/include/ATen/ops/mm_cuda_dispatch.h' 2025-07-24T03:55:18.2944200Z adding 'torch/include/ATen/ops/mm_meta.h' 2025-07-24T03:55:18.2945070Z adding 'torch/include/ATen/ops/mm_meta_dispatch.h' 2025-07-24T03:55:18.2945940Z adding 'torch/include/ATen/ops/mm_mps_dispatch.h' 2025-07-24T03:55:18.2947010Z adding 'torch/include/ATen/ops/mm_native.h' 2025-07-24T03:55:18.2948120Z adding 'torch/include/ATen/ops/mm_ops.h' 2025-07-24T03:55:18.2949170Z adding 'torch/include/ATen/ops/mode.h' 2025-07-24T03:55:18.2950180Z adding 'torch/include/ATen/ops/mode_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2951260Z adding 'torch/include/ATen/ops/mode_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2952070Z adding 'torch/include/ATen/ops/mode_cpu_dispatch.h' 2025-07-24T03:55:18.2952910Z adding 'torch/include/ATen/ops/mode_cuda_dispatch.h' 2025-07-24T03:55:18.2953800Z adding 'torch/include/ATen/ops/mode_native.h' 2025-07-24T03:55:18.2955120Z adding 'torch/include/ATen/ops/mode_ops.h' 2025-07-24T03:55:18.2956030Z adding 'torch/include/ATen/ops/moveaxis.h' 2025-07-24T03:55:18.2957070Z adding 'torch/include/ATen/ops/moveaxis_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2957930Z adding 'torch/include/ATen/ops/moveaxis_native.h' 2025-07-24T03:55:18.2959010Z adding 'torch/include/ATen/ops/moveaxis_ops.h' 2025-07-24T03:55:18.2959900Z adding 'torch/include/ATen/ops/movedim.h' 2025-07-24T03:55:18.2960850Z adding 'torch/include/ATen/ops/movedim_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2961980Z adding 'torch/include/ATen/ops/movedim_native.h' 2025-07-24T03:55:18.2963080Z adding 'torch/include/ATen/ops/movedim_ops.h' 2025-07-24T03:55:18.2964510Z adding 'torch/include/ATen/ops/mps_convolution_backward.h' 2025-07-24T03:55:18.2965730Z adding 'torch/include/ATen/ops/mps_convolution_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2966650Z adding 'torch/include/ATen/ops/mps_convolution_backward_mps_dispatch.h' 2025-07-24T03:55:18.2967680Z adding 'torch/include/ATen/ops/mps_convolution_backward_native.h' 2025-07-24T03:55:18.2968860Z adding 'torch/include/ATen/ops/mps_convolution_backward_ops.h' 2025-07-24T03:55:18.2970290Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward.h' 2025-07-24T03:55:18.2971460Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2972430Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_mps_dispatch.h' 2025-07-24T03:55:18.2973350Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_native.h' 2025-07-24T03:55:18.2974450Z adding 'torch/include/ATen/ops/mps_convolution_transpose_backward_ops.h' 2025-07-24T03:55:18.2975340Z adding 'torch/include/ATen/ops/mse_loss.h' 2025-07-24T03:55:18.2976430Z adding 'torch/include/ATen/ops/mse_loss_backward.h' 2025-07-24T03:55:18.2977410Z adding 'torch/include/ATen/ops/mse_loss_backward_cpu_dispatch.h' 2025-07-24T03:55:18.2978380Z adding 'torch/include/ATen/ops/mse_loss_backward_cuda_dispatch.h' 2025-07-24T03:55:18.2979260Z adding 'torch/include/ATen/ops/mse_loss_backward_mps_dispatch.h' 2025-07-24T03:55:18.2980230Z adding 'torch/include/ATen/ops/mse_loss_backward_native.h' 2025-07-24T03:55:18.2981280Z adding 'torch/include/ATen/ops/mse_loss_backward_ops.h' 2025-07-24T03:55:18.2982270Z adding 'torch/include/ATen/ops/mse_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2983140Z adding 'torch/include/ATen/ops/mse_loss_cpu_dispatch.h' 2025-07-24T03:55:18.2984130Z adding 'torch/include/ATen/ops/mse_loss_cuda_dispatch.h' 2025-07-24T03:55:18.2985030Z adding 'torch/include/ATen/ops/mse_loss_meta.h' 2025-07-24T03:55:18.2985930Z adding 'torch/include/ATen/ops/mse_loss_meta_dispatch.h' 2025-07-24T03:55:18.2986860Z adding 'torch/include/ATen/ops/mse_loss_mps_dispatch.h' 2025-07-24T03:55:18.2987860Z adding 'torch/include/ATen/ops/mse_loss_native.h' 2025-07-24T03:55:18.2988870Z adding 'torch/include/ATen/ops/mse_loss_ops.h' 2025-07-24T03:55:18.2989760Z adding 'torch/include/ATen/ops/msort.h' 2025-07-24T03:55:18.2990700Z adding 'torch/include/ATen/ops/msort_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.2991590Z adding 'torch/include/ATen/ops/msort_native.h' 2025-07-24T03:55:18.2992530Z adding 'torch/include/ATen/ops/msort_ops.h' 2025-07-24T03:55:18.2993480Z adding 'torch/include/ATen/ops/mul.h' 2025-07-24T03:55:18.2994430Z adding 'torch/include/ATen/ops/mul_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.2995430Z adding 'torch/include/ATen/ops/mul_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.2996200Z adding 'torch/include/ATen/ops/mul_cpu_dispatch.h' 2025-07-24T03:55:18.2997020Z adding 'torch/include/ATen/ops/mul_cuda_dispatch.h' 2025-07-24T03:55:18.2997840Z adding 'torch/include/ATen/ops/mul_meta.h' 2025-07-24T03:55:18.2998800Z adding 'torch/include/ATen/ops/mul_meta_dispatch.h' 2025-07-24T03:55:18.2999640Z adding 'torch/include/ATen/ops/mul_mps_dispatch.h' 2025-07-24T03:55:18.3000610Z adding 'torch/include/ATen/ops/mul_native.h' 2025-07-24T03:55:18.3001680Z adding 'torch/include/ATen/ops/mul_ops.h' 2025-07-24T03:55:18.3002810Z adding 'torch/include/ATen/ops/multi_margin_loss.h' 2025-07-24T03:55:18.3003820Z adding 'torch/include/ATen/ops/multi_margin_loss_backward.h' 2025-07-24T03:55:18.3004790Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3005670Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3006660Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_native.h' 2025-07-24T03:55:18.3007700Z adding 'torch/include/ATen/ops/multi_margin_loss_backward_ops.h' 2025-07-24T03:55:18.3008610Z adding 'torch/include/ATen/ops/multi_margin_loss_cpu_dispatch.h' 2025-07-24T03:55:18.3009460Z adding 'torch/include/ATen/ops/multi_margin_loss_cuda_dispatch.h' 2025-07-24T03:55:18.3014220Z adding 'torch/include/ATen/ops/multi_margin_loss_native.h' 2025-07-24T03:55:18.3014490Z adding 'torch/include/ATen/ops/multi_margin_loss_ops.h' 2025-07-24T03:55:18.3014600Z adding 'torch/include/ATen/ops/multilabel_margin_loss.h' 2025-07-24T03:55:18.3014720Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward.h' 2025-07-24T03:55:18.3014890Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3015280Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3016150Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_native.h' 2025-07-24T03:55:18.3017100Z adding 'torch/include/ATen/ops/multilabel_margin_loss_backward_ops.h' 2025-07-24T03:55:18.3018220Z adding 'torch/include/ATen/ops/multilabel_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3019150Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward.h' 2025-07-24T03:55:18.3020070Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cpu_dispatch.h' 2025-07-24T03:55:18.3020940Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_cuda_dispatch.h' 2025-07-24T03:55:18.3021930Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_native.h' 2025-07-24T03:55:18.3022930Z adding 'torch/include/ATen/ops/multilabel_margin_loss_forward_ops.h' 2025-07-24T03:55:18.3023800Z adding 'torch/include/ATen/ops/multilabel_margin_loss_native.h' 2025-07-24T03:55:18.3024730Z adding 'torch/include/ATen/ops/multilabel_margin_loss_ops.h' 2025-07-24T03:55:18.3025950Z adding 'torch/include/ATen/ops/multinomial.h' 2025-07-24T03:55:18.3027010Z adding 'torch/include/ATen/ops/multinomial_cpu_dispatch.h' 2025-07-24T03:55:18.3027910Z adding 'torch/include/ATen/ops/multinomial_cuda_dispatch.h' 2025-07-24T03:55:18.3028790Z adding 'torch/include/ATen/ops/multinomial_mps_dispatch.h' 2025-07-24T03:55:18.3029830Z adding 'torch/include/ATen/ops/multinomial_native.h' 2025-07-24T03:55:18.3030810Z adding 'torch/include/ATen/ops/multinomial_ops.h' 2025-07-24T03:55:18.3031730Z adding 'torch/include/ATen/ops/multiply.h' 2025-07-24T03:55:18.3032720Z adding 'torch/include/ATen/ops/multiply_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3033640Z adding 'torch/include/ATen/ops/multiply_native.h' 2025-07-24T03:55:18.3034710Z adding 'torch/include/ATen/ops/multiply_ops.h' 2025-07-24T03:55:18.3035600Z adding 'torch/include/ATen/ops/mv.h' 2025-07-24T03:55:18.3036560Z adding 'torch/include/ATen/ops/mv_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3037500Z adding 'torch/include/ATen/ops/mv_native.h' 2025-07-24T03:55:18.3038450Z adding 'torch/include/ATen/ops/mv_ops.h' 2025-07-24T03:55:18.3039530Z adding 'torch/include/ATen/ops/mvlgamma.h' 2025-07-24T03:55:18.3040650Z adding 'torch/include/ATen/ops/mvlgamma_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3041620Z adding 'torch/include/ATen/ops/mvlgamma_cpu_dispatch.h' 2025-07-24T03:55:18.3042500Z adding 'torch/include/ATen/ops/mvlgamma_cuda_dispatch.h' 2025-07-24T03:55:18.3043410Z adding 'torch/include/ATen/ops/mvlgamma_native.h' 2025-07-24T03:55:18.3044410Z adding 'torch/include/ATen/ops/mvlgamma_ops.h' 2025-07-24T03:55:18.3045590Z adding 'torch/include/ATen/ops/nan_to_num.h' 2025-07-24T03:55:18.3046650Z adding 'torch/include/ATen/ops/nan_to_num_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3047580Z adding 'torch/include/ATen/ops/nan_to_num_cpu_dispatch.h' 2025-07-24T03:55:18.3048500Z adding 'torch/include/ATen/ops/nan_to_num_cuda_dispatch.h' 2025-07-24T03:55:18.3049520Z adding 'torch/include/ATen/ops/nan_to_num_mps_dispatch.h' 2025-07-24T03:55:18.3050520Z adding 'torch/include/ATen/ops/nan_to_num_native.h' 2025-07-24T03:55:18.3051620Z adding 'torch/include/ATen/ops/nan_to_num_ops.h' 2025-07-24T03:55:18.3052590Z adding 'torch/include/ATen/ops/nanmean.h' 2025-07-24T03:55:18.3053700Z adding 'torch/include/ATen/ops/nanmean_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3054490Z adding 'torch/include/ATen/ops/nanmean_native.h' 2025-07-24T03:55:18.3055440Z adding 'torch/include/ATen/ops/nanmean_ops.h' 2025-07-24T03:55:18.3056570Z adding 'torch/include/ATen/ops/nanmedian.h' 2025-07-24T03:55:18.3057670Z adding 'torch/include/ATen/ops/nanmedian_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3058580Z adding 'torch/include/ATen/ops/nanmedian_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3059430Z adding 'torch/include/ATen/ops/nanmedian_cpu_dispatch.h' 2025-07-24T03:55:18.3060350Z adding 'torch/include/ATen/ops/nanmedian_cuda_dispatch.h' 2025-07-24T03:55:18.3061320Z adding 'torch/include/ATen/ops/nanmedian_mps_dispatch.h' 2025-07-24T03:55:18.3062200Z adding 'torch/include/ATen/ops/nanmedian_native.h' 2025-07-24T03:55:18.3063390Z adding 'torch/include/ATen/ops/nanmedian_ops.h' 2025-07-24T03:55:18.3064420Z adding 'torch/include/ATen/ops/nanquantile.h' 2025-07-24T03:55:18.3065680Z adding 'torch/include/ATen/ops/nanquantile_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3066560Z adding 'torch/include/ATen/ops/nanquantile_native.h' 2025-07-24T03:55:18.3067650Z adding 'torch/include/ATen/ops/nanquantile_ops.h' 2025-07-24T03:55:18.3068620Z adding 'torch/include/ATen/ops/nansum.h' 2025-07-24T03:55:18.3069660Z adding 'torch/include/ATen/ops/nansum_cpu_dispatch.h' 2025-07-24T03:55:18.3070510Z adding 'torch/include/ATen/ops/nansum_cuda_dispatch.h' 2025-07-24T03:55:18.3071350Z adding 'torch/include/ATen/ops/nansum_mps_dispatch.h' 2025-07-24T03:55:18.3072280Z adding 'torch/include/ATen/ops/nansum_native.h' 2025-07-24T03:55:18.3073380Z adding 'torch/include/ATen/ops/nansum_ops.h' 2025-07-24T03:55:18.3074370Z adding 'torch/include/ATen/ops/narrow.h' 2025-07-24T03:55:18.3075370Z adding 'torch/include/ATen/ops/narrow_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3076330Z adding 'torch/include/ATen/ops/narrow_copy.h' 2025-07-24T03:55:18.3077480Z adding 'torch/include/ATen/ops/narrow_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3078280Z adding 'torch/include/ATen/ops/narrow_copy_cpu_dispatch.h' 2025-07-24T03:55:18.3079130Z adding 'torch/include/ATen/ops/narrow_copy_native.h' 2025-07-24T03:55:18.3080080Z adding 'torch/include/ATen/ops/narrow_copy_ops.h' 2025-07-24T03:55:18.3081020Z adding 'torch/include/ATen/ops/narrow_native.h' 2025-07-24T03:55:18.3081990Z adding 'torch/include/ATen/ops/narrow_ops.h' 2025-07-24T03:55:18.3083020Z adding 'torch/include/ATen/ops/native_batch_norm.h' 2025-07-24T03:55:18.3084090Z adding 'torch/include/ATen/ops/native_batch_norm_backward.h' 2025-07-24T03:55:18.3085260Z adding 'torch/include/ATen/ops/native_batch_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3086120Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3086980Z adding 'torch/include/ATen/ops/native_batch_norm_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3087820Z adding 'torch/include/ATen/ops/native_batch_norm_backward_mps_dispatch.h' 2025-07-24T03:55:18.3088870Z adding 'torch/include/ATen/ops/native_batch_norm_backward_native.h' 2025-07-24T03:55:18.3089990Z adding 'torch/include/ATen/ops/native_batch_norm_backward_ops.h' 2025-07-24T03:55:18.3090920Z adding 'torch/include/ATen/ops/native_batch_norm_cpu_dispatch.h' 2025-07-24T03:55:18.3091810Z adding 'torch/include/ATen/ops/native_batch_norm_cuda_dispatch.h' 2025-07-24T03:55:18.3092810Z adding 'torch/include/ATen/ops/native_batch_norm_mps_dispatch.h' 2025-07-24T03:55:18.3093760Z adding 'torch/include/ATen/ops/native_batch_norm_native.h' 2025-07-24T03:55:18.3094830Z adding 'torch/include/ATen/ops/native_batch_norm_ops.h' 2025-07-24T03:55:18.3095780Z adding 'torch/include/ATen/ops/native_channel_shuffle.h' 2025-07-24T03:55:18.3096880Z adding 'torch/include/ATen/ops/native_channel_shuffle_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3097690Z adding 'torch/include/ATen/ops/native_channel_shuffle_cpu_dispatch.h' 2025-07-24T03:55:18.3098540Z adding 'torch/include/ATen/ops/native_channel_shuffle_native.h' 2025-07-24T03:55:18.3099410Z adding 'torch/include/ATen/ops/native_channel_shuffle_ops.h' 2025-07-24T03:55:18.3100450Z adding 'torch/include/ATen/ops/native_dropout.h' 2025-07-24T03:55:18.3101450Z adding 'torch/include/ATen/ops/native_dropout_backward.h' 2025-07-24T03:55:18.3102410Z adding 'torch/include/ATen/ops/native_dropout_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3103220Z adding 'torch/include/ATen/ops/native_dropout_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3104160Z adding 'torch/include/ATen/ops/native_dropout_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3105000Z adding 'torch/include/ATen/ops/native_dropout_backward_native.h' 2025-07-24T03:55:18.3105970Z adding 'torch/include/ATen/ops/native_dropout_backward_ops.h' 2025-07-24T03:55:18.3106920Z adding 'torch/include/ATen/ops/native_dropout_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3107830Z adding 'torch/include/ATen/ops/native_dropout_cpu_dispatch.h' 2025-07-24T03:55:18.3108680Z adding 'torch/include/ATen/ops/native_dropout_cuda_dispatch.h' 2025-07-24T03:55:18.3109520Z adding 'torch/include/ATen/ops/native_dropout_native.h' 2025-07-24T03:55:18.3110510Z adding 'torch/include/ATen/ops/native_dropout_ops.h' 2025-07-24T03:55:18.3111890Z adding 'torch/include/ATen/ops/native_group_norm.h' 2025-07-24T03:55:18.3113250Z adding 'torch/include/ATen/ops/native_group_norm_backward.h' 2025-07-24T03:55:18.3114390Z adding 'torch/include/ATen/ops/native_group_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3115300Z adding 'torch/include/ATen/ops/native_group_norm_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3116310Z adding 'torch/include/ATen/ops/native_group_norm_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3117200Z adding 'torch/include/ATen/ops/native_group_norm_backward_native.h' 2025-07-24T03:55:18.3118290Z adding 'torch/include/ATen/ops/native_group_norm_backward_ops.h' 2025-07-24T03:55:18.3119350Z adding 'torch/include/ATen/ops/native_group_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3120320Z adding 'torch/include/ATen/ops/native_group_norm_cpu_dispatch.h' 2025-07-24T03:55:18.3121210Z adding 'torch/include/ATen/ops/native_group_norm_cuda_dispatch.h' 2025-07-24T03:55:18.3122090Z adding 'torch/include/ATen/ops/native_group_norm_native.h' 2025-07-24T03:55:18.3123140Z adding 'torch/include/ATen/ops/native_group_norm_ops.h' 2025-07-24T03:55:18.3124490Z adding 'torch/include/ATen/ops/native_layer_norm.h' 2025-07-24T03:55:18.3125840Z adding 'torch/include/ATen/ops/native_layer_norm_backward.h' 2025-07-24T03:55:18.3126980Z adding 'torch/include/ATen/ops/native_layer_norm_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3127820Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3128810Z adding 'torch/include/ATen/ops/native_layer_norm_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3129690Z adding 'torch/include/ATen/ops/native_layer_norm_backward_mps_dispatch.h' 2025-07-24T03:55:18.3130620Z adding 'torch/include/ATen/ops/native_layer_norm_backward_native.h' 2025-07-24T03:55:18.3131720Z adding 'torch/include/ATen/ops/native_layer_norm_backward_ops.h' 2025-07-24T03:55:18.3132910Z adding 'torch/include/ATen/ops/native_layer_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3133750Z adding 'torch/include/ATen/ops/native_layer_norm_cpu_dispatch.h' 2025-07-24T03:55:18.3134590Z adding 'torch/include/ATen/ops/native_layer_norm_cuda_dispatch.h' 2025-07-24T03:55:18.3135420Z adding 'torch/include/ATen/ops/native_layer_norm_mps_dispatch.h' 2025-07-24T03:55:18.3136510Z adding 'torch/include/ATen/ops/native_layer_norm_native.h' 2025-07-24T03:55:18.3137540Z adding 'torch/include/ATen/ops/native_layer_norm_ops.h' 2025-07-24T03:55:18.3138530Z adding 'torch/include/ATen/ops/native_norm.h' 2025-07-24T03:55:18.3139550Z adding 'torch/include/ATen/ops/native_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3140480Z adding 'torch/include/ATen/ops/native_norm_native.h' 2025-07-24T03:55:18.3141680Z adding 'torch/include/ATen/ops/native_norm_ops.h' 2025-07-24T03:55:18.3142630Z adding 'torch/include/ATen/ops/ne.h' 2025-07-24T03:55:18.3143660Z adding 'torch/include/ATen/ops/ne_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3144580Z adding 'torch/include/ATen/ops/ne_cpu_dispatch.h' 2025-07-24T03:55:18.3145470Z adding 'torch/include/ATen/ops/ne_cuda_dispatch.h' 2025-07-24T03:55:18.3146340Z adding 'torch/include/ATen/ops/ne_meta.h' 2025-07-24T03:55:18.3147220Z adding 'torch/include/ATen/ops/ne_meta_dispatch.h' 2025-07-24T03:55:18.3148170Z adding 'torch/include/ATen/ops/ne_mps_dispatch.h' 2025-07-24T03:55:18.3149100Z adding 'torch/include/ATen/ops/ne_native.h' 2025-07-24T03:55:18.3150250Z adding 'torch/include/ATen/ops/ne_ops.h' 2025-07-24T03:55:18.3151200Z adding 'torch/include/ATen/ops/neg.h' 2025-07-24T03:55:18.3152360Z adding 'torch/include/ATen/ops/neg_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3153140Z adding 'torch/include/ATen/ops/neg_cpu_dispatch.h' 2025-07-24T03:55:18.3153970Z adding 'torch/include/ATen/ops/neg_cuda_dispatch.h' 2025-07-24T03:55:18.3154820Z adding 'torch/include/ATen/ops/neg_meta.h' 2025-07-24T03:55:18.3155800Z adding 'torch/include/ATen/ops/neg_meta_dispatch.h' 2025-07-24T03:55:18.3156620Z adding 'torch/include/ATen/ops/neg_mps_dispatch.h' 2025-07-24T03:55:18.3157480Z adding 'torch/include/ATen/ops/neg_native.h' 2025-07-24T03:55:18.3158490Z adding 'torch/include/ATen/ops/neg_ops.h' 2025-07-24T03:55:18.3159530Z adding 'torch/include/ATen/ops/negative.h' 2025-07-24T03:55:18.3160570Z adding 'torch/include/ATen/ops/negative_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3161300Z adding 'torch/include/ATen/ops/negative_native.h' 2025-07-24T03:55:18.3162360Z adding 'torch/include/ATen/ops/negative_ops.h' 2025-07-24T03:55:18.3163410Z adding 'torch/include/ATen/ops/nested_to_padded_tensor.h' 2025-07-24T03:55:18.3164430Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3165220Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_native.h' 2025-07-24T03:55:18.3166170Z adding 'torch/include/ATen/ops/nested_to_padded_tensor_ops.h' 2025-07-24T03:55:18.3167340Z adding 'torch/include/ATen/ops/new_empty.h' 2025-07-24T03:55:18.3168490Z adding 'torch/include/ATen/ops/new_empty_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3169240Z adding 'torch/include/ATen/ops/new_empty_native.h' 2025-07-24T03:55:18.3170240Z adding 'torch/include/ATen/ops/new_empty_ops.h' 2025-07-24T03:55:18.3171520Z adding 'torch/include/ATen/ops/new_empty_strided.h' 2025-07-24T03:55:18.3172570Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3173550Z adding 'torch/include/ATen/ops/new_empty_strided_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3174290Z adding 'torch/include/ATen/ops/new_empty_strided_native.h' 2025-07-24T03:55:18.3175400Z adding 'torch/include/ATen/ops/new_empty_strided_ops.h' 2025-07-24T03:55:18.3176540Z adding 'torch/include/ATen/ops/new_full.h' 2025-07-24T03:55:18.3177620Z adding 'torch/include/ATen/ops/new_full_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3178420Z adding 'torch/include/ATen/ops/new_full_native.h' 2025-07-24T03:55:18.3179540Z adding 'torch/include/ATen/ops/new_full_ops.h' 2025-07-24T03:55:18.3180650Z adding 'torch/include/ATen/ops/new_ones.h' 2025-07-24T03:55:18.3181700Z adding 'torch/include/ATen/ops/new_ones_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3182490Z adding 'torch/include/ATen/ops/new_ones_native.h' 2025-07-24T03:55:18.3183590Z adding 'torch/include/ATen/ops/new_ones_ops.h' 2025-07-24T03:55:18.3184680Z adding 'torch/include/ATen/ops/new_zeros.h' 2025-07-24T03:55:18.3185790Z adding 'torch/include/ATen/ops/new_zeros_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3186590Z adding 'torch/include/ATen/ops/new_zeros_native.h' 2025-07-24T03:55:18.3187670Z adding 'torch/include/ATen/ops/new_zeros_ops.h' 2025-07-24T03:55:18.3188960Z adding 'torch/include/ATen/ops/nextafter.h' 2025-07-24T03:55:18.3189960Z adding 'torch/include/ATen/ops/nextafter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3190760Z adding 'torch/include/ATen/ops/nextafter_cpu_dispatch.h' 2025-07-24T03:55:18.3191690Z adding 'torch/include/ATen/ops/nextafter_cuda_dispatch.h' 2025-07-24T03:55:18.3192560Z adding 'torch/include/ATen/ops/nextafter_meta.h' 2025-07-24T03:55:18.3193410Z adding 'torch/include/ATen/ops/nextafter_meta_dispatch.h' 2025-07-24T03:55:18.3194230Z adding 'torch/include/ATen/ops/nextafter_mps_dispatch.h' 2025-07-24T03:55:18.3195170Z adding 'torch/include/ATen/ops/nextafter_native.h' 2025-07-24T03:55:18.3196170Z adding 'torch/include/ATen/ops/nextafter_ops.h' 2025-07-24T03:55:18.3197280Z adding 'torch/include/ATen/ops/nll_loss.h' 2025-07-24T03:55:18.3198420Z adding 'torch/include/ATen/ops/nll_loss2d.h' 2025-07-24T03:55:18.3199720Z adding 'torch/include/ATen/ops/nll_loss2d_backward.h' 2025-07-24T03:55:18.3200750Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3201640Z adding 'torch/include/ATen/ops/nll_loss2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3202520Z adding 'torch/include/ATen/ops/nll_loss2d_backward_mps_dispatch.h' 2025-07-24T03:55:18.3203530Z adding 'torch/include/ATen/ops/nll_loss2d_backward_native.h' 2025-07-24T03:55:18.3204550Z adding 'torch/include/ATen/ops/nll_loss2d_backward_ops.h' 2025-07-24T03:55:18.3205580Z adding 'torch/include/ATen/ops/nll_loss2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3206690Z adding 'torch/include/ATen/ops/nll_loss2d_forward.h' 2025-07-24T03:55:18.3207780Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cpu_dispatch.h' 2025-07-24T03:55:18.3208700Z adding 'torch/include/ATen/ops/nll_loss2d_forward_cuda_dispatch.h' 2025-07-24T03:55:18.3209640Z adding 'torch/include/ATen/ops/nll_loss2d_forward_mps_dispatch.h' 2025-07-24T03:55:18.3210530Z adding 'torch/include/ATen/ops/nll_loss2d_forward_native.h' 2025-07-24T03:55:18.3211690Z adding 'torch/include/ATen/ops/nll_loss2d_forward_ops.h' 2025-07-24T03:55:18.3212580Z adding 'torch/include/ATen/ops/nll_loss2d_native.h' 2025-07-24T03:55:18.3213570Z adding 'torch/include/ATen/ops/nll_loss2d_ops.h' 2025-07-24T03:55:18.3214760Z adding 'torch/include/ATen/ops/nll_loss_backward.h' 2025-07-24T03:55:18.3215970Z adding 'torch/include/ATen/ops/nll_loss_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3216840Z adding 'torch/include/ATen/ops/nll_loss_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3217750Z adding 'torch/include/ATen/ops/nll_loss_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3218650Z adding 'torch/include/ATen/ops/nll_loss_backward_meta.h' 2025-07-24T03:55:18.3219710Z adding 'torch/include/ATen/ops/nll_loss_backward_meta_dispatch.h' 2025-07-24T03:55:18.3220580Z adding 'torch/include/ATen/ops/nll_loss_backward_mps_dispatch.h' 2025-07-24T03:55:18.3221480Z adding 'torch/include/ATen/ops/nll_loss_backward_native.h' 2025-07-24T03:55:18.3222510Z adding 'torch/include/ATen/ops/nll_loss_backward_ops.h' 2025-07-24T03:55:18.3223680Z adding 'torch/include/ATen/ops/nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3224790Z adding 'torch/include/ATen/ops/nll_loss_forward.h' 2025-07-24T03:55:18.3225880Z adding 'torch/include/ATen/ops/nll_loss_forward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3226720Z adding 'torch/include/ATen/ops/nll_loss_forward_cpu_dispatch.h' 2025-07-24T03:55:18.3227770Z adding 'torch/include/ATen/ops/nll_loss_forward_cuda_dispatch.h' 2025-07-24T03:55:18.3228660Z adding 'torch/include/ATen/ops/nll_loss_forward_meta.h' 2025-07-24T03:55:18.3229550Z adding 'torch/include/ATen/ops/nll_loss_forward_meta_dispatch.h' 2025-07-24T03:55:18.3230450Z adding 'torch/include/ATen/ops/nll_loss_forward_mps_dispatch.h' 2025-07-24T03:55:18.3231470Z adding 'torch/include/ATen/ops/nll_loss_forward_native.h' 2025-07-24T03:55:18.3232570Z adding 'torch/include/ATen/ops/nll_loss_forward_ops.h' 2025-07-24T03:55:18.3233460Z adding 'torch/include/ATen/ops/nll_loss_native.h' 2025-07-24T03:55:18.3234390Z adding 'torch/include/ATen/ops/nll_loss_nd.h' 2025-07-24T03:55:18.3235540Z adding 'torch/include/ATen/ops/nll_loss_nd_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3236340Z adding 'torch/include/ATen/ops/nll_loss_nd_native.h' 2025-07-24T03:55:18.3237230Z adding 'torch/include/ATen/ops/nll_loss_nd_ops.h' 2025-07-24T03:55:18.3238210Z adding 'torch/include/ATen/ops/nll_loss_ops.h' 2025-07-24T03:55:18.3239240Z adding 'torch/include/ATen/ops/nonzero.h' 2025-07-24T03:55:18.3240170Z adding 'torch/include/ATen/ops/nonzero_cpu_dispatch.h' 2025-07-24T03:55:18.3241040Z adding 'torch/include/ATen/ops/nonzero_cuda_dispatch.h' 2025-07-24T03:55:18.3241860Z adding 'torch/include/ATen/ops/nonzero_mps_dispatch.h' 2025-07-24T03:55:18.3242820Z adding 'torch/include/ATen/ops/nonzero_native.h' 2025-07-24T03:55:18.3243690Z adding 'torch/include/ATen/ops/nonzero_numpy.h' 2025-07-24T03:55:18.3244650Z adding 'torch/include/ATen/ops/nonzero_numpy_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3245410Z adding 'torch/include/ATen/ops/nonzero_numpy_native.h' 2025-07-24T03:55:18.3246410Z adding 'torch/include/ATen/ops/nonzero_numpy_ops.h' 2025-07-24T03:55:18.3247360Z adding 'torch/include/ATen/ops/nonzero_ops.h' 2025-07-24T03:55:18.3248390Z adding 'torch/include/ATen/ops/nonzero_static.h' 2025-07-24T03:55:18.3249370Z adding 'torch/include/ATen/ops/nonzero_static_cpu_dispatch.h' 2025-07-24T03:55:18.3250350Z adding 'torch/include/ATen/ops/nonzero_static_cuda_dispatch.h' 2025-07-24T03:55:18.3251220Z adding 'torch/include/ATen/ops/nonzero_static_native.h' 2025-07-24T03:55:18.3252160Z adding 'torch/include/ATen/ops/nonzero_static_ops.h' 2025-07-24T03:55:18.3254290Z adding 'torch/include/ATen/ops/norm.h' 2025-07-24T03:55:18.3255190Z adding 'torch/include/ATen/ops/norm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3256170Z adding 'torch/include/ATen/ops/norm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3257050Z adding 'torch/include/ATen/ops/norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3257890Z adding 'torch/include/ATen/ops/norm_cpu_dispatch.h' 2025-07-24T03:55:18.3258880Z adding 'torch/include/ATen/ops/norm_cuda_dispatch.h' 2025-07-24T03:55:18.3259790Z adding 'torch/include/ATen/ops/norm_except_dim.h' 2025-07-24T03:55:18.3260760Z adding 'torch/include/ATen/ops/norm_except_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3261500Z adding 'torch/include/ATen/ops/norm_except_dim_native.h' 2025-07-24T03:55:18.3262550Z adding 'torch/include/ATen/ops/norm_except_dim_ops.h' 2025-07-24T03:55:18.3263390Z adding 'torch/include/ATen/ops/norm_meta.h' 2025-07-24T03:55:18.3264260Z adding 'torch/include/ATen/ops/norm_meta_dispatch.h' 2025-07-24T03:55:18.3265100Z adding 'torch/include/ATen/ops/norm_mps_dispatch.h' 2025-07-24T03:55:18.3266200Z adding 'torch/include/ATen/ops/norm_native.h' 2025-07-24T03:55:18.3267840Z adding 'torch/include/ATen/ops/norm_ops.h' 2025-07-24T03:55:18.3269180Z adding 'torch/include/ATen/ops/normal.h' 2025-07-24T03:55:18.3270320Z adding 'torch/include/ATen/ops/normal_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3271340Z adding 'torch/include/ATen/ops/normal_cpu_dispatch.h' 2025-07-24T03:55:18.3272230Z adding 'torch/include/ATen/ops/normal_cuda_dispatch.h' 2025-07-24T03:55:18.3273120Z adding 'torch/include/ATen/ops/normal_meta_dispatch.h' 2025-07-24T03:55:18.3274010Z adding 'torch/include/ATen/ops/normal_mps_dispatch.h' 2025-07-24T03:55:18.3275170Z adding 'torch/include/ATen/ops/normal_native.h' 2025-07-24T03:55:18.3276780Z adding 'torch/include/ATen/ops/normal_ops.h' 2025-07-24T03:55:18.3277660Z adding 'torch/include/ATen/ops/not_equal.h' 2025-07-24T03:55:18.3278650Z adding 'torch/include/ATen/ops/not_equal_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3279570Z adding 'torch/include/ATen/ops/not_equal_native.h' 2025-07-24T03:55:18.3280660Z adding 'torch/include/ATen/ops/not_equal_ops.h' 2025-07-24T03:55:18.3281670Z adding 'torch/include/ATen/ops/nuclear_norm.h' 2025-07-24T03:55:18.3282700Z adding 'torch/include/ATen/ops/nuclear_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3283620Z adding 'torch/include/ATen/ops/nuclear_norm_native.h' 2025-07-24T03:55:18.3284650Z adding 'torch/include/ATen/ops/nuclear_norm_ops.h' 2025-07-24T03:55:18.3285470Z adding 'torch/include/ATen/ops/numpy_T.h' 2025-07-24T03:55:18.3286460Z adding 'torch/include/ATen/ops/numpy_T_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3287340Z adding 'torch/include/ATen/ops/numpy_T_native.h' 2025-07-24T03:55:18.3288230Z adding 'torch/include/ATen/ops/numpy_T_ops.h' 2025-07-24T03:55:18.3289090Z adding 'torch/include/ATen/ops/one_hot.h' 2025-07-24T03:55:18.3290110Z adding 'torch/include/ATen/ops/one_hot_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3290980Z adding 'torch/include/ATen/ops/one_hot_native.h' 2025-07-24T03:55:18.3291900Z adding 'torch/include/ATen/ops/one_hot_ops.h' 2025-07-24T03:55:18.3293160Z adding 'torch/include/ATen/ops/ones.h' 2025-07-24T03:55:18.3294250Z adding 'torch/include/ATen/ops/ones_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3295300Z adding 'torch/include/ATen/ops/ones_like.h' 2025-07-24T03:55:18.3296360Z adding 'torch/include/ATen/ops/ones_like_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3297150Z adding 'torch/include/ATen/ops/ones_like_native.h' 2025-07-24T03:55:18.3298160Z adding 'torch/include/ATen/ops/ones_like_ops.h' 2025-07-24T03:55:18.3299150Z adding 'torch/include/ATen/ops/ones_native.h' 2025-07-24T03:55:18.3300270Z adding 'torch/include/ATen/ops/ones_ops.h' 2025-07-24T03:55:18.3301230Z adding 'torch/include/ATen/ops/or.h' 2025-07-24T03:55:18.3302180Z adding 'torch/include/ATen/ops/or_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3303080Z adding 'torch/include/ATen/ops/or_native.h' 2025-07-24T03:55:18.3304110Z adding 'torch/include/ATen/ops/or_ops.h' 2025-07-24T03:55:18.3304990Z adding 'torch/include/ATen/ops/orgqr.h' 2025-07-24T03:55:18.3305970Z adding 'torch/include/ATen/ops/orgqr_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3306840Z adding 'torch/include/ATen/ops/orgqr_native.h' 2025-07-24T03:55:18.3307780Z adding 'torch/include/ATen/ops/orgqr_ops.h' 2025-07-24T03:55:18.3308680Z adding 'torch/include/ATen/ops/ormqr.h' 2025-07-24T03:55:18.3309610Z adding 'torch/include/ATen/ops/ormqr_cpu_dispatch.h' 2025-07-24T03:55:18.3310570Z adding 'torch/include/ATen/ops/ormqr_cuda_dispatch.h' 2025-07-24T03:55:18.3311430Z adding 'torch/include/ATen/ops/ormqr_native.h' 2025-07-24T03:55:18.3312370Z adding 'torch/include/ATen/ops/ormqr_ops.h' 2025-07-24T03:55:18.3313260Z adding 'torch/include/ATen/ops/outer.h' 2025-07-24T03:55:18.3314360Z adding 'torch/include/ATen/ops/outer_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3315130Z adding 'torch/include/ATen/ops/outer_native.h' 2025-07-24T03:55:18.3316050Z adding 'torch/include/ATen/ops/outer_ops.h' 2025-07-24T03:55:18.3316860Z adding 'torch/include/ATen/ops/output_nr.h' 2025-07-24T03:55:18.3317950Z adding 'torch/include/ATen/ops/output_nr_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3318710Z adding 'torch/include/ATen/ops/output_nr_native.h' 2025-07-24T03:55:18.3319600Z adding 'torch/include/ATen/ops/output_nr_ops.h' 2025-07-24T03:55:18.3320530Z adding 'torch/include/ATen/ops/pad.h' 2025-07-24T03:55:18.3321640Z adding 'torch/include/ATen/ops/pad_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3322400Z adding 'torch/include/ATen/ops/pad_native.h' 2025-07-24T03:55:18.3323340Z adding 'torch/include/ATen/ops/pad_ops.h' 2025-07-24T03:55:18.3324270Z adding 'torch/include/ATen/ops/pad_sequence.h' 2025-07-24T03:55:18.3325370Z adding 'torch/include/ATen/ops/pad_sequence_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3326160Z adding 'torch/include/ATen/ops/pad_sequence_native.h' 2025-07-24T03:55:18.3327090Z adding 'torch/include/ATen/ops/pad_sequence_ops.h' 2025-07-24T03:55:18.3327950Z adding 'torch/include/ATen/ops/pairwise_distance.h' 2025-07-24T03:55:18.3329080Z adding 'torch/include/ATen/ops/pairwise_distance_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3329850Z adding 'torch/include/ATen/ops/pairwise_distance_native.h' 2025-07-24T03:55:18.3330750Z adding 'torch/include/ATen/ops/pairwise_distance_ops.h' 2025-07-24T03:55:18.3331590Z adding 'torch/include/ATen/ops/pdist.h' 2025-07-24T03:55:18.3332630Z adding 'torch/include/ATen/ops/pdist_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3333440Z adding 'torch/include/ATen/ops/pdist_native.h' 2025-07-24T03:55:18.3334300Z adding 'torch/include/ATen/ops/pdist_ops.h' 2025-07-24T03:55:18.3335150Z adding 'torch/include/ATen/ops/permute.h' 2025-07-24T03:55:18.3336220Z adding 'torch/include/ATen/ops/permute_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3337040Z adding 'torch/include/ATen/ops/permute_copy.h' 2025-07-24T03:55:18.3338020Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3338930Z adding 'torch/include/ATen/ops/permute_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3339750Z adding 'torch/include/ATen/ops/permute_copy_native.h' 2025-07-24T03:55:18.3340750Z adding 'torch/include/ATen/ops/permute_copy_ops.h' 2025-07-24T03:55:18.3341610Z adding 'torch/include/ATen/ops/permute_mps_dispatch.h' 2025-07-24T03:55:18.3342500Z adding 'torch/include/ATen/ops/permute_native.h' 2025-07-24T03:55:18.3343530Z adding 'torch/include/ATen/ops/permute_ops.h' 2025-07-24T03:55:18.3344370Z adding 'torch/include/ATen/ops/pin_memory.h' 2025-07-24T03:55:18.3345380Z adding 'torch/include/ATen/ops/pin_memory_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3346110Z adding 'torch/include/ATen/ops/pin_memory_native.h' 2025-07-24T03:55:18.3347130Z adding 'torch/include/ATen/ops/pin_memory_ops.h' 2025-07-24T03:55:18.3347980Z adding 'torch/include/ATen/ops/pinverse.h' 2025-07-24T03:55:18.3348960Z adding 'torch/include/ATen/ops/pinverse_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3349720Z adding 'torch/include/ATen/ops/pinverse_native.h' 2025-07-24T03:55:18.3350780Z adding 'torch/include/ATen/ops/pinverse_ops.h' 2025-07-24T03:55:18.3351680Z adding 'torch/include/ATen/ops/pixel_shuffle.h' 2025-07-24T03:55:18.3352630Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3353570Z adding 'torch/include/ATen/ops/pixel_shuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3354430Z adding 'torch/include/ATen/ops/pixel_shuffle_cpu_dispatch.h' 2025-07-24T03:55:18.3355270Z adding 'torch/include/ATen/ops/pixel_shuffle_mps_dispatch.h' 2025-07-24T03:55:18.3356110Z adding 'torch/include/ATen/ops/pixel_shuffle_native.h' 2025-07-24T03:55:18.3357040Z adding 'torch/include/ATen/ops/pixel_shuffle_ops.h' 2025-07-24T03:55:18.3358070Z adding 'torch/include/ATen/ops/pixel_unshuffle.h' 2025-07-24T03:55:18.3358990Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3359940Z adding 'torch/include/ATen/ops/pixel_unshuffle_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3360630Z adding 'torch/include/ATen/ops/pixel_unshuffle_cpu_dispatch.h' 2025-07-24T03:55:18.3361550Z adding 'torch/include/ATen/ops/pixel_unshuffle_mps_dispatch.h' 2025-07-24T03:55:18.3362420Z adding 'torch/include/ATen/ops/pixel_unshuffle_native.h' 2025-07-24T03:55:18.3363350Z adding 'torch/include/ATen/ops/pixel_unshuffle_ops.h' 2025-07-24T03:55:18.3364240Z adding 'torch/include/ATen/ops/poisson.h' 2025-07-24T03:55:18.3365350Z adding 'torch/include/ATen/ops/poisson_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3366220Z adding 'torch/include/ATen/ops/poisson_cpu_dispatch.h' 2025-07-24T03:55:18.3367000Z adding 'torch/include/ATen/ops/poisson_cuda_dispatch.h' 2025-07-24T03:55:18.3367850Z adding 'torch/include/ATen/ops/poisson_native.h' 2025-07-24T03:55:18.3368820Z adding 'torch/include/ATen/ops/poisson_nll_loss.h' 2025-07-24T03:55:18.3369810Z adding 'torch/include/ATen/ops/poisson_nll_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3370570Z adding 'torch/include/ATen/ops/poisson_nll_loss_native.h' 2025-07-24T03:55:18.3371490Z adding 'torch/include/ATen/ops/poisson_nll_loss_ops.h' 2025-07-24T03:55:18.3372580Z adding 'torch/include/ATen/ops/poisson_ops.h' 2025-07-24T03:55:18.3373520Z adding 'torch/include/ATen/ops/polar.h' 2025-07-24T03:55:18.3374470Z adding 'torch/include/ATen/ops/polar_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3375270Z adding 'torch/include/ATen/ops/polar_cpu_dispatch.h' 2025-07-24T03:55:18.3376200Z adding 'torch/include/ATen/ops/polar_cuda_dispatch.h' 2025-07-24T03:55:18.3377030Z adding 'torch/include/ATen/ops/polar_mps_dispatch.h' 2025-07-24T03:55:18.3377850Z adding 'torch/include/ATen/ops/polar_native.h' 2025-07-24T03:55:18.3378770Z adding 'torch/include/ATen/ops/polar_ops.h' 2025-07-24T03:55:18.3379790Z adding 'torch/include/ATen/ops/polygamma.h' 2025-07-24T03:55:18.3380760Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3381660Z adding 'torch/include/ATen/ops/polygamma_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3382410Z adding 'torch/include/ATen/ops/polygamma_cpu_dispatch.h' 2025-07-24T03:55:18.3383330Z adding 'torch/include/ATen/ops/polygamma_cuda_dispatch.h' 2025-07-24T03:55:18.3384170Z adding 'torch/include/ATen/ops/polygamma_meta.h' 2025-07-24T03:55:18.3385020Z adding 'torch/include/ATen/ops/polygamma_meta_dispatch.h' 2025-07-24T03:55:18.3385830Z adding 'torch/include/ATen/ops/polygamma_mps_dispatch.h' 2025-07-24T03:55:18.3386790Z adding 'torch/include/ATen/ops/polygamma_native.h' 2025-07-24T03:55:18.3387810Z adding 'torch/include/ATen/ops/polygamma_ops.h' 2025-07-24T03:55:18.3388640Z adding 'torch/include/ATen/ops/positive.h' 2025-07-24T03:55:18.3389610Z adding 'torch/include/ATen/ops/positive_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3390490Z adding 'torch/include/ATen/ops/positive_native.h' 2025-07-24T03:55:18.3391390Z adding 'torch/include/ATen/ops/positive_ops.h' 2025-07-24T03:55:18.3392400Z adding 'torch/include/ATen/ops/pow.h' 2025-07-24T03:55:18.3393460Z adding 'torch/include/ATen/ops/pow_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3394370Z adding 'torch/include/ATen/ops/pow_cpu_dispatch.h' 2025-07-24T03:55:18.3395270Z adding 'torch/include/ATen/ops/pow_cuda_dispatch.h' 2025-07-24T03:55:18.3396150Z adding 'torch/include/ATen/ops/pow_meta.h' 2025-07-24T03:55:18.3397020Z adding 'torch/include/ATen/ops/pow_meta_dispatch.h' 2025-07-24T03:55:18.3398000Z adding 'torch/include/ATen/ops/pow_mps_dispatch.h' 2025-07-24T03:55:18.3398930Z adding 'torch/include/ATen/ops/pow_native.h' 2025-07-24T03:55:18.3400120Z adding 'torch/include/ATen/ops/pow_ops.h' 2025-07-24T03:55:18.3400990Z adding 'torch/include/ATen/ops/prelu.h' 2025-07-24T03:55:18.3402060Z adding 'torch/include/ATen/ops/prelu_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3402830Z adding 'torch/include/ATen/ops/prelu_native.h' 2025-07-24T03:55:18.3403720Z adding 'torch/include/ATen/ops/prelu_ops.h' 2025-07-24T03:55:18.3404740Z adding 'torch/include/ATen/ops/prod.h' 2025-07-24T03:55:18.3405860Z adding 'torch/include/ATen/ops/prod_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3406790Z adding 'torch/include/ATen/ops/prod_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3407630Z adding 'torch/include/ATen/ops/prod_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3408810Z adding 'torch/include/ATen/ops/prod_cpu_dispatch.h' 2025-07-24T03:55:18.3409790Z adding 'torch/include/ATen/ops/prod_cuda_dispatch.h' 2025-07-24T03:55:18.3410650Z adding 'torch/include/ATen/ops/prod_meta.h' 2025-07-24T03:55:18.3411540Z adding 'torch/include/ATen/ops/prod_meta_dispatch.h' 2025-07-24T03:55:18.3412400Z adding 'torch/include/ATen/ops/prod_mps_dispatch.h' 2025-07-24T03:55:18.3413410Z adding 'torch/include/ATen/ops/prod_native.h' 2025-07-24T03:55:18.3414540Z adding 'torch/include/ATen/ops/prod_ops.h' 2025-07-24T03:55:18.3415420Z adding 'torch/include/ATen/ops/promote_types.h' 2025-07-24T03:55:18.3416370Z adding 'torch/include/ATen/ops/promote_types_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3417220Z adding 'torch/include/ATen/ops/promote_types_native.h' 2025-07-24T03:55:18.3418120Z adding 'torch/include/ATen/ops/promote_types_ops.h' 2025-07-24T03:55:18.3419100Z adding 'torch/include/ATen/ops/put.h' 2025-07-24T03:55:18.3420010Z adding 'torch/include/ATen/ops/put_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3420900Z adding 'torch/include/ATen/ops/put_cpu_dispatch.h' 2025-07-24T03:55:18.3421720Z adding 'torch/include/ATen/ops/put_cuda_dispatch.h' 2025-07-24T03:55:18.3422550Z adding 'torch/include/ATen/ops/put_meta_dispatch.h' 2025-07-24T03:55:18.3423400Z adding 'torch/include/ATen/ops/put_native.h' 2025-07-24T03:55:18.3424520Z adding 'torch/include/ATen/ops/put_ops.h' 2025-07-24T03:55:18.3425430Z adding 'torch/include/ATen/ops/q_per_channel_axis.h' 2025-07-24T03:55:18.3426270Z adding 'torch/include/ATen/ops/q_per_channel_axis_native.h' 2025-07-24T03:55:18.3427150Z adding 'torch/include/ATen/ops/q_per_channel_axis_ops.h' 2025-07-24T03:55:18.3428140Z adding 'torch/include/ATen/ops/q_per_channel_scales.h' 2025-07-24T03:55:18.3429120Z adding 'torch/include/ATen/ops/q_per_channel_scales_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3429880Z adding 'torch/include/ATen/ops/q_per_channel_scales_native.h' 2025-07-24T03:55:18.3430800Z adding 'torch/include/ATen/ops/q_per_channel_scales_ops.h' 2025-07-24T03:55:18.3431820Z adding 'torch/include/ATen/ops/q_per_channel_zero_points.h' 2025-07-24T03:55:18.3432840Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3433580Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_native.h' 2025-07-24T03:55:18.3434520Z adding 'torch/include/ATen/ops/q_per_channel_zero_points_ops.h' 2025-07-24T03:55:18.3435430Z adding 'torch/include/ATen/ops/q_scale.h' 2025-07-24T03:55:18.3436260Z adding 'torch/include/ATen/ops/q_scale_native.h' 2025-07-24T03:55:18.3437160Z adding 'torch/include/ATen/ops/q_scale_ops.h' 2025-07-24T03:55:18.3438040Z adding 'torch/include/ATen/ops/q_zero_point.h' 2025-07-24T03:55:18.3438990Z adding 'torch/include/ATen/ops/q_zero_point_native.h' 2025-07-24T03:55:18.3439900Z adding 'torch/include/ATen/ops/q_zero_point_ops.h' 2025-07-24T03:55:18.3440780Z adding 'torch/include/ATen/ops/qr.h' 2025-07-24T03:55:18.3441760Z adding 'torch/include/ATen/ops/qr_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3442650Z adding 'torch/include/ATen/ops/qr_native.h' 2025-07-24T03:55:18.3443620Z adding 'torch/include/ATen/ops/qr_ops.h' 2025-07-24T03:55:18.3444490Z adding 'torch/include/ATen/ops/qscheme.h' 2025-07-24T03:55:18.3445290Z adding 'torch/include/ATen/ops/qscheme_native.h' 2025-07-24T03:55:18.3446300Z adding 'torch/include/ATen/ops/qscheme_ops.h' 2025-07-24T03:55:18.3447350Z adding 'torch/include/ATen/ops/quantile.h' 2025-07-24T03:55:18.3448430Z adding 'torch/include/ATen/ops/quantile_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3449230Z adding 'torch/include/ATen/ops/quantile_native.h' 2025-07-24T03:55:18.3450430Z adding 'torch/include/ATen/ops/quantile_ops.h' 2025-07-24T03:55:18.3451410Z adding 'torch/include/ATen/ops/quantize_per_channel.h' 2025-07-24T03:55:18.3452420Z adding 'torch/include/ATen/ops/quantize_per_channel_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3453240Z adding 'torch/include/ATen/ops/quantize_per_channel_cpu_dispatch.h' 2025-07-24T03:55:18.3454240Z adding 'torch/include/ATen/ops/quantize_per_channel_cuda_dispatch.h' 2025-07-24T03:55:18.3455100Z adding 'torch/include/ATen/ops/quantize_per_channel_native.h' 2025-07-24T03:55:18.3456070Z adding 'torch/include/ATen/ops/quantize_per_channel_ops.h' 2025-07-24T03:55:18.3457190Z adding 'torch/include/ATen/ops/quantize_per_tensor.h' 2025-07-24T03:55:18.3458360Z adding 'torch/include/ATen/ops/quantize_per_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3459250Z adding 'torch/include/ATen/ops/quantize_per_tensor_cpu_dispatch.h' 2025-07-24T03:55:18.3460150Z adding 'torch/include/ATen/ops/quantize_per_tensor_cuda_dispatch.h' 2025-07-24T03:55:18.3461060Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic.h' 2025-07-24T03:55:18.3462190Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3463020Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cpu_dispatch.h' 2025-07-24T03:55:18.3463840Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_cuda_dispatch.h' 2025-07-24T03:55:18.3464700Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_native.h' 2025-07-24T03:55:18.3465790Z adding 'torch/include/ATen/ops/quantize_per_tensor_dynamic_ops.h' 2025-07-24T03:55:18.3466710Z adding 'torch/include/ATen/ops/quantize_per_tensor_native.h' 2025-07-24T03:55:18.3467950Z adding 'torch/include/ATen/ops/quantize_per_tensor_ops.h' 2025-07-24T03:55:18.3468950Z adding 'torch/include/ATen/ops/quantized_batch_norm.h' 2025-07-24T03:55:18.3470090Z adding 'torch/include/ATen/ops/quantized_batch_norm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3470880Z adding 'torch/include/ATen/ops/quantized_batch_norm_native.h' 2025-07-24T03:55:18.3471880Z adding 'torch/include/ATen/ops/quantized_batch_norm_ops.h' 2025-07-24T03:55:18.3472790Z adding 'torch/include/ATen/ops/quantized_gru_cell.h' 2025-07-24T03:55:18.3473910Z adding 'torch/include/ATen/ops/quantized_gru_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3474690Z adding 'torch/include/ATen/ops/quantized_gru_cell_native.h' 2025-07-24T03:55:18.3475670Z adding 'torch/include/ATen/ops/quantized_gru_cell_ops.h' 2025-07-24T03:55:18.3476620Z adding 'torch/include/ATen/ops/quantized_lstm_cell.h' 2025-07-24T03:55:18.3477750Z adding 'torch/include/ATen/ops/quantized_lstm_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3478550Z adding 'torch/include/ATen/ops/quantized_lstm_cell_native.h' 2025-07-24T03:55:18.3479540Z adding 'torch/include/ATen/ops/quantized_lstm_cell_ops.h' 2025-07-24T03:55:18.3480530Z adding 'torch/include/ATen/ops/quantized_max_pool1d.h' 2025-07-24T03:55:18.3481660Z adding 'torch/include/ATen/ops/quantized_max_pool1d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3482480Z adding 'torch/include/ATen/ops/quantized_max_pool1d_native.h' 2025-07-24T03:55:18.3483490Z adding 'torch/include/ATen/ops/quantized_max_pool1d_ops.h' 2025-07-24T03:55:18.3484450Z adding 'torch/include/ATen/ops/quantized_max_pool2d.h' 2025-07-24T03:55:18.3485560Z adding 'torch/include/ATen/ops/quantized_max_pool2d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3486370Z adding 'torch/include/ATen/ops/quantized_max_pool2d_native.h' 2025-07-24T03:55:18.3487360Z adding 'torch/include/ATen/ops/quantized_max_pool2d_ops.h' 2025-07-24T03:55:18.3488300Z adding 'torch/include/ATen/ops/quantized_max_pool3d.h' 2025-07-24T03:55:18.3489460Z adding 'torch/include/ATen/ops/quantized_max_pool3d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3490260Z adding 'torch/include/ATen/ops/quantized_max_pool3d_native.h' 2025-07-24T03:55:18.3491230Z adding 'torch/include/ATen/ops/quantized_max_pool3d_ops.h' 2025-07-24T03:55:18.3492150Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell.h' 2025-07-24T03:55:18.3493270Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3494040Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_native.h' 2025-07-24T03:55:18.3495020Z adding 'torch/include/ATen/ops/quantized_rnn_relu_cell_ops.h' 2025-07-24T03:55:18.3495920Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell.h' 2025-07-24T03:55:18.3497010Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3497780Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_native.h' 2025-07-24T03:55:18.3498750Z adding 'torch/include/ATen/ops/quantized_rnn_tanh_cell_ops.h' 2025-07-24T03:55:18.3499620Z adding 'torch/include/ATen/ops/rad2deg.h' 2025-07-24T03:55:18.3500700Z adding 'torch/include/ATen/ops/rad2deg_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3501490Z adding 'torch/include/ATen/ops/rad2deg_native.h' 2025-07-24T03:55:18.3502460Z adding 'torch/include/ATen/ops/rad2deg_ops.h' 2025-07-24T03:55:18.3504760Z adding 'torch/include/ATen/ops/rand.h' 2025-07-24T03:55:18.3505950Z adding 'torch/include/ATen/ops/rand_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3506810Z adding 'torch/include/ATen/ops/rand_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3507740Z adding 'torch/include/ATen/ops/rand_like.h' 2025-07-24T03:55:18.3508740Z adding 'torch/include/ATen/ops/rand_like_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3509650Z adding 'torch/include/ATen/ops/rand_like_native.h' 2025-07-24T03:55:18.3510640Z adding 'torch/include/ATen/ops/rand_like_ops.h' 2025-07-24T03:55:18.3511570Z adding 'torch/include/ATen/ops/rand_native.h' 2025-07-24T03:55:18.3512870Z adding 'torch/include/ATen/ops/rand_ops.h' 2025-07-24T03:55:18.3515330Z adding 'torch/include/ATen/ops/randint.h' 2025-07-24T03:55:18.3516520Z adding 'torch/include/ATen/ops/randint_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3518410Z adding 'torch/include/ATen/ops/randint_like.h' 2025-07-24T03:55:18.3519410Z adding 'torch/include/ATen/ops/randint_like_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3520370Z adding 'torch/include/ATen/ops/randint_like_native.h' 2025-07-24T03:55:18.3521580Z adding 'torch/include/ATen/ops/randint_like_ops.h' 2025-07-24T03:55:18.3522510Z adding 'torch/include/ATen/ops/randint_native.h' 2025-07-24T03:55:18.3523800Z adding 'torch/include/ATen/ops/randint_ops.h' 2025-07-24T03:55:18.3526240Z adding 'torch/include/ATen/ops/randn.h' 2025-07-24T03:55:18.3527230Z adding 'torch/include/ATen/ops/randn_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3528170Z adding 'torch/include/ATen/ops/randn_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3529070Z adding 'torch/include/ATen/ops/randn_like.h' 2025-07-24T03:55:18.3530200Z adding 'torch/include/ATen/ops/randn_like_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3531130Z adding 'torch/include/ATen/ops/randn_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T03:55:18.3531890Z adding 'torch/include/ATen/ops/randn_like_native.h' 2025-07-24T03:55:18.3532890Z adding 'torch/include/ATen/ops/randn_like_ops.h' 2025-07-24T03:55:18.3533910Z adding 'torch/include/ATen/ops/randn_native.h' 2025-07-24T03:55:18.3535240Z adding 'torch/include/ATen/ops/randn_ops.h' 2025-07-24T03:55:18.3536220Z adding 'torch/include/ATen/ops/random.h' 2025-07-24T03:55:18.3537260Z adding 'torch/include/ATen/ops/random_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3538200Z adding 'torch/include/ATen/ops/random_cpu_dispatch.h' 2025-07-24T03:55:18.3539010Z adding 'torch/include/ATen/ops/random_cuda_dispatch.h' 2025-07-24T03:55:18.3539830Z adding 'torch/include/ATen/ops/random_meta_dispatch.h' 2025-07-24T03:55:18.3540650Z adding 'torch/include/ATen/ops/random_mps_dispatch.h' 2025-07-24T03:55:18.3541670Z adding 'torch/include/ATen/ops/random_native.h' 2025-07-24T03:55:18.3542910Z adding 'torch/include/ATen/ops/random_ops.h' 2025-07-24T03:55:18.3544520Z adding 'torch/include/ATen/ops/randperm.h' 2025-07-24T03:55:18.3545450Z adding 'torch/include/ATen/ops/randperm_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3546380Z adding 'torch/include/ATen/ops/randperm_cpu_dispatch.h' 2025-07-24T03:55:18.3547260Z adding 'torch/include/ATen/ops/randperm_cuda_dispatch.h' 2025-07-24T03:55:18.3548090Z adding 'torch/include/ATen/ops/randperm_mps_dispatch.h' 2025-07-24T03:55:18.3548950Z adding 'torch/include/ATen/ops/randperm_native.h' 2025-07-24T03:55:18.3550150Z adding 'torch/include/ATen/ops/randperm_ops.h' 2025-07-24T03:55:18.3551230Z adding 'torch/include/ATen/ops/range.h' 2025-07-24T03:55:18.3552240Z adding 'torch/include/ATen/ops/range_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3553070Z adding 'torch/include/ATen/ops/range_cpu_dispatch.h' 2025-07-24T03:55:18.3554000Z adding 'torch/include/ATen/ops/range_cuda_dispatch.h' 2025-07-24T03:55:18.3554870Z adding 'torch/include/ATen/ops/range_meta_dispatch.h' 2025-07-24T03:55:18.3555670Z adding 'torch/include/ATen/ops/range_mps_dispatch.h' 2025-07-24T03:55:18.3556540Z adding 'torch/include/ATen/ops/range_native.h' 2025-07-24T03:55:18.3560960Z adding 'torch/include/ATen/ops/range_ops.h' 2025-07-24T03:55:18.3561190Z adding 'torch/include/ATen/ops/ravel.h' 2025-07-24T03:55:18.3561360Z adding 'torch/include/ATen/ops/ravel_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3561440Z adding 'torch/include/ATen/ops/ravel_native.h' 2025-07-24T03:55:18.3561550Z adding 'torch/include/ATen/ops/ravel_ops.h' 2025-07-24T03:55:18.3562210Z adding 'torch/include/ATen/ops/real.h' 2025-07-24T03:55:18.3563190Z adding 'torch/include/ATen/ops/real_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3563960Z adding 'torch/include/ATen/ops/real_native.h' 2025-07-24T03:55:18.3564980Z adding 'torch/include/ATen/ops/real_ops.h' 2025-07-24T03:55:18.3565940Z adding 'torch/include/ATen/ops/reciprocal.h' 2025-07-24T03:55:18.3566910Z adding 'torch/include/ATen/ops/reciprocal_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3567690Z adding 'torch/include/ATen/ops/reciprocal_cpu_dispatch.h' 2025-07-24T03:55:18.3568620Z adding 'torch/include/ATen/ops/reciprocal_cuda_dispatch.h' 2025-07-24T03:55:18.3569460Z adding 'torch/include/ATen/ops/reciprocal_meta.h' 2025-07-24T03:55:18.3570280Z adding 'torch/include/ATen/ops/reciprocal_meta_dispatch.h' 2025-07-24T03:55:18.3571110Z adding 'torch/include/ATen/ops/reciprocal_mps_dispatch.h' 2025-07-24T03:55:18.3572090Z adding 'torch/include/ATen/ops/reciprocal_native.h' 2025-07-24T03:55:18.3573050Z adding 'torch/include/ATen/ops/reciprocal_ops.h' 2025-07-24T03:55:18.3573910Z adding 'torch/include/ATen/ops/record_stream.h' 2025-07-24T03:55:18.3574830Z adding 'torch/include/ATen/ops/record_stream_cuda_dispatch.h' 2025-07-24T03:55:18.3575750Z adding 'torch/include/ATen/ops/record_stream_native.h' 2025-07-24T03:55:18.3576630Z adding 'torch/include/ATen/ops/record_stream_ops.h' 2025-07-24T03:55:18.3577460Z adding 'torch/include/ATen/ops/refine_names.h' 2025-07-24T03:55:18.3578410Z adding 'torch/include/ATen/ops/refine_names_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3579440Z adding 'torch/include/ATen/ops/refine_names_native.h' 2025-07-24T03:55:18.3580330Z adding 'torch/include/ATen/ops/refine_names_ops.h' 2025-07-24T03:55:18.3581360Z adding 'torch/include/ATen/ops/reflection_pad1d.h' 2025-07-24T03:55:18.3582490Z adding 'torch/include/ATen/ops/reflection_pad1d_backward.h' 2025-07-24T03:55:18.3583660Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3584490Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3585370Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3586200Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta.h' 2025-07-24T03:55:18.3587230Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_meta_dispatch.h' 2025-07-24T03:55:18.3588100Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_mps_dispatch.h' 2025-07-24T03:55:18.3588970Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_native.h' 2025-07-24T03:55:18.3589950Z adding 'torch/include/ATen/ops/reflection_pad1d_backward_ops.h' 2025-07-24T03:55:18.3591050Z adding 'torch/include/ATen/ops/reflection_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3591850Z adding 'torch/include/ATen/ops/reflection_pad1d_cpu_dispatch.h' 2025-07-24T03:55:18.3592680Z adding 'torch/include/ATen/ops/reflection_pad1d_cuda_dispatch.h' 2025-07-24T03:55:18.3593520Z adding 'torch/include/ATen/ops/reflection_pad1d_meta.h' 2025-07-24T03:55:18.3594480Z adding 'torch/include/ATen/ops/reflection_pad1d_meta_dispatch.h' 2025-07-24T03:55:18.3595320Z adding 'torch/include/ATen/ops/reflection_pad1d_mps_dispatch.h' 2025-07-24T03:55:18.3596200Z adding 'torch/include/ATen/ops/reflection_pad1d_native.h' 2025-07-24T03:55:18.3597150Z adding 'torch/include/ATen/ops/reflection_pad1d_ops.h' 2025-07-24T03:55:18.3598290Z adding 'torch/include/ATen/ops/reflection_pad2d.h' 2025-07-24T03:55:18.3599440Z adding 'torch/include/ATen/ops/reflection_pad2d_backward.h' 2025-07-24T03:55:18.3600460Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3601290Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3602280Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_mps_dispatch.h' 2025-07-24T03:55:18.3603160Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_native.h' 2025-07-24T03:55:18.3604120Z adding 'torch/include/ATen/ops/reflection_pad2d_backward_ops.h' 2025-07-24T03:55:18.3604990Z adding 'torch/include/ATen/ops/reflection_pad2d_cpu_dispatch.h' 2025-07-24T03:55:18.3605970Z adding 'torch/include/ATen/ops/reflection_pad2d_cuda_dispatch.h' 2025-07-24T03:55:18.3606840Z adding 'torch/include/ATen/ops/reflection_pad2d_mps_dispatch.h' 2025-07-24T03:55:18.3607680Z adding 'torch/include/ATen/ops/reflection_pad2d_native.h' 2025-07-24T03:55:18.3608640Z adding 'torch/include/ATen/ops/reflection_pad2d_ops.h' 2025-07-24T03:55:18.3609760Z adding 'torch/include/ATen/ops/reflection_pad3d.h' 2025-07-24T03:55:18.3610880Z adding 'torch/include/ATen/ops/reflection_pad3d_backward.h' 2025-07-24T03:55:18.3611940Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3612730Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3613730Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3614570Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta.h' 2025-07-24T03:55:18.3615470Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_meta_dispatch.h' 2025-07-24T03:55:18.3616320Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_mps_dispatch.h' 2025-07-24T03:55:18.3617310Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_native.h' 2025-07-24T03:55:18.3618270Z adding 'torch/include/ATen/ops/reflection_pad3d_backward_ops.h' 2025-07-24T03:55:18.3619260Z adding 'torch/include/ATen/ops/reflection_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3620070Z adding 'torch/include/ATen/ops/reflection_pad3d_cpu_dispatch.h' 2025-07-24T03:55:18.3621000Z adding 'torch/include/ATen/ops/reflection_pad3d_cuda_dispatch.h' 2025-07-24T03:55:18.3621850Z adding 'torch/include/ATen/ops/reflection_pad3d_meta.h' 2025-07-24T03:55:18.3622710Z adding 'torch/include/ATen/ops/reflection_pad3d_meta_dispatch.h' 2025-07-24T03:55:18.3623530Z adding 'torch/include/ATen/ops/reflection_pad3d_mps_dispatch.h' 2025-07-24T03:55:18.3624490Z adding 'torch/include/ATen/ops/reflection_pad3d_native.h' 2025-07-24T03:55:18.3625460Z adding 'torch/include/ATen/ops/reflection_pad3d_ops.h' 2025-07-24T03:55:18.3626320Z adding 'torch/include/ATen/ops/relu.h' 2025-07-24T03:55:18.3627170Z adding 'torch/include/ATen/ops/relu6.h' 2025-07-24T03:55:18.3628240Z adding 'torch/include/ATen/ops/relu6_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3629000Z adding 'torch/include/ATen/ops/relu6_native.h' 2025-07-24T03:55:18.3629940Z adding 'torch/include/ATen/ops/relu6_ops.h' 2025-07-24T03:55:18.3630870Z adding 'torch/include/ATen/ops/relu_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3631760Z adding 'torch/include/ATen/ops/relu_cpu_dispatch.h' 2025-07-24T03:55:18.3635810Z adding 'torch/include/ATen/ops/relu_cuda_dispatch.h' 2025-07-24T03:55:18.3636370Z adding 'torch/include/ATen/ops/relu_meta_dispatch.h' 2025-07-24T03:55:18.3637200Z adding 'torch/include/ATen/ops/relu_mps_dispatch.h' 2025-07-24T03:55:18.3638170Z adding 'torch/include/ATen/ops/relu_native.h' 2025-07-24T03:55:18.3639150Z adding 'torch/include/ATen/ops/relu_ops.h' 2025-07-24T03:55:18.3640140Z adding 'torch/include/ATen/ops/remainder.h' 2025-07-24T03:55:18.3641150Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3642170Z adding 'torch/include/ATen/ops/remainder_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3642950Z adding 'torch/include/ATen/ops/remainder_cpu_dispatch.h' 2025-07-24T03:55:18.3643760Z adding 'torch/include/ATen/ops/remainder_cuda_dispatch.h' 2025-07-24T03:55:18.3644620Z adding 'torch/include/ATen/ops/remainder_meta.h' 2025-07-24T03:55:18.3645580Z adding 'torch/include/ATen/ops/remainder_meta_dispatch.h' 2025-07-24T03:55:18.3646420Z adding 'torch/include/ATen/ops/remainder_mps_dispatch.h' 2025-07-24T03:55:18.3647270Z adding 'torch/include/ATen/ops/remainder_native.h' 2025-07-24T03:55:18.3648470Z adding 'torch/include/ATen/ops/remainder_ops.h' 2025-07-24T03:55:18.3649410Z adding 'torch/include/ATen/ops/rename.h' 2025-07-24T03:55:18.3650370Z adding 'torch/include/ATen/ops/rename_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3651130Z adding 'torch/include/ATen/ops/rename_native.h' 2025-07-24T03:55:18.3652080Z adding 'torch/include/ATen/ops/rename_ops.h' 2025-07-24T03:55:18.3653090Z adding 'torch/include/ATen/ops/renorm.h' 2025-07-24T03:55:18.3654100Z adding 'torch/include/ATen/ops/renorm_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3654870Z adding 'torch/include/ATen/ops/renorm_cpu_dispatch.h' 2025-07-24T03:55:18.3655730Z adding 'torch/include/ATen/ops/renorm_cuda_dispatch.h' 2025-07-24T03:55:18.3656640Z adding 'torch/include/ATen/ops/renorm_meta.h' 2025-07-24T03:55:18.3657500Z adding 'torch/include/ATen/ops/renorm_meta_dispatch.h' 2025-07-24T03:55:18.3658320Z adding 'torch/include/ATen/ops/renorm_mps_dispatch.h' 2025-07-24T03:55:18.3659170Z adding 'torch/include/ATen/ops/renorm_native.h' 2025-07-24T03:55:18.3660250Z adding 'torch/include/ATen/ops/renorm_ops.h' 2025-07-24T03:55:18.3661280Z adding 'torch/include/ATen/ops/repeat.h' 2025-07-24T03:55:18.3662290Z adding 'torch/include/ATen/ops/repeat_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3663520Z adding 'torch/include/ATen/ops/repeat_interleave.h' 2025-07-24T03:55:18.3664660Z adding 'torch/include/ATen/ops/repeat_interleave_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3665580Z adding 'torch/include/ATen/ops/repeat_interleave_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3666390Z adding 'torch/include/ATen/ops/repeat_interleave_cpu_dispatch.h' 2025-07-24T03:55:18.3667210Z adding 'torch/include/ATen/ops/repeat_interleave_cuda_dispatch.h' 2025-07-24T03:55:18.3668120Z adding 'torch/include/ATen/ops/repeat_interleave_mps_dispatch.h' 2025-07-24T03:55:18.3669050Z adding 'torch/include/ATen/ops/repeat_interleave_native.h' 2025-07-24T03:55:18.3670120Z adding 'torch/include/ATen/ops/repeat_interleave_ops.h' 2025-07-24T03:55:18.3670980Z adding 'torch/include/ATen/ops/repeat_mps_dispatch.h' 2025-07-24T03:55:18.3671930Z adding 'torch/include/ATen/ops/repeat_native.h' 2025-07-24T03:55:18.3672880Z adding 'torch/include/ATen/ops/repeat_ops.h' 2025-07-24T03:55:18.3673940Z adding 'torch/include/ATen/ops/replication_pad1d.h' 2025-07-24T03:55:18.3675050Z adding 'torch/include/ATen/ops/replication_pad1d_backward.h' 2025-07-24T03:55:18.3676230Z adding 'torch/include/ATen/ops/replication_pad1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3677050Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3677910Z adding 'torch/include/ATen/ops/replication_pad1d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3678750Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta.h' 2025-07-24T03:55:18.3679720Z adding 'torch/include/ATen/ops/replication_pad1d_backward_meta_dispatch.h' 2025-07-24T03:55:18.3680580Z adding 'torch/include/ATen/ops/replication_pad1d_backward_mps_dispatch.h' 2025-07-24T03:55:18.3681440Z adding 'torch/include/ATen/ops/replication_pad1d_backward_native.h' 2025-07-24T03:55:18.3682410Z adding 'torch/include/ATen/ops/replication_pad1d_backward_ops.h' 2025-07-24T03:55:18.3683540Z adding 'torch/include/ATen/ops/replication_pad1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3684330Z adding 'torch/include/ATen/ops/replication_pad1d_cpu_dispatch.h' 2025-07-24T03:55:18.3685180Z adding 'torch/include/ATen/ops/replication_pad1d_cuda_dispatch.h' 2025-07-24T03:55:18.3686020Z adding 'torch/include/ATen/ops/replication_pad1d_meta.h' 2025-07-24T03:55:18.3687050Z adding 'torch/include/ATen/ops/replication_pad1d_meta_dispatch.h' 2025-07-24T03:55:18.3687890Z adding 'torch/include/ATen/ops/replication_pad1d_mps_dispatch.h' 2025-07-24T03:55:18.3688750Z adding 'torch/include/ATen/ops/replication_pad1d_native.h' 2025-07-24T03:55:18.3689680Z adding 'torch/include/ATen/ops/replication_pad1d_ops.h' 2025-07-24T03:55:18.3690810Z adding 'torch/include/ATen/ops/replication_pad2d.h' 2025-07-24T03:55:18.3691950Z adding 'torch/include/ATen/ops/replication_pad2d_backward.h' 2025-07-24T03:55:18.3692910Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3693790Z adding 'torch/include/ATen/ops/replication_pad2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3694750Z adding 'torch/include/ATen/ops/replication_pad2d_backward_mps_dispatch.h' 2025-07-24T03:55:18.3695630Z adding 'torch/include/ATen/ops/replication_pad2d_backward_native.h' 2025-07-24T03:55:18.3696600Z adding 'torch/include/ATen/ops/replication_pad2d_backward_ops.h' 2025-07-24T03:55:18.3697620Z adding 'torch/include/ATen/ops/replication_pad2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3698510Z adding 'torch/include/ATen/ops/replication_pad2d_cpu_dispatch.h' 2025-07-24T03:55:18.3699380Z adding 'torch/include/ATen/ops/replication_pad2d_cuda_dispatch.h' 2025-07-24T03:55:18.3700250Z adding 'torch/include/ATen/ops/replication_pad2d_meta.h' 2025-07-24T03:55:18.3701100Z adding 'torch/include/ATen/ops/replication_pad2d_meta_dispatch.h' 2025-07-24T03:55:18.3702040Z adding 'torch/include/ATen/ops/replication_pad2d_mps_dispatch.h' 2025-07-24T03:55:18.3702960Z adding 'torch/include/ATen/ops/replication_pad2d_native.h' 2025-07-24T03:55:18.3704000Z adding 'torch/include/ATen/ops/replication_pad2d_ops.h' 2025-07-24T03:55:18.3705070Z adding 'torch/include/ATen/ops/replication_pad3d.h' 2025-07-24T03:55:18.3706370Z adding 'torch/include/ATen/ops/replication_pad3d_backward.h' 2025-07-24T03:55:18.3707380Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3708280Z adding 'torch/include/ATen/ops/replication_pad3d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3709170Z adding 'torch/include/ATen/ops/replication_pad3d_backward_mps_dispatch.h' 2025-07-24T03:55:18.3710190Z adding 'torch/include/ATen/ops/replication_pad3d_backward_native.h' 2025-07-24T03:55:18.3711230Z adding 'torch/include/ATen/ops/replication_pad3d_backward_ops.h' 2025-07-24T03:55:18.3712260Z adding 'torch/include/ATen/ops/replication_pad3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3713040Z adding 'torch/include/ATen/ops/replication_pad3d_cpu_dispatch.h' 2025-07-24T03:55:18.3713980Z adding 'torch/include/ATen/ops/replication_pad3d_cuda_dispatch.h' 2025-07-24T03:55:18.3714810Z adding 'torch/include/ATen/ops/replication_pad3d_meta.h' 2025-07-24T03:55:18.3715670Z adding 'torch/include/ATen/ops/replication_pad3d_meta_dispatch.h' 2025-07-24T03:55:18.3716470Z adding 'torch/include/ATen/ops/replication_pad3d_mps_dispatch.h' 2025-07-24T03:55:18.3717460Z adding 'torch/include/ATen/ops/replication_pad3d_native.h' 2025-07-24T03:55:18.3718410Z adding 'torch/include/ATen/ops/replication_pad3d_ops.h' 2025-07-24T03:55:18.3719230Z adding 'torch/include/ATen/ops/requires_grad.h' 2025-07-24T03:55:18.3720200Z adding 'torch/include/ATen/ops/requires_grad_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3721090Z adding 'torch/include/ATen/ops/requires_grad_native.h' 2025-07-24T03:55:18.3721980Z adding 'torch/include/ATen/ops/requires_grad_ops.h' 2025-07-24T03:55:18.3722880Z adding 'torch/include/ATen/ops/reshape.h' 2025-07-24T03:55:18.3723730Z adding 'torch/include/ATen/ops/reshape_as.h' 2025-07-24T03:55:18.3724810Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3725740Z adding 'torch/include/ATen/ops/reshape_as_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T03:55:18.3726460Z adding 'torch/include/ATen/ops/reshape_as_native.h' 2025-07-24T03:55:18.3727380Z adding 'torch/include/ATen/ops/reshape_as_ops.h' 2025-07-24T03:55:18.3728490Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3729450Z adding 'torch/include/ATen/ops/reshape_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T03:55:18.3730130Z adding 'torch/include/ATen/ops/reshape_native.h' 2025-07-24T03:55:18.3731040Z adding 'torch/include/ATen/ops/reshape_ops.h' 2025-07-24T03:55:18.3732250Z adding 'torch/include/ATen/ops/resize.h' 2025-07-24T03:55:18.3733240Z adding 'torch/include/ATen/ops/resize_as.h' 2025-07-24T03:55:18.3734240Z adding 'torch/include/ATen/ops/resize_as_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3735030Z adding 'torch/include/ATen/ops/resize_as_native.h' 2025-07-24T03:55:18.3736160Z adding 'torch/include/ATen/ops/resize_as_ops.h' 2025-07-24T03:55:18.3737130Z adding 'torch/include/ATen/ops/resize_as_sparse.h' 2025-07-24T03:55:18.3738100Z adding 'torch/include/ATen/ops/resize_as_sparse_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3738910Z adding 'torch/include/ATen/ops/resize_as_sparse_meta_dispatch.h' 2025-07-24T03:55:18.3739870Z adding 'torch/include/ATen/ops/resize_as_sparse_native.h' 2025-07-24T03:55:18.3740860Z adding 'torch/include/ATen/ops/resize_as_sparse_ops.h' 2025-07-24T03:55:18.3741860Z adding 'torch/include/ATen/ops/resize_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3742710Z adding 'torch/include/ATen/ops/resize_cpu_dispatch.h' 2025-07-24T03:55:18.3743620Z adding 'torch/include/ATen/ops/resize_cuda_dispatch.h' 2025-07-24T03:55:18.3744450Z adding 'torch/include/ATen/ops/resize_meta_dispatch.h' 2025-07-24T03:55:18.3745270Z adding 'torch/include/ATen/ops/resize_mps_dispatch.h' 2025-07-24T03:55:18.3746140Z adding 'torch/include/ATen/ops/resize_native.h' 2025-07-24T03:55:18.3747270Z adding 'torch/include/ATen/ops/resize_ops.h' 2025-07-24T03:55:18.3748160Z adding 'torch/include/ATen/ops/resolve_conj.h' 2025-07-24T03:55:18.3749170Z adding 'torch/include/ATen/ops/resolve_conj_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3749890Z adding 'torch/include/ATen/ops/resolve_conj_native.h' 2025-07-24T03:55:18.3750880Z adding 'torch/include/ATen/ops/resolve_conj_ops.h' 2025-07-24T03:55:18.3751750Z adding 'torch/include/ATen/ops/resolve_neg.h' 2025-07-24T03:55:18.3752690Z adding 'torch/include/ATen/ops/resolve_neg_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3753440Z adding 'torch/include/ATen/ops/resolve_neg_native.h' 2025-07-24T03:55:18.3754420Z adding 'torch/include/ATen/ops/resolve_neg_ops.h' 2025-07-24T03:55:18.3755350Z adding 'torch/include/ATen/ops/result_type.h' 2025-07-24T03:55:18.3756360Z adding 'torch/include/ATen/ops/result_type_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3757120Z adding 'torch/include/ATen/ops/result_type_native.h' 2025-07-24T03:55:18.3758260Z adding 'torch/include/ATen/ops/result_type_ops.h' 2025-07-24T03:55:18.3759090Z adding 'torch/include/ATen/ops/retain_grad.h' 2025-07-24T03:55:18.3760040Z adding 'torch/include/ATen/ops/retain_grad_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3760800Z adding 'torch/include/ATen/ops/retain_grad_native.h' 2025-07-24T03:55:18.3761770Z adding 'torch/include/ATen/ops/retain_grad_ops.h' 2025-07-24T03:55:18.3762600Z adding 'torch/include/ATen/ops/retains_grad.h' 2025-07-24T03:55:18.3763540Z adding 'torch/include/ATen/ops/retains_grad_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3764270Z adding 'torch/include/ATen/ops/retains_grad_native.h' 2025-07-24T03:55:18.3765250Z adding 'torch/include/ATen/ops/retains_grad_ops.h' 2025-07-24T03:55:18.3766230Z adding 'torch/include/ATen/ops/rms_norm.h' 2025-07-24T03:55:18.3767210Z adding 'torch/include/ATen/ops/rms_norm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3767990Z adding 'torch/include/ATen/ops/rms_norm_native.h' 2025-07-24T03:55:18.3769010Z adding 'torch/include/ATen/ops/rms_norm_ops.h' 2025-07-24T03:55:18.3769950Z adding 'torch/include/ATen/ops/rnn_relu.h' 2025-07-24T03:55:18.3770860Z adding 'torch/include/ATen/ops/rnn_relu_cell.h' 2025-07-24T03:55:18.3771860Z adding 'torch/include/ATen/ops/rnn_relu_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3772700Z adding 'torch/include/ATen/ops/rnn_relu_cell_native.h' 2025-07-24T03:55:18.3773630Z adding 'torch/include/ATen/ops/rnn_relu_cell_ops.h' 2025-07-24T03:55:18.3774610Z adding 'torch/include/ATen/ops/rnn_relu_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3775400Z adding 'torch/include/ATen/ops/rnn_relu_native.h' 2025-07-24T03:55:18.3776580Z adding 'torch/include/ATen/ops/rnn_relu_ops.h' 2025-07-24T03:55:18.3777460Z adding 'torch/include/ATen/ops/rnn_tanh.h' 2025-07-24T03:55:18.3778370Z adding 'torch/include/ATen/ops/rnn_tanh_cell.h' 2025-07-24T03:55:18.3779340Z adding 'torch/include/ATen/ops/rnn_tanh_cell_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3780200Z adding 'torch/include/ATen/ops/rnn_tanh_cell_native.h' 2025-07-24T03:55:18.3781140Z adding 'torch/include/ATen/ops/rnn_tanh_cell_ops.h' 2025-07-24T03:55:18.3782150Z adding 'torch/include/ATen/ops/rnn_tanh_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3782900Z adding 'torch/include/ATen/ops/rnn_tanh_native.h' 2025-07-24T03:55:18.3784010Z adding 'torch/include/ATen/ops/rnn_tanh_ops.h' 2025-07-24T03:55:18.3785060Z adding 'torch/include/ATen/ops/roll.h' 2025-07-24T03:55:18.3786090Z adding 'torch/include/ATen/ops/roll_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3786860Z adding 'torch/include/ATen/ops/roll_cpu_dispatch.h' 2025-07-24T03:55:18.3787800Z adding 'torch/include/ATen/ops/roll_cuda_dispatch.h' 2025-07-24T03:55:18.3788600Z adding 'torch/include/ATen/ops/roll_mps_dispatch.h' 2025-07-24T03:55:18.3789420Z adding 'torch/include/ATen/ops/roll_native.h' 2025-07-24T03:55:18.3790420Z adding 'torch/include/ATen/ops/roll_ops.h' 2025-07-24T03:55:18.3791410Z adding 'torch/include/ATen/ops/rot90.h' 2025-07-24T03:55:18.3792400Z adding 'torch/include/ATen/ops/rot90_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3793160Z adding 'torch/include/ATen/ops/rot90_native.h' 2025-07-24T03:55:18.3794130Z adding 'torch/include/ATen/ops/rot90_ops.h' 2025-07-24T03:55:18.3795140Z adding 'torch/include/ATen/ops/round.h' 2025-07-24T03:55:18.3796170Z adding 'torch/include/ATen/ops/round_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3796940Z adding 'torch/include/ATen/ops/round_cpu_dispatch.h' 2025-07-24T03:55:18.3797800Z adding 'torch/include/ATen/ops/round_cuda_dispatch.h' 2025-07-24T03:55:18.3798740Z adding 'torch/include/ATen/ops/round_meta.h' 2025-07-24T03:55:18.3799630Z adding 'torch/include/ATen/ops/round_meta_dispatch.h' 2025-07-24T03:55:18.3800440Z adding 'torch/include/ATen/ops/round_mps_dispatch.h' 2025-07-24T03:55:18.3801320Z adding 'torch/include/ATen/ops/round_native.h' 2025-07-24T03:55:18.3802500Z adding 'torch/include/ATen/ops/round_ops.h' 2025-07-24T03:55:18.3803390Z adding 'torch/include/ATen/ops/row_indices.h' 2025-07-24T03:55:18.3804320Z adding 'torch/include/ATen/ops/row_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3805110Z adding 'torch/include/ATen/ops/row_indices_copy.h' 2025-07-24T03:55:18.3806170Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3807140Z adding 'torch/include/ATen/ops/row_indices_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3807830Z adding 'torch/include/ATen/ops/row_indices_copy_native.h' 2025-07-24T03:55:18.3808740Z adding 'torch/include/ATen/ops/row_indices_copy_ops.h' 2025-07-24T03:55:18.3809660Z adding 'torch/include/ATen/ops/row_indices_native.h' 2025-07-24T03:55:18.3810570Z adding 'torch/include/ATen/ops/row_indices_ops.h' 2025-07-24T03:55:18.3811430Z adding 'torch/include/ATen/ops/row_stack.h' 2025-07-24T03:55:18.3812390Z adding 'torch/include/ATen/ops/row_stack_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3813240Z adding 'torch/include/ATen/ops/row_stack_native.h' 2025-07-24T03:55:18.3814190Z adding 'torch/include/ATen/ops/row_stack_ops.h' 2025-07-24T03:55:18.3815070Z adding 'torch/include/ATen/ops/rrelu.h' 2025-07-24T03:55:18.3816090Z adding 'torch/include/ATen/ops/rrelu_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3816960Z adding 'torch/include/ATen/ops/rrelu_native.h' 2025-07-24T03:55:18.3817940Z adding 'torch/include/ATen/ops/rrelu_ops.h' 2025-07-24T03:55:18.3818970Z adding 'torch/include/ATen/ops/rrelu_with_noise.h' 2025-07-24T03:55:18.3819980Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward.h' 2025-07-24T03:55:18.3821110Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3821910Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_native.h' 2025-07-24T03:55:18.3822890Z adding 'torch/include/ATen/ops/rrelu_with_noise_backward_ops.h' 2025-07-24T03:55:18.3823850Z adding 'torch/include/ATen/ops/rrelu_with_noise_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3824810Z adding 'torch/include/ATen/ops/rrelu_with_noise_cpu_dispatch.h' 2025-07-24T03:55:18.3825700Z adding 'torch/include/ATen/ops/rrelu_with_noise_cuda_dispatch.h' 2025-07-24T03:55:18.3826580Z adding 'torch/include/ATen/ops/rrelu_with_noise_meta_dispatch.h' 2025-07-24T03:55:18.3827480Z adding 'torch/include/ATen/ops/rrelu_with_noise_native.h' 2025-07-24T03:55:18.3828720Z adding 'torch/include/ATen/ops/rrelu_with_noise_ops.h' 2025-07-24T03:55:18.3829680Z adding 'torch/include/ATen/ops/rshift.h' 2025-07-24T03:55:18.3830680Z adding 'torch/include/ATen/ops/rshift_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3831460Z adding 'torch/include/ATen/ops/rshift_cpu_dispatch.h' 2025-07-24T03:55:18.3832420Z adding 'torch/include/ATen/ops/rshift_cuda_dispatch.h' 2025-07-24T03:55:18.3833260Z adding 'torch/include/ATen/ops/rshift_meta_dispatch.h' 2025-07-24T03:55:18.3834090Z adding 'torch/include/ATen/ops/rshift_mps_dispatch.h' 2025-07-24T03:55:18.3834910Z adding 'torch/include/ATen/ops/rshift_native.h' 2025-07-24T03:55:18.3836130Z adding 'torch/include/ATen/ops/rshift_ops.h' 2025-07-24T03:55:18.3837050Z adding 'torch/include/ATen/ops/rsqrt.h' 2025-07-24T03:55:18.3838050Z adding 'torch/include/ATen/ops/rsqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3838800Z adding 'torch/include/ATen/ops/rsqrt_cpu_dispatch.h' 2025-07-24T03:55:18.3839740Z adding 'torch/include/ATen/ops/rsqrt_cuda_dispatch.h' 2025-07-24T03:55:18.3840580Z adding 'torch/include/ATen/ops/rsqrt_meta.h' 2025-07-24T03:55:18.3841430Z adding 'torch/include/ATen/ops/rsqrt_meta_dispatch.h' 2025-07-24T03:55:18.3842220Z adding 'torch/include/ATen/ops/rsqrt_mps_dispatch.h' 2025-07-24T03:55:18.3843150Z adding 'torch/include/ATen/ops/rsqrt_native.h' 2025-07-24T03:55:18.3844130Z adding 'torch/include/ATen/ops/rsqrt_ops.h' 2025-07-24T03:55:18.3845080Z adding 'torch/include/ATen/ops/rsub.h' 2025-07-24T03:55:18.3846070Z adding 'torch/include/ATen/ops/rsub_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3846960Z adding 'torch/include/ATen/ops/rsub_cpu_dispatch.h' 2025-07-24T03:55:18.3847800Z adding 'torch/include/ATen/ops/rsub_cuda_dispatch.h' 2025-07-24T03:55:18.3848650Z adding 'torch/include/ATen/ops/rsub_mps_dispatch.h' 2025-07-24T03:55:18.3849860Z adding 'torch/include/ATen/ops/rsub_native.h' 2025-07-24T03:55:18.3851040Z adding 'torch/include/ATen/ops/rsub_ops.h' 2025-07-24T03:55:18.3852030Z adding 'torch/include/ATen/ops/scalar_tensor.h' 2025-07-24T03:55:18.3853020Z adding 'torch/include/ATen/ops/scalar_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3853800Z adding 'torch/include/ATen/ops/scalar_tensor_native.h' 2025-07-24T03:55:18.3854940Z adding 'torch/include/ATen/ops/scalar_tensor_ops.h' 2025-07-24T03:55:18.3855910Z adding 'torch/include/ATen/ops/scaled_dot_product_attention.h' 2025-07-24T03:55:18.3856890Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3857680Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_native.h' 2025-07-24T03:55:18.3858760Z adding 'torch/include/ATen/ops/scaled_dot_product_attention_ops.h' 2025-07-24T03:55:18.3859840Z adding 'torch/include/ATen/ops/scatter.h' 2025-07-24T03:55:18.3860870Z adding 'torch/include/ATen/ops/scatter_add.h' 2025-07-24T03:55:18.3861850Z adding 'torch/include/ATen/ops/scatter_add_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3862790Z adding 'torch/include/ATen/ops/scatter_add_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3863590Z adding 'torch/include/ATen/ops/scatter_add_cpu_dispatch.h' 2025-07-24T03:55:18.3864480Z adding 'torch/include/ATen/ops/scatter_add_cuda_dispatch.h' 2025-07-24T03:55:18.3865310Z adding 'torch/include/ATen/ops/scatter_add_meta.h' 2025-07-24T03:55:18.3866290Z adding 'torch/include/ATen/ops/scatter_add_meta_dispatch.h' 2025-07-24T03:55:18.3867120Z adding 'torch/include/ATen/ops/scatter_add_mps_dispatch.h' 2025-07-24T03:55:18.3867980Z adding 'torch/include/ATen/ops/scatter_add_native.h' 2025-07-24T03:55:18.3869020Z adding 'torch/include/ATen/ops/scatter_add_ops.h' 2025-07-24T03:55:18.3870230Z adding 'torch/include/ATen/ops/scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3871080Z adding 'torch/include/ATen/ops/scatter_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3871970Z adding 'torch/include/ATen/ops/scatter_cpu_dispatch.h' 2025-07-24T03:55:18.3872900Z adding 'torch/include/ATen/ops/scatter_cuda_dispatch.h' 2025-07-24T03:55:18.3873940Z adding 'torch/include/ATen/ops/scatter_meta.h' 2025-07-24T03:55:18.3874940Z adding 'torch/include/ATen/ops/scatter_meta_dispatch.h' 2025-07-24T03:55:18.3875790Z adding 'torch/include/ATen/ops/scatter_mps_dispatch.h' 2025-07-24T03:55:18.3876720Z adding 'torch/include/ATen/ops/scatter_native.h' 2025-07-24T03:55:18.3878690Z adding 'torch/include/ATen/ops/scatter_ops.h' 2025-07-24T03:55:18.3880500Z adding 'torch/include/ATen/ops/scatter_reduce.h' 2025-07-24T03:55:18.3881690Z adding 'torch/include/ATen/ops/scatter_reduce_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3882630Z adding 'torch/include/ATen/ops/scatter_reduce_cpu_dispatch.h' 2025-07-24T03:55:18.3883610Z adding 'torch/include/ATen/ops/scatter_reduce_cuda_dispatch.h' 2025-07-24T03:55:18.3884620Z adding 'torch/include/ATen/ops/scatter_reduce_meta.h' 2025-07-24T03:55:18.3885570Z adding 'torch/include/ATen/ops/scatter_reduce_meta_dispatch.h' 2025-07-24T03:55:18.3886440Z adding 'torch/include/ATen/ops/scatter_reduce_mps_dispatch.h' 2025-07-24T03:55:18.3887310Z adding 'torch/include/ATen/ops/scatter_reduce_native.h' 2025-07-24T03:55:18.3888510Z adding 'torch/include/ATen/ops/scatter_reduce_ops.h' 2025-07-24T03:55:18.3889590Z adding 'torch/include/ATen/ops/searchsorted.h' 2025-07-24T03:55:18.3890610Z adding 'torch/include/ATen/ops/searchsorted_cpu_dispatch.h' 2025-07-24T03:55:18.3891550Z adding 'torch/include/ATen/ops/searchsorted_cuda_dispatch.h' 2025-07-24T03:55:18.3892550Z adding 'torch/include/ATen/ops/searchsorted_mps_dispatch.h' 2025-07-24T03:55:18.3893550Z adding 'torch/include/ATen/ops/searchsorted_native.h' 2025-07-24T03:55:18.3894690Z adding 'torch/include/ATen/ops/searchsorted_ops.h' 2025-07-24T03:55:18.3895740Z adding 'torch/include/ATen/ops/segment_reduce.h' 2025-07-24T03:55:18.3896870Z adding 'torch/include/ATen/ops/segment_reduce_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3897710Z adding 'torch/include/ATen/ops/segment_reduce_cpu_dispatch.h' 2025-07-24T03:55:18.3898550Z adding 'torch/include/ATen/ops/segment_reduce_cuda_dispatch.h' 2025-07-24T03:55:18.3899430Z adding 'torch/include/ATen/ops/segment_reduce_native.h' 2025-07-24T03:55:18.3900640Z adding 'torch/include/ATen/ops/segment_reduce_ops.h' 2025-07-24T03:55:18.3901600Z adding 'torch/include/ATen/ops/select.h' 2025-07-24T03:55:18.3902710Z adding 'torch/include/ATen/ops/select_backward.h' 2025-07-24T03:55:18.3903770Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3904800Z adding 'torch/include/ATen/ops/select_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3905590Z adding 'torch/include/ATen/ops/select_backward_native.h' 2025-07-24T03:55:18.3906580Z adding 'torch/include/ATen/ops/select_backward_ops.h' 2025-07-24T03:55:18.3907560Z adding 'torch/include/ATen/ops/select_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3908510Z adding 'torch/include/ATen/ops/select_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3909490Z adding 'torch/include/ATen/ops/select_copy.h' 2025-07-24T03:55:18.3910500Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3911410Z adding 'torch/include/ATen/ops/select_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3912240Z adding 'torch/include/ATen/ops/select_copy_native.h' 2025-07-24T03:55:18.3913410Z adding 'torch/include/ATen/ops/select_copy_ops.h' 2025-07-24T03:55:18.3914270Z adding 'torch/include/ATen/ops/select_native.h' 2025-07-24T03:55:18.3915220Z adding 'torch/include/ATen/ops/select_ops.h' 2025-07-24T03:55:18.3916360Z adding 'torch/include/ATen/ops/select_scatter.h' 2025-07-24T03:55:18.3917380Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3918300Z adding 'torch/include/ATen/ops/select_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3919030Z adding 'torch/include/ATen/ops/select_scatter_native.h' 2025-07-24T03:55:18.3920080Z adding 'torch/include/ATen/ops/select_scatter_ops.h' 2025-07-24T03:55:18.3920970Z adding 'torch/include/ATen/ops/selu.h' 2025-07-24T03:55:18.3921890Z adding 'torch/include/ATen/ops/selu_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3922670Z adding 'torch/include/ATen/ops/selu_native.h' 2025-07-24T03:55:18.3923660Z adding 'torch/include/ATen/ops/selu_ops.h' 2025-07-24T03:55:18.3925280Z adding 'torch/include/ATen/ops/set.h' 2025-07-24T03:55:18.3926130Z adding 'torch/include/ATen/ops/set_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.3927030Z adding 'torch/include/ATen/ops/set_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3927910Z adding 'torch/include/ATen/ops/set_cpu_dispatch.h' 2025-07-24T03:55:18.3928770Z adding 'torch/include/ATen/ops/set_cuda_dispatch.h' 2025-07-24T03:55:18.3929600Z adding 'torch/include/ATen/ops/set_data.h' 2025-07-24T03:55:18.3930540Z adding 'torch/include/ATen/ops/set_data_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3931400Z adding 'torch/include/ATen/ops/set_data_native.h' 2025-07-24T03:55:18.3932310Z adding 'torch/include/ATen/ops/set_data_ops.h' 2025-07-24T03:55:18.3933160Z adding 'torch/include/ATen/ops/set_meta_dispatch.h' 2025-07-24T03:55:18.3933980Z adding 'torch/include/ATen/ops/set_mps_dispatch.h' 2025-07-24T03:55:18.3935040Z adding 'torch/include/ATen/ops/set_native.h' 2025-07-24T03:55:18.3936650Z adding 'torch/include/ATen/ops/set_ops.h' 2025-07-24T03:55:18.3937370Z adding 'torch/include/ATen/ops/sgn.h' 2025-07-24T03:55:18.3938360Z adding 'torch/include/ATen/ops/sgn_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3939200Z adding 'torch/include/ATen/ops/sgn_cpu_dispatch.h' 2025-07-24T03:55:18.3940050Z adding 'torch/include/ATen/ops/sgn_cuda_dispatch.h' 2025-07-24T03:55:18.3940850Z adding 'torch/include/ATen/ops/sgn_meta.h' 2025-07-24T03:55:18.3941690Z adding 'torch/include/ATen/ops/sgn_meta_dispatch.h' 2025-07-24T03:55:18.3942590Z adding 'torch/include/ATen/ops/sgn_mps_dispatch.h' 2025-07-24T03:55:18.3943480Z adding 'torch/include/ATen/ops/sgn_native.h' 2025-07-24T03:55:18.3944430Z adding 'torch/include/ATen/ops/sgn_ops.h' 2025-07-24T03:55:18.3945320Z adding 'torch/include/ATen/ops/sigmoid.h' 2025-07-24T03:55:18.3946330Z adding 'torch/include/ATen/ops/sigmoid_backward.h' 2025-07-24T03:55:18.3947450Z adding 'torch/include/ATen/ops/sigmoid_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3948190Z adding 'torch/include/ATen/ops/sigmoid_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3949040Z adding 'torch/include/ATen/ops/sigmoid_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3949940Z adding 'torch/include/ATen/ops/sigmoid_backward_meta.h' 2025-07-24T03:55:18.3950830Z adding 'torch/include/ATen/ops/sigmoid_backward_meta_dispatch.h' 2025-07-24T03:55:18.3951700Z adding 'torch/include/ATen/ops/sigmoid_backward_mps_dispatch.h' 2025-07-24T03:55:18.3952490Z adding 'torch/include/ATen/ops/sigmoid_backward_native.h' 2025-07-24T03:55:18.3953530Z adding 'torch/include/ATen/ops/sigmoid_backward_ops.h' 2025-07-24T03:55:18.3954520Z adding 'torch/include/ATen/ops/sigmoid_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3955250Z adding 'torch/include/ATen/ops/sigmoid_cpu_dispatch.h' 2025-07-24T03:55:18.3956060Z adding 'torch/include/ATen/ops/sigmoid_cuda_dispatch.h' 2025-07-24T03:55:18.3956980Z adding 'torch/include/ATen/ops/sigmoid_meta.h' 2025-07-24T03:55:18.3957830Z adding 'torch/include/ATen/ops/sigmoid_meta_dispatch.h' 2025-07-24T03:55:18.3958630Z adding 'torch/include/ATen/ops/sigmoid_mps_dispatch.h' 2025-07-24T03:55:18.3959470Z adding 'torch/include/ATen/ops/sigmoid_native.h' 2025-07-24T03:55:18.3960520Z adding 'torch/include/ATen/ops/sigmoid_ops.h' 2025-07-24T03:55:18.3961410Z adding 'torch/include/ATen/ops/sign.h' 2025-07-24T03:55:18.3962410Z adding 'torch/include/ATen/ops/sign_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3963130Z adding 'torch/include/ATen/ops/sign_cpu_dispatch.h' 2025-07-24T03:55:18.3964050Z adding 'torch/include/ATen/ops/sign_cuda_dispatch.h' 2025-07-24T03:55:18.3964870Z adding 'torch/include/ATen/ops/sign_meta.h' 2025-07-24T03:55:18.3965740Z adding 'torch/include/ATen/ops/sign_meta_dispatch.h' 2025-07-24T03:55:18.3966490Z adding 'torch/include/ATen/ops/sign_mps_dispatch.h' 2025-07-24T03:55:18.3967450Z adding 'torch/include/ATen/ops/sign_native.h' 2025-07-24T03:55:18.3968410Z adding 'torch/include/ATen/ops/sign_ops.h' 2025-07-24T03:55:18.3969280Z adding 'torch/include/ATen/ops/signbit.h' 2025-07-24T03:55:18.3970280Z adding 'torch/include/ATen/ops/signbit_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3971110Z adding 'torch/include/ATen/ops/signbit_cpu_dispatch.h' 2025-07-24T03:55:18.3971910Z adding 'torch/include/ATen/ops/signbit_cuda_dispatch.h' 2025-07-24T03:55:18.3972740Z adding 'torch/include/ATen/ops/signbit_meta.h' 2025-07-24T03:55:18.3973570Z adding 'torch/include/ATen/ops/signbit_meta_dispatch.h' 2025-07-24T03:55:18.3974460Z adding 'torch/include/ATen/ops/signbit_mps_dispatch.h' 2025-07-24T03:55:18.3975310Z adding 'torch/include/ATen/ops/signbit_native.h' 2025-07-24T03:55:18.3976250Z adding 'torch/include/ATen/ops/signbit_ops.h' 2025-07-24T03:55:18.3977110Z adding 'torch/include/ATen/ops/silu.h' 2025-07-24T03:55:18.3978120Z adding 'torch/include/ATen/ops/silu_backward.h' 2025-07-24T03:55:18.3979150Z adding 'torch/include/ATen/ops/silu_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3979950Z adding 'torch/include/ATen/ops/silu_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.3980750Z adding 'torch/include/ATen/ops/silu_backward_cpu_dispatch.h' 2025-07-24T03:55:18.3981680Z adding 'torch/include/ATen/ops/silu_backward_cuda_dispatch.h' 2025-07-24T03:55:18.3982510Z adding 'torch/include/ATen/ops/silu_backward_meta.h' 2025-07-24T03:55:18.3983360Z adding 'torch/include/ATen/ops/silu_backward_meta_dispatch.h' 2025-07-24T03:55:18.3984170Z adding 'torch/include/ATen/ops/silu_backward_mps_dispatch.h' 2025-07-24T03:55:18.3985110Z adding 'torch/include/ATen/ops/silu_backward_native.h' 2025-07-24T03:55:18.3986070Z adding 'torch/include/ATen/ops/silu_backward_ops.h' 2025-07-24T03:55:18.3987030Z adding 'torch/include/ATen/ops/silu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3987770Z adding 'torch/include/ATen/ops/silu_cpu_dispatch.h' 2025-07-24T03:55:18.3988680Z adding 'torch/include/ATen/ops/silu_cuda_dispatch.h' 2025-07-24T03:55:18.3989510Z adding 'torch/include/ATen/ops/silu_meta.h' 2025-07-24T03:55:18.3990330Z adding 'torch/include/ATen/ops/silu_meta_dispatch.h' 2025-07-24T03:55:18.3991100Z adding 'torch/include/ATen/ops/silu_mps_dispatch.h' 2025-07-24T03:55:18.3992040Z adding 'torch/include/ATen/ops/silu_native.h' 2025-07-24T03:55:18.3993000Z adding 'torch/include/ATen/ops/silu_ops.h' 2025-07-24T03:55:18.3993920Z adding 'torch/include/ATen/ops/sin.h' 2025-07-24T03:55:18.3994870Z adding 'torch/include/ATen/ops/sin_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.3995680Z adding 'torch/include/ATen/ops/sin_cpu_dispatch.h' 2025-07-24T03:55:18.3996490Z adding 'torch/include/ATen/ops/sin_cuda_dispatch.h' 2025-07-24T03:55:18.3997300Z adding 'torch/include/ATen/ops/sin_meta.h' 2025-07-24T03:55:18.3998140Z adding 'torch/include/ATen/ops/sin_meta_dispatch.h' 2025-07-24T03:55:18.3999000Z adding 'torch/include/ATen/ops/sin_mps_dispatch.h' 2025-07-24T03:55:18.3999880Z adding 'torch/include/ATen/ops/sin_native.h' 2025-07-24T03:55:18.4000850Z adding 'torch/include/ATen/ops/sin_ops.h' 2025-07-24T03:55:18.4001710Z adding 'torch/include/ATen/ops/sinc.h' 2025-07-24T03:55:18.4002790Z adding 'torch/include/ATen/ops/sinc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4003510Z adding 'torch/include/ATen/ops/sinc_cpu_dispatch.h' 2025-07-24T03:55:18.4004300Z adding 'torch/include/ATen/ops/sinc_cuda_dispatch.h' 2025-07-24T03:55:18.4005170Z adding 'torch/include/ATen/ops/sinc_meta.h' 2025-07-24T03:55:18.4006110Z adding 'torch/include/ATen/ops/sinc_meta_dispatch.h' 2025-07-24T03:55:18.4006930Z adding 'torch/include/ATen/ops/sinc_mps_dispatch.h' 2025-07-24T03:55:18.4007770Z adding 'torch/include/ATen/ops/sinc_native.h' 2025-07-24T03:55:18.4008750Z adding 'torch/include/ATen/ops/sinc_ops.h' 2025-07-24T03:55:18.4009690Z adding 'torch/include/ATen/ops/sinh.h' 2025-07-24T03:55:18.4010690Z adding 'torch/include/ATen/ops/sinh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4011410Z adding 'torch/include/ATen/ops/sinh_cpu_dispatch.h' 2025-07-24T03:55:18.4012230Z adding 'torch/include/ATen/ops/sinh_cuda_dispatch.h' 2025-07-24T03:55:18.4013130Z adding 'torch/include/ATen/ops/sinh_meta.h' 2025-07-24T03:55:18.4013980Z adding 'torch/include/ATen/ops/sinh_meta_dispatch.h' 2025-07-24T03:55:18.4014780Z adding 'torch/include/ATen/ops/sinh_mps_dispatch.h' 2025-07-24T03:55:18.4015640Z adding 'torch/include/ATen/ops/sinh_native.h' 2025-07-24T03:55:18.4016670Z adding 'torch/include/ATen/ops/sinh_ops.h' 2025-07-24T03:55:18.4017590Z adding 'torch/include/ATen/ops/size.h' 2025-07-24T03:55:18.4018570Z adding 'torch/include/ATen/ops/size_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4019330Z adding 'torch/include/ATen/ops/size_native.h' 2025-07-24T03:55:18.4020380Z adding 'torch/include/ATen/ops/size_ops.h' 2025-07-24T03:55:18.4021370Z adding 'torch/include/ATen/ops/slice.h' 2025-07-24T03:55:18.4022540Z adding 'torch/include/ATen/ops/slice_backward.h' 2025-07-24T03:55:18.4023620Z adding 'torch/include/ATen/ops/slice_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4024540Z adding 'torch/include/ATen/ops/slice_backward_native.h' 2025-07-24T03:55:18.4025560Z adding 'torch/include/ATen/ops/slice_backward_ops.h' 2025-07-24T03:55:18.4026620Z adding 'torch/include/ATen/ops/slice_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4027700Z adding 'torch/include/ATen/ops/slice_copy.h' 2025-07-24T03:55:18.4028850Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4029820Z adding 'torch/include/ATen/ops/slice_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4030520Z adding 'torch/include/ATen/ops/slice_copy_native.h' 2025-07-24T03:55:18.4031510Z adding 'torch/include/ATen/ops/slice_copy_ops.h' 2025-07-24T03:55:18.4032560Z adding 'torch/include/ATen/ops/slice_inverse.h' 2025-07-24T03:55:18.4033550Z adding 'torch/include/ATen/ops/slice_inverse_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4034340Z adding 'torch/include/ATen/ops/slice_inverse_native.h' 2025-07-24T03:55:18.4035240Z adding 'torch/include/ATen/ops/slice_inverse_ops.h' 2025-07-24T03:55:18.4036190Z adding 'torch/include/ATen/ops/slice_native.h' 2025-07-24T03:55:18.4037190Z adding 'torch/include/ATen/ops/slice_ops.h' 2025-07-24T03:55:18.4038400Z adding 'torch/include/ATen/ops/slice_scatter.h' 2025-07-24T03:55:18.4039550Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4040500Z adding 'torch/include/ATen/ops/slice_scatter_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4041260Z adding 'torch/include/ATen/ops/slice_scatter_native.h' 2025-07-24T03:55:18.4042240Z adding 'torch/include/ATen/ops/slice_scatter_ops.h' 2025-07-24T03:55:18.4043130Z adding 'torch/include/ATen/ops/slogdet.h' 2025-07-24T03:55:18.4044210Z adding 'torch/include/ATen/ops/slogdet_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4044980Z adding 'torch/include/ATen/ops/slogdet_native.h' 2025-07-24T03:55:18.4045940Z adding 'torch/include/ATen/ops/slogdet_ops.h' 2025-07-24T03:55:18.4047120Z adding 'torch/include/ATen/ops/slow_conv3d.h' 2025-07-24T03:55:18.4048290Z adding 'torch/include/ATen/ops/slow_conv3d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4049410Z adding 'torch/include/ATen/ops/slow_conv3d_forward.h' 2025-07-24T03:55:18.4050400Z adding 'torch/include/ATen/ops/slow_conv3d_forward_cpu_dispatch.h' 2025-07-24T03:55:18.4051260Z adding 'torch/include/ATen/ops/slow_conv3d_forward_native.h' 2025-07-24T03:55:18.4052350Z adding 'torch/include/ATen/ops/slow_conv3d_forward_ops.h' 2025-07-24T03:55:18.4053210Z adding 'torch/include/ATen/ops/slow_conv3d_native.h' 2025-07-24T03:55:18.4054270Z adding 'torch/include/ATen/ops/slow_conv3d_ops.h' 2025-07-24T03:55:18.4055460Z adding 'torch/include/ATen/ops/slow_conv_dilated2d.h' 2025-07-24T03:55:18.4056620Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4057480Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cpu_dispatch.h' 2025-07-24T03:55:18.4058350Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_cuda_dispatch.h' 2025-07-24T03:55:18.4059220Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_native.h' 2025-07-24T03:55:18.4060310Z adding 'torch/include/ATen/ops/slow_conv_dilated2d_ops.h' 2025-07-24T03:55:18.4061540Z adding 'torch/include/ATen/ops/slow_conv_dilated3d.h' 2025-07-24T03:55:18.4062610Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4063410Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cpu_dispatch.h' 2025-07-24T03:55:18.4064360Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_cuda_dispatch.h' 2025-07-24T03:55:18.4065230Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_native.h' 2025-07-24T03:55:18.4066240Z adding 'torch/include/ATen/ops/slow_conv_dilated3d_ops.h' 2025-07-24T03:55:18.4067550Z adding 'torch/include/ATen/ops/slow_conv_transpose2d.h' 2025-07-24T03:55:18.4069080Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4070090Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cpu_dispatch.h' 2025-07-24T03:55:18.4071030Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_cuda_dispatch.h' 2025-07-24T03:55:18.4071930Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta.h' 2025-07-24T03:55:18.4072950Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_meta_dispatch.h' 2025-07-24T03:55:18.4073850Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_native.h' 2025-07-24T03:55:18.4074860Z adding 'torch/include/ATen/ops/slow_conv_transpose2d_ops.h' 2025-07-24T03:55:18.4076130Z adding 'torch/include/ATen/ops/slow_conv_transpose3d.h' 2025-07-24T03:55:18.4077230Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cpu_dispatch.h' 2025-07-24T03:55:18.4078170Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_cuda_dispatch.h' 2025-07-24T03:55:18.4079050Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_native.h' 2025-07-24T03:55:18.4080070Z adding 'torch/include/ATen/ops/slow_conv_transpose3d_ops.h' 2025-07-24T03:55:18.4081000Z adding 'torch/include/ATen/ops/smm.h' 2025-07-24T03:55:18.4081950Z adding 'torch/include/ATen/ops/smm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4082710Z adding 'torch/include/ATen/ops/smm_native.h' 2025-07-24T03:55:18.4083590Z adding 'torch/include/ATen/ops/smm_ops.h' 2025-07-24T03:55:18.4084640Z adding 'torch/include/ATen/ops/smooth_l1_loss.h' 2025-07-24T03:55:18.4085590Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward.h' 2025-07-24T03:55:18.4086580Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4091640Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cpu_dispatch.h' 2025-07-24T03:55:18.4091880Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_cuda_dispatch.h' 2025-07-24T03:55:18.4092020Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_mps_dispatch.h' 2025-07-24T03:55:18.4092150Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_native.h' 2025-07-24T03:55:18.4092260Z adding 'torch/include/ATen/ops/smooth_l1_loss_backward_ops.h' 2025-07-24T03:55:18.4092520Z adding 'torch/include/ATen/ops/smooth_l1_loss_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4093950Z adding 'torch/include/ATen/ops/smooth_l1_loss_cpu_dispatch.h' 2025-07-24T03:55:18.4096050Z adding 'torch/include/ATen/ops/smooth_l1_loss_cuda_dispatch.h' 2025-07-24T03:55:18.4096730Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta.h' 2025-07-24T03:55:18.4097680Z adding 'torch/include/ATen/ops/smooth_l1_loss_meta_dispatch.h' 2025-07-24T03:55:18.4098570Z adding 'torch/include/ATen/ops/smooth_l1_loss_mps_dispatch.h' 2025-07-24T03:55:18.4099770Z adding 'torch/include/ATen/ops/smooth_l1_loss_native.h' 2025-07-24T03:55:18.4100750Z adding 'torch/include/ATen/ops/smooth_l1_loss_ops.h' 2025-07-24T03:55:18.4101720Z adding 'torch/include/ATen/ops/soft_margin_loss.h' 2025-07-24T03:55:18.4102720Z adding 'torch/include/ATen/ops/soft_margin_loss_backward.h' 2025-07-24T03:55:18.4103940Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4104750Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_native.h' 2025-07-24T03:55:18.4105770Z adding 'torch/include/ATen/ops/soft_margin_loss_backward_ops.h' 2025-07-24T03:55:18.4106750Z adding 'torch/include/ATen/ops/soft_margin_loss_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4107730Z adding 'torch/include/ATen/ops/soft_margin_loss_native.h' 2025-07-24T03:55:18.4108740Z adding 'torch/include/ATen/ops/soft_margin_loss_ops.h' 2025-07-24T03:55:18.4109660Z adding 'torch/include/ATen/ops/softmax.h' 2025-07-24T03:55:18.4110650Z adding 'torch/include/ATen/ops/softmax_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4111730Z adding 'torch/include/ATen/ops/softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4112540Z adding 'torch/include/ATen/ops/softmax_native.h' 2025-07-24T03:55:18.4113590Z adding 'torch/include/ATen/ops/softmax_ops.h' 2025-07-24T03:55:18.4114530Z adding 'torch/include/ATen/ops/softplus.h' 2025-07-24T03:55:18.4115690Z adding 'torch/include/ATen/ops/softplus_backward.h' 2025-07-24T03:55:18.4116790Z adding 'torch/include/ATen/ops/softplus_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4117570Z adding 'torch/include/ATen/ops/softplus_backward_cpu_dispatch.h' 2025-07-24T03:55:18.4118430Z adding 'torch/include/ATen/ops/softplus_backward_cuda_dispatch.h' 2025-07-24T03:55:18.4119480Z adding 'torch/include/ATen/ops/softplus_backward_meta.h' 2025-07-24T03:55:18.4120440Z adding 'torch/include/ATen/ops/softplus_backward_meta_dispatch.h' 2025-07-24T03:55:18.4121290Z adding 'torch/include/ATen/ops/softplus_backward_mps_dispatch.h' 2025-07-24T03:55:18.4122140Z adding 'torch/include/ATen/ops/softplus_backward_native.h' 2025-07-24T03:55:18.4123350Z adding 'torch/include/ATen/ops/softplus_backward_ops.h' 2025-07-24T03:55:18.4124410Z adding 'torch/include/ATen/ops/softplus_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4125190Z adding 'torch/include/ATen/ops/softplus_cpu_dispatch.h' 2025-07-24T03:55:18.4126080Z adding 'torch/include/ATen/ops/softplus_cuda_dispatch.h' 2025-07-24T03:55:18.4127160Z adding 'torch/include/ATen/ops/softplus_meta.h' 2025-07-24T03:55:18.4128050Z adding 'torch/include/ATen/ops/softplus_meta_dispatch.h' 2025-07-24T03:55:18.4128900Z adding 'torch/include/ATen/ops/softplus_mps_dispatch.h' 2025-07-24T03:55:18.4129720Z adding 'torch/include/ATen/ops/softplus_native.h' 2025-07-24T03:55:18.4130850Z adding 'torch/include/ATen/ops/softplus_ops.h' 2025-07-24T03:55:18.4131800Z adding 'torch/include/ATen/ops/softshrink.h' 2025-07-24T03:55:18.4132730Z adding 'torch/include/ATen/ops/softshrink_backward.h' 2025-07-24T03:55:18.4133840Z adding 'torch/include/ATen/ops/softshrink_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4134870Z adding 'torch/include/ATen/ops/softshrink_backward_cpu_dispatch.h' 2025-07-24T03:55:18.4135700Z adding 'torch/include/ATen/ops/softshrink_backward_cuda_dispatch.h' 2025-07-24T03:55:18.4136520Z adding 'torch/include/ATen/ops/softshrink_backward_meta.h' 2025-07-24T03:55:18.4137380Z adding 'torch/include/ATen/ops/softshrink_backward_meta_dispatch.h' 2025-07-24T03:55:18.4138390Z adding 'torch/include/ATen/ops/softshrink_backward_mps_dispatch.h' 2025-07-24T03:55:18.4139320Z adding 'torch/include/ATen/ops/softshrink_backward_native.h' 2025-07-24T03:55:18.4140290Z adding 'torch/include/ATen/ops/softshrink_backward_ops.h' 2025-07-24T03:55:18.4141350Z adding 'torch/include/ATen/ops/softshrink_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4142330Z adding 'torch/include/ATen/ops/softshrink_cpu_dispatch.h' 2025-07-24T03:55:18.4143160Z adding 'torch/include/ATen/ops/softshrink_cuda_dispatch.h' 2025-07-24T03:55:18.4143990Z adding 'torch/include/ATen/ops/softshrink_meta.h' 2025-07-24T03:55:18.4144840Z adding 'torch/include/ATen/ops/softshrink_meta_dispatch.h' 2025-07-24T03:55:18.4145840Z adding 'torch/include/ATen/ops/softshrink_mps_dispatch.h' 2025-07-24T03:55:18.4146700Z adding 'torch/include/ATen/ops/softshrink_native.h' 2025-07-24T03:55:18.4147710Z adding 'torch/include/ATen/ops/softshrink_ops.h' 2025-07-24T03:55:18.4148850Z adding 'torch/include/ATen/ops/sort.h' 2025-07-24T03:55:18.4150130Z adding 'torch/include/ATen/ops/sort_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4151090Z adding 'torch/include/ATen/ops/sort_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4151990Z adding 'torch/include/ATen/ops/sort_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4152870Z adding 'torch/include/ATen/ops/sort_cpu_dispatch.h' 2025-07-24T03:55:18.4153910Z adding 'torch/include/ATen/ops/sort_cuda_dispatch.h' 2025-07-24T03:55:18.4154790Z adding 'torch/include/ATen/ops/sort_meta.h' 2025-07-24T03:55:18.4155710Z adding 'torch/include/ATen/ops/sort_meta_dispatch.h' 2025-07-24T03:55:18.4156510Z adding 'torch/include/ATen/ops/sort_mps_dispatch.h' 2025-07-24T03:55:18.4157670Z adding 'torch/include/ATen/ops/sort_native.h' 2025-07-24T03:55:18.4159010Z adding 'torch/include/ATen/ops/sort_ops.h' 2025-07-24T03:55:18.4160060Z adding 'torch/include/ATen/ops/sparse_bsc_tensor.h' 2025-07-24T03:55:18.4161090Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4162090Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_native.h' 2025-07-24T03:55:18.4163190Z adding 'torch/include/ATen/ops/sparse_bsc_tensor_ops.h' 2025-07-24T03:55:18.4164250Z adding 'torch/include/ATen/ops/sparse_bsr_tensor.h' 2025-07-24T03:55:18.4165280Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4166270Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_native.h' 2025-07-24T03:55:18.4167300Z adding 'torch/include/ATen/ops/sparse_bsr_tensor_ops.h' 2025-07-24T03:55:18.4168520Z adding 'torch/include/ATen/ops/sparse_compressed_tensor.h' 2025-07-24T03:55:18.4169630Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4170710Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_native.h' 2025-07-24T03:55:18.4171810Z adding 'torch/include/ATen/ops/sparse_compressed_tensor_ops.h' 2025-07-24T03:55:18.4172910Z adding 'torch/include/ATen/ops/sparse_coo_tensor.h' 2025-07-24T03:55:18.4174020Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4175110Z adding 'torch/include/ATen/ops/sparse_coo_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4175940Z adding 'torch/include/ATen/ops/sparse_coo_tensor_native.h' 2025-07-24T03:55:18.4177090Z adding 'torch/include/ATen/ops/sparse_coo_tensor_ops.h' 2025-07-24T03:55:18.4178160Z adding 'torch/include/ATen/ops/sparse_csc_tensor.h' 2025-07-24T03:55:18.4179410Z adding 'torch/include/ATen/ops/sparse_csc_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4180220Z adding 'torch/include/ATen/ops/sparse_csc_tensor_native.h' 2025-07-24T03:55:18.4181270Z adding 'torch/include/ATen/ops/sparse_csc_tensor_ops.h' 2025-07-24T03:55:18.4182250Z adding 'torch/include/ATen/ops/sparse_csr_tensor.h' 2025-07-24T03:55:18.4183470Z adding 'torch/include/ATen/ops/sparse_csr_tensor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4184280Z adding 'torch/include/ATen/ops/sparse_csr_tensor_native.h' 2025-07-24T03:55:18.4185270Z adding 'torch/include/ATen/ops/sparse_csr_tensor_ops.h' 2025-07-24T03:55:18.4186150Z adding 'torch/include/ATen/ops/sparse_dim.h' 2025-07-24T03:55:18.4187290Z adding 'torch/include/ATen/ops/sparse_dim_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4188070Z adding 'torch/include/ATen/ops/sparse_dim_native.h' 2025-07-24T03:55:18.4188990Z adding 'torch/include/ATen/ops/sparse_dim_ops.h' 2025-07-24T03:55:18.4189860Z adding 'torch/include/ATen/ops/sparse_mask.h' 2025-07-24T03:55:18.4191040Z adding 'torch/include/ATen/ops/sparse_mask_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4191880Z adding 'torch/include/ATen/ops/sparse_mask_native.h' 2025-07-24T03:55:18.4192810Z adding 'torch/include/ATen/ops/sparse_mask_ops.h' 2025-07-24T03:55:18.4193710Z adding 'torch/include/ATen/ops/sparse_resize.h' 2025-07-24T03:55:18.4194850Z adding 'torch/include/ATen/ops/sparse_resize_and_clear.h' 2025-07-24T03:55:18.4195860Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4196670Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_meta_dispatch.h' 2025-07-24T03:55:18.4197540Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_native.h' 2025-07-24T03:55:18.4198760Z adding 'torch/include/ATen/ops/sparse_resize_and_clear_ops.h' 2025-07-24T03:55:18.4199740Z adding 'torch/include/ATen/ops/sparse_resize_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4200550Z adding 'torch/include/ATen/ops/sparse_resize_meta_dispatch.h' 2025-07-24T03:55:18.4201430Z adding 'torch/include/ATen/ops/sparse_resize_native.h' 2025-07-24T03:55:18.4202590Z adding 'torch/include/ATen/ops/sparse_resize_ops.h' 2025-07-24T03:55:18.4203570Z adding 'torch/include/ATen/ops/sparse_sampled_addmm.h' 2025-07-24T03:55:18.4204470Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_native.h' 2025-07-24T03:55:18.4205430Z adding 'torch/include/ATen/ops/sparse_sampled_addmm_ops.h' 2025-07-24T03:55:18.4206480Z adding 'torch/include/ATen/ops/special_airy_ai.h' 2025-07-24T03:55:18.4207530Z adding 'torch/include/ATen/ops/special_airy_ai_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4208280Z adding 'torch/include/ATen/ops/special_airy_ai_cpu_dispatch.h' 2025-07-24T03:55:18.4209090Z adding 'torch/include/ATen/ops/special_airy_ai_cuda_dispatch.h' 2025-07-24T03:55:18.4210130Z adding 'torch/include/ATen/ops/special_airy_ai_meta.h' 2025-07-24T03:55:18.4210980Z adding 'torch/include/ATen/ops/special_airy_ai_meta_dispatch.h' 2025-07-24T03:55:18.4211820Z adding 'torch/include/ATen/ops/special_airy_ai_native.h' 2025-07-24T03:55:18.4212760Z adding 'torch/include/ATen/ops/special_airy_ai_ops.h' 2025-07-24T03:55:18.4213850Z adding 'torch/include/ATen/ops/special_bessel_j0.h' 2025-07-24T03:55:18.4214910Z adding 'torch/include/ATen/ops/special_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4215680Z adding 'torch/include/ATen/ops/special_bessel_j0_cpu_dispatch.h' 2025-07-24T03:55:18.4216510Z adding 'torch/include/ATen/ops/special_bessel_j0_cuda_dispatch.h' 2025-07-24T03:55:18.4217550Z adding 'torch/include/ATen/ops/special_bessel_j0_meta.h' 2025-07-24T03:55:18.4218420Z adding 'torch/include/ATen/ops/special_bessel_j0_meta_dispatch.h' 2025-07-24T03:55:18.4219210Z adding 'torch/include/ATen/ops/special_bessel_j0_mps_dispatch.h' 2025-07-24T03:55:18.4220080Z adding 'torch/include/ATen/ops/special_bessel_j0_native.h' 2025-07-24T03:55:18.4221170Z adding 'torch/include/ATen/ops/special_bessel_j0_ops.h' 2025-07-24T03:55:18.4222060Z adding 'torch/include/ATen/ops/special_bessel_j1.h' 2025-07-24T03:55:18.4223100Z adding 'torch/include/ATen/ops/special_bessel_j1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4223870Z adding 'torch/include/ATen/ops/special_bessel_j1_cpu_dispatch.h' 2025-07-24T03:55:18.4224900Z adding 'torch/include/ATen/ops/special_bessel_j1_cuda_dispatch.h' 2025-07-24T03:55:18.4225700Z adding 'torch/include/ATen/ops/special_bessel_j1_meta.h' 2025-07-24T03:55:18.4226550Z adding 'torch/include/ATen/ops/special_bessel_j1_meta_dispatch.h' 2025-07-24T03:55:18.4227340Z adding 'torch/include/ATen/ops/special_bessel_j1_mps_dispatch.h' 2025-07-24T03:55:18.4228340Z adding 'torch/include/ATen/ops/special_bessel_j1_native.h' 2025-07-24T03:55:18.4229310Z adding 'torch/include/ATen/ops/special_bessel_j1_ops.h' 2025-07-24T03:55:18.4230210Z adding 'torch/include/ATen/ops/special_bessel_y0.h' 2025-07-24T03:55:18.4231190Z adding 'torch/include/ATen/ops/special_bessel_y0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4232110Z adding 'torch/include/ATen/ops/special_bessel_y0_cpu_dispatch.h' 2025-07-24T03:55:18.4232960Z adding 'torch/include/ATen/ops/special_bessel_y0_cuda_dispatch.h' 2025-07-24T03:55:18.4233780Z adding 'torch/include/ATen/ops/special_bessel_y0_meta.h' 2025-07-24T03:55:18.4234610Z adding 'torch/include/ATen/ops/special_bessel_y0_meta_dispatch.h' 2025-07-24T03:55:18.4235620Z adding 'torch/include/ATen/ops/special_bessel_y0_mps_dispatch.h' 2025-07-24T03:55:18.4236440Z adding 'torch/include/ATen/ops/special_bessel_y0_native.h' 2025-07-24T03:55:18.4237370Z adding 'torch/include/ATen/ops/special_bessel_y0_ops.h' 2025-07-24T03:55:18.4238240Z adding 'torch/include/ATen/ops/special_bessel_y1.h' 2025-07-24T03:55:18.4239440Z adding 'torch/include/ATen/ops/special_bessel_y1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4240190Z adding 'torch/include/ATen/ops/special_bessel_y1_cpu_dispatch.h' 2025-07-24T03:55:18.4241030Z adding 'torch/include/ATen/ops/special_bessel_y1_cuda_dispatch.h' 2025-07-24T03:55:18.4241890Z adding 'torch/include/ATen/ops/special_bessel_y1_meta.h' 2025-07-24T03:55:18.4242910Z adding 'torch/include/ATen/ops/special_bessel_y1_meta_dispatch.h' 2025-07-24T03:55:18.4243720Z adding 'torch/include/ATen/ops/special_bessel_y1_mps_dispatch.h' 2025-07-24T03:55:18.4244530Z adding 'torch/include/ATen/ops/special_bessel_y1_native.h' 2025-07-24T03:55:18.4245460Z adding 'torch/include/ATen/ops/special_bessel_y1_ops.h' 2025-07-24T03:55:18.4246690Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t.h' 2025-07-24T03:55:18.4247720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4248630Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4249380Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-24T03:55:18.4250420Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-24T03:55:18.4251250Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta.h' 2025-07-24T03:55:18.4252090Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-24T03:55:18.4252890Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_mps_dispatch.h' 2025-07-24T03:55:18.4253950Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_native.h' 2025-07-24T03:55:18.4255050Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_t_ops.h' 2025-07-24T03:55:18.4256080Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u.h' 2025-07-24T03:55:18.4257070Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4258160Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4258900Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-24T03:55:18.4259720Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-24T03:55:18.4260520Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta.h' 2025-07-24T03:55:18.4261560Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-24T03:55:18.4262400Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_mps_dispatch.h' 2025-07-24T03:55:18.4263270Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_native.h' 2025-07-24T03:55:18.4264380Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_u_ops.h' 2025-07-24T03:55:18.4265600Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v.h' 2025-07-24T03:55:18.4266620Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4267560Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4268280Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-24T03:55:18.4269280Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-24T03:55:18.4270160Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta.h' 2025-07-24T03:55:18.4270990Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-24T03:55:18.4271790Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_mps_dispatch.h' 2025-07-24T03:55:18.4272850Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_native.h' 2025-07-24T03:55:18.4273960Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_v_ops.h' 2025-07-24T03:55:18.4274980Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w.h' 2025-07-24T03:55:18.4275970Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4277070Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4277800Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-24T03:55:18.4278610Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-24T03:55:18.4279440Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta.h' 2025-07-24T03:55:18.4280450Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-24T03:55:18.4281270Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_mps_dispatch.h' 2025-07-24T03:55:18.4282130Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_native.h' 2025-07-24T03:55:18.4283220Z adding 'torch/include/ATen/ops/special_chebyshev_polynomial_w_ops.h' 2025-07-24T03:55:18.4284260Z adding 'torch/include/ATen/ops/special_digamma.h' 2025-07-24T03:55:18.4285230Z adding 'torch/include/ATen/ops/special_digamma_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4285990Z adding 'torch/include/ATen/ops/special_digamma_native.h' 2025-07-24T03:55:18.4286920Z adding 'torch/include/ATen/ops/special_digamma_ops.h' 2025-07-24T03:55:18.4287990Z adding 'torch/include/ATen/ops/special_entr.h' 2025-07-24T03:55:18.4288990Z adding 'torch/include/ATen/ops/special_entr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4289750Z adding 'torch/include/ATen/ops/special_entr_cpu_dispatch.h' 2025-07-24T03:55:18.4290560Z adding 'torch/include/ATen/ops/special_entr_cuda_dispatch.h' 2025-07-24T03:55:18.4291950Z adding 'torch/include/ATen/ops/special_entr_meta.h' 2025-07-24T03:55:18.4292820Z adding 'torch/include/ATen/ops/special_entr_meta_dispatch.h' 2025-07-24T03:55:18.4293590Z adding 'torch/include/ATen/ops/special_entr_mps_dispatch.h' 2025-07-24T03:55:18.4294420Z adding 'torch/include/ATen/ops/special_entr_native.h' 2025-07-24T03:55:18.4295570Z adding 'torch/include/ATen/ops/special_entr_ops.h' 2025-07-24T03:55:18.4296440Z adding 'torch/include/ATen/ops/special_erf.h' 2025-07-24T03:55:18.4297410Z adding 'torch/include/ATen/ops/special_erf_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4298150Z adding 'torch/include/ATen/ops/special_erf_native.h' 2025-07-24T03:55:18.4299270Z adding 'torch/include/ATen/ops/special_erf_ops.h' 2025-07-24T03:55:18.4300170Z adding 'torch/include/ATen/ops/special_erfc.h' 2025-07-24T03:55:18.4301130Z adding 'torch/include/ATen/ops/special_erfc_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4301870Z adding 'torch/include/ATen/ops/special_erfc_native.h' 2025-07-24T03:55:18.4302970Z adding 'torch/include/ATen/ops/special_erfc_ops.h' 2025-07-24T03:55:18.4303850Z adding 'torch/include/ATen/ops/special_erfcx.h' 2025-07-24T03:55:18.4304860Z adding 'torch/include/ATen/ops/special_erfcx_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4305610Z adding 'torch/include/ATen/ops/special_erfcx_cpu_dispatch.h' 2025-07-24T03:55:18.4306700Z adding 'torch/include/ATen/ops/special_erfcx_cuda_dispatch.h' 2025-07-24T03:55:18.4307500Z adding 'torch/include/ATen/ops/special_erfcx_meta.h' 2025-07-24T03:55:18.4308340Z adding 'torch/include/ATen/ops/special_erfcx_meta_dispatch.h' 2025-07-24T03:55:18.4309170Z adding 'torch/include/ATen/ops/special_erfcx_native.h' 2025-07-24T03:55:18.4310310Z adding 'torch/include/ATen/ops/special_erfcx_ops.h' 2025-07-24T03:55:18.4311190Z adding 'torch/include/ATen/ops/special_erfinv.h' 2025-07-24T03:55:18.4312140Z adding 'torch/include/ATen/ops/special_erfinv_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4312900Z adding 'torch/include/ATen/ops/special_erfinv_native.h' 2025-07-24T03:55:18.4313990Z adding 'torch/include/ATen/ops/special_erfinv_ops.h' 2025-07-24T03:55:18.4314870Z adding 'torch/include/ATen/ops/special_exp2.h' 2025-07-24T03:55:18.4315820Z adding 'torch/include/ATen/ops/special_exp2_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4316580Z adding 'torch/include/ATen/ops/special_exp2_native.h' 2025-07-24T03:55:18.4317720Z adding 'torch/include/ATen/ops/special_exp2_ops.h' 2025-07-24T03:55:18.4318600Z adding 'torch/include/ATen/ops/special_expit.h' 2025-07-24T03:55:18.4319550Z adding 'torch/include/ATen/ops/special_expit_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4320310Z adding 'torch/include/ATen/ops/special_expit_native.h' 2025-07-24T03:55:18.4321420Z adding 'torch/include/ATen/ops/special_expit_ops.h' 2025-07-24T03:55:18.4322290Z adding 'torch/include/ATen/ops/special_expm1.h' 2025-07-24T03:55:18.4323220Z adding 'torch/include/ATen/ops/special_expm1_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4323970Z adding 'torch/include/ATen/ops/special_expm1_native.h' 2025-07-24T03:55:18.4325050Z adding 'torch/include/ATen/ops/special_expm1_ops.h' 2025-07-24T03:55:18.4326010Z adding 'torch/include/ATen/ops/special_gammainc.h' 2025-07-24T03:55:18.4326970Z adding 'torch/include/ATen/ops/special_gammainc_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4327720Z adding 'torch/include/ATen/ops/special_gammainc_native.h' 2025-07-24T03:55:18.4328860Z adding 'torch/include/ATen/ops/special_gammainc_ops.h' 2025-07-24T03:55:18.4329730Z adding 'torch/include/ATen/ops/special_gammaincc.h' 2025-07-24T03:55:18.4330710Z adding 'torch/include/ATen/ops/special_gammaincc_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4331510Z adding 'torch/include/ATen/ops/special_gammaincc_native.h' 2025-07-24T03:55:18.4332660Z adding 'torch/include/ATen/ops/special_gammaincc_ops.h' 2025-07-24T03:55:18.4333570Z adding 'torch/include/ATen/ops/special_gammaln.h' 2025-07-24T03:55:18.4334550Z adding 'torch/include/ATen/ops/special_gammaln_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4335380Z adding 'torch/include/ATen/ops/special_gammaln_native.h' 2025-07-24T03:55:18.4336430Z adding 'torch/include/ATen/ops/special_gammaln_ops.h' 2025-07-24T03:55:18.4337480Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h.h' 2025-07-24T03:55:18.4338520Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4339440Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4340390Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cpu_dispatch.h' 2025-07-24T03:55:18.4341260Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_cuda_dispatch.h' 2025-07-24T03:55:18.4342080Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta.h' 2025-07-24T03:55:18.4342940Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_meta_dispatch.h' 2025-07-24T03:55:18.4343970Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_mps_dispatch.h' 2025-07-24T03:55:18.4344850Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_native.h' 2025-07-24T03:55:18.4345960Z adding 'torch/include/ATen/ops/special_hermite_polynomial_h_ops.h' 2025-07-24T03:55:18.4346970Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he.h' 2025-07-24T03:55:18.4348210Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4349140Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4349900Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cpu_dispatch.h' 2025-07-24T03:55:18.4350730Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_cuda_dispatch.h' 2025-07-24T03:55:18.4351750Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta.h' 2025-07-24T03:55:18.4352610Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_meta_dispatch.h' 2025-07-24T03:55:18.4353420Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_mps_dispatch.h' 2025-07-24T03:55:18.4354290Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_native.h' 2025-07-24T03:55:18.4355610Z adding 'torch/include/ATen/ops/special_hermite_polynomial_he_ops.h' 2025-07-24T03:55:18.4356430Z adding 'torch/include/ATen/ops/special_i0.h' 2025-07-24T03:55:18.4357380Z adding 'torch/include/ATen/ops/special_i0_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4358130Z adding 'torch/include/ATen/ops/special_i0_native.h' 2025-07-24T03:55:18.4359260Z adding 'torch/include/ATen/ops/special_i0_ops.h' 2025-07-24T03:55:18.4360120Z adding 'torch/include/ATen/ops/special_i0e.h' 2025-07-24T03:55:18.4361120Z adding 'torch/include/ATen/ops/special_i0e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4361880Z adding 'torch/include/ATen/ops/special_i0e_cpu_dispatch.h' 2025-07-24T03:55:18.4362900Z adding 'torch/include/ATen/ops/special_i0e_cuda_dispatch.h' 2025-07-24T03:55:18.4363740Z adding 'torch/include/ATen/ops/special_i0e_meta.h' 2025-07-24T03:55:18.4364570Z adding 'torch/include/ATen/ops/special_i0e_meta_dispatch.h' 2025-07-24T03:55:18.4365390Z adding 'torch/include/ATen/ops/special_i0e_mps_dispatch.h' 2025-07-24T03:55:18.4366390Z adding 'torch/include/ATen/ops/special_i0e_native.h' 2025-07-24T03:55:18.4367330Z adding 'torch/include/ATen/ops/special_i0e_ops.h' 2025-07-24T03:55:18.4368180Z adding 'torch/include/ATen/ops/special_i1.h' 2025-07-24T03:55:18.4369160Z adding 'torch/include/ATen/ops/special_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4370110Z adding 'torch/include/ATen/ops/special_i1_cpu_dispatch.h' 2025-07-24T03:55:18.4370940Z adding 'torch/include/ATen/ops/special_i1_cuda_dispatch.h' 2025-07-24T03:55:18.4371750Z adding 'torch/include/ATen/ops/special_i1_meta.h' 2025-07-24T03:55:18.4372560Z adding 'torch/include/ATen/ops/special_i1_meta_dispatch.h' 2025-07-24T03:55:18.4373540Z adding 'torch/include/ATen/ops/special_i1_mps_dispatch.h' 2025-07-24T03:55:18.4374410Z adding 'torch/include/ATen/ops/special_i1_native.h' 2025-07-24T03:55:18.4375320Z adding 'torch/include/ATen/ops/special_i1_ops.h' 2025-07-24T03:55:18.4376180Z adding 'torch/include/ATen/ops/special_i1e.h' 2025-07-24T03:55:18.4377370Z adding 'torch/include/ATen/ops/special_i1e_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4378090Z adding 'torch/include/ATen/ops/special_i1e_cpu_dispatch.h' 2025-07-24T03:55:18.4378900Z adding 'torch/include/ATen/ops/special_i1e_cuda_dispatch.h' 2025-07-24T03:55:18.4379720Z adding 'torch/include/ATen/ops/special_i1e_meta.h' 2025-07-24T03:55:18.4380740Z adding 'torch/include/ATen/ops/special_i1e_meta_dispatch.h' 2025-07-24T03:55:18.4381550Z adding 'torch/include/ATen/ops/special_i1e_mps_dispatch.h' 2025-07-24T03:55:18.4382360Z adding 'torch/include/ATen/ops/special_i1e_native.h' 2025-07-24T03:55:18.4383270Z adding 'torch/include/ATen/ops/special_i1e_ops.h' 2025-07-24T03:55:18.4384520Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l.h' 2025-07-24T03:55:18.4385540Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4386450Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4387260Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cpu_dispatch.h' 2025-07-24T03:55:18.4388230Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_cuda_dispatch.h' 2025-07-24T03:55:18.4389070Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta.h' 2025-07-24T03:55:18.4389900Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_meta_dispatch.h' 2025-07-24T03:55:18.4390760Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_native.h' 2025-07-24T03:55:18.4392070Z adding 'torch/include/ATen/ops/special_laguerre_polynomial_l_ops.h' 2025-07-24T03:55:18.4393070Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p.h' 2025-07-24T03:55:18.4394080Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4394970Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4395910Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cpu_dispatch.h' 2025-07-24T03:55:18.4396730Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_cuda_dispatch.h' 2025-07-24T03:55:18.4397550Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta.h' 2025-07-24T03:55:18.4398410Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_meta_dispatch.h' 2025-07-24T03:55:18.4399450Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_native.h' 2025-07-24T03:55:18.4400560Z adding 'torch/include/ATen/ops/special_legendre_polynomial_p_ops.h' 2025-07-24T03:55:18.4401400Z adding 'torch/include/ATen/ops/special_log1p.h' 2025-07-24T03:55:18.4402370Z adding 'torch/include/ATen/ops/special_log1p_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4403320Z adding 'torch/include/ATen/ops/special_log1p_native.h' 2025-07-24T03:55:18.4404260Z adding 'torch/include/ATen/ops/special_log1p_ops.h' 2025-07-24T03:55:18.4405140Z adding 'torch/include/ATen/ops/special_log_ndtr.h' 2025-07-24T03:55:18.4406160Z adding 'torch/include/ATen/ops/special_log_ndtr_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4407140Z adding 'torch/include/ATen/ops/special_log_ndtr_cpu_dispatch.h' 2025-07-24T03:55:18.4408040Z adding 'torch/include/ATen/ops/special_log_ndtr_cuda_dispatch.h' 2025-07-24T03:55:18.4408820Z adding 'torch/include/ATen/ops/special_log_ndtr_meta.h' 2025-07-24T03:55:18.4409680Z adding 'torch/include/ATen/ops/special_log_ndtr_meta_dispatch.h' 2025-07-24T03:55:18.4410740Z adding 'torch/include/ATen/ops/special_log_ndtr_native.h' 2025-07-24T03:55:18.4411800Z adding 'torch/include/ATen/ops/special_log_ndtr_ops.h' 2025-07-24T03:55:18.4412720Z adding 'torch/include/ATen/ops/special_log_softmax.h' 2025-07-24T03:55:18.4413860Z adding 'torch/include/ATen/ops/special_log_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4414820Z adding 'torch/include/ATen/ops/special_log_softmax_native.h' 2025-07-24T03:55:18.4415810Z adding 'torch/include/ATen/ops/special_log_softmax_ops.h' 2025-07-24T03:55:18.4416670Z adding 'torch/include/ATen/ops/special_logit.h' 2025-07-24T03:55:18.4417630Z adding 'torch/include/ATen/ops/special_logit_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4418580Z adding 'torch/include/ATen/ops/special_logit_native.h' 2025-07-24T03:55:18.4419520Z adding 'torch/include/ATen/ops/special_logit_ops.h' 2025-07-24T03:55:18.4420420Z adding 'torch/include/ATen/ops/special_logsumexp.h' 2025-07-24T03:55:18.4421440Z adding 'torch/include/ATen/ops/special_logsumexp_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4422390Z adding 'torch/include/ATen/ops/special_logsumexp_native.h' 2025-07-24T03:55:18.4423420Z adding 'torch/include/ATen/ops/special_logsumexp_ops.h' 2025-07-24T03:55:18.4424380Z adding 'torch/include/ATen/ops/special_modified_bessel_i0.h' 2025-07-24T03:55:18.4425420Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4426450Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cpu_dispatch.h' 2025-07-24T03:55:18.4427410Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_cuda_dispatch.h' 2025-07-24T03:55:18.4428250Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta.h' 2025-07-24T03:55:18.4429170Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_meta_dispatch.h' 2025-07-24T03:55:18.4430230Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_mps_dispatch.h' 2025-07-24T03:55:18.4431080Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_native.h' 2025-07-24T03:55:18.4431980Z adding 'torch/include/ATen/ops/special_modified_bessel_i0_ops.h' 2025-07-24T03:55:18.4432860Z adding 'torch/include/ATen/ops/special_modified_bessel_i1.h' 2025-07-24T03:55:18.4434060Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4434780Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cpu_dispatch.h' 2025-07-24T03:55:18.4435600Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_cuda_dispatch.h' 2025-07-24T03:55:18.4436390Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta.h' 2025-07-24T03:55:18.4437430Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_meta_dispatch.h' 2025-07-24T03:55:18.4438320Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_mps_dispatch.h' 2025-07-24T03:55:18.4439160Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_native.h' 2025-07-24T03:55:18.4440090Z adding 'torch/include/ATen/ops/special_modified_bessel_i1_ops.h' 2025-07-24T03:55:18.4441210Z adding 'torch/include/ATen/ops/special_modified_bessel_k0.h' 2025-07-24T03:55:18.4442230Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4442990Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cpu_dispatch.h' 2025-07-24T03:55:18.4443810Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_cuda_dispatch.h' 2025-07-24T03:55:18.4444840Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta.h' 2025-07-24T03:55:18.4445690Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_meta_dispatch.h' 2025-07-24T03:55:18.4446540Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_mps_dispatch.h' 2025-07-24T03:55:18.4447420Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_native.h' 2025-07-24T03:55:18.4448590Z adding 'torch/include/ATen/ops/special_modified_bessel_k0_ops.h' 2025-07-24T03:55:18.4449540Z adding 'torch/include/ATen/ops/special_modified_bessel_k1.h' 2025-07-24T03:55:18.4450560Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4451360Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cpu_dispatch.h' 2025-07-24T03:55:18.4452430Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_cuda_dispatch.h' 2025-07-24T03:55:18.4453320Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta.h' 2025-07-24T03:55:18.4454230Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_meta_dispatch.h' 2025-07-24T03:55:18.4455080Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_mps_dispatch.h' 2025-07-24T03:55:18.4456160Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_native.h' 2025-07-24T03:55:18.4457150Z adding 'torch/include/ATen/ops/special_modified_bessel_k1_ops.h' 2025-07-24T03:55:18.4458070Z adding 'torch/include/ATen/ops/special_multigammaln.h' 2025-07-24T03:55:18.4459100Z adding 'torch/include/ATen/ops/special_multigammaln_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4460160Z adding 'torch/include/ATen/ops/special_multigammaln_native.h' 2025-07-24T03:55:18.4461160Z adding 'torch/include/ATen/ops/special_multigammaln_ops.h' 2025-07-24T03:55:18.4462070Z adding 'torch/include/ATen/ops/special_ndtr.h' 2025-07-24T03:55:18.4463090Z adding 'torch/include/ATen/ops/special_ndtr_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4464090Z adding 'torch/include/ATen/ops/special_ndtr_native.h' 2025-07-24T03:55:18.4465090Z adding 'torch/include/ATen/ops/special_ndtr_ops.h' 2025-07-24T03:55:18.4466080Z adding 'torch/include/ATen/ops/special_ndtri.h' 2025-07-24T03:55:18.4467050Z adding 'torch/include/ATen/ops/special_ndtri_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4468080Z adding 'torch/include/ATen/ops/special_ndtri_cpu_dispatch.h' 2025-07-24T03:55:18.4468980Z adding 'torch/include/ATen/ops/special_ndtri_cuda_dispatch.h' 2025-07-24T03:55:18.4469880Z adding 'torch/include/ATen/ops/special_ndtri_meta.h' 2025-07-24T03:55:18.4470800Z adding 'torch/include/ATen/ops/special_ndtri_meta_dispatch.h' 2025-07-24T03:55:18.4471880Z adding 'torch/include/ATen/ops/special_ndtri_native.h' 2025-07-24T03:55:18.4472860Z adding 'torch/include/ATen/ops/special_ndtri_ops.h' 2025-07-24T03:55:18.4473810Z adding 'torch/include/ATen/ops/special_polygamma.h' 2025-07-24T03:55:18.4474860Z adding 'torch/include/ATen/ops/special_polygamma_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4475870Z adding 'torch/include/ATen/ops/special_polygamma_native.h' 2025-07-24T03:55:18.4476880Z adding 'torch/include/ATen/ops/special_polygamma_ops.h' 2025-07-24T03:55:18.4477770Z adding 'torch/include/ATen/ops/special_psi.h' 2025-07-24T03:55:18.4478760Z adding 'torch/include/ATen/ops/special_psi_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4479700Z adding 'torch/include/ATen/ops/special_psi_native.h' 2025-07-24T03:55:18.4480630Z adding 'torch/include/ATen/ops/special_psi_ops.h' 2025-07-24T03:55:18.4481530Z adding 'torch/include/ATen/ops/special_round.h' 2025-07-24T03:55:18.4482470Z adding 'torch/include/ATen/ops/special_round_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4483420Z adding 'torch/include/ATen/ops/special_round_native.h' 2025-07-24T03:55:18.4484380Z adding 'torch/include/ATen/ops/special_round_ops.h' 2025-07-24T03:55:18.4485330Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0.h' 2025-07-24T03:55:18.4486350Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4487310Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cpu_dispatch.h' 2025-07-24T03:55:18.4488160Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_cuda_dispatch.h' 2025-07-24T03:55:18.4489010Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta.h' 2025-07-24T03:55:18.4489850Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_meta_dispatch.h' 2025-07-24T03:55:18.4490890Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_mps_dispatch.h' 2025-07-24T03:55:18.4491740Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_native.h' 2025-07-24T03:55:18.4492690Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k0_ops.h' 2025-07-24T03:55:18.4493530Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1.h' 2025-07-24T03:55:18.4494730Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4495460Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cpu_dispatch.h' 2025-07-24T03:55:18.4496300Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_cuda_dispatch.h' 2025-07-24T03:55:18.4497110Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta.h' 2025-07-24T03:55:18.4498140Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_meta_dispatch.h' 2025-07-24T03:55:18.4498950Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_mps_dispatch.h' 2025-07-24T03:55:18.4499770Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_native.h' 2025-07-24T03:55:18.4500690Z adding 'torch/include/ATen/ops/special_scaled_modified_bessel_k1_ops.h' 2025-07-24T03:55:18.4501940Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t.h' 2025-07-24T03:55:18.4502970Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4503910Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4504650Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cpu_dispatch.h' 2025-07-24T03:55:18.4505680Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_cuda_dispatch.h' 2025-07-24T03:55:18.4506510Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta.h' 2025-07-24T03:55:18.4507720Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_meta_dispatch.h' 2025-07-24T03:55:18.4508560Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_mps_dispatch.h' 2025-07-24T03:55:18.4509620Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_native.h' 2025-07-24T03:55:18.4510740Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_t_ops.h' 2025-07-24T03:55:18.4511760Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u.h' 2025-07-24T03:55:18.4512790Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4513910Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4514670Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cpu_dispatch.h' 2025-07-24T03:55:18.4515520Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_cuda_dispatch.h' 2025-07-24T03:55:18.4516360Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta.h' 2025-07-24T03:55:18.4517440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_meta_dispatch.h' 2025-07-24T03:55:18.4518270Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_mps_dispatch.h' 2025-07-24T03:55:18.4519140Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_native.h' 2025-07-24T03:55:18.4520240Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_u_ops.h' 2025-07-24T03:55:18.4521440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v.h' 2025-07-24T03:55:18.4522470Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4523380Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4524110Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cpu_dispatch.h' 2025-07-24T03:55:18.4525120Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_cuda_dispatch.h' 2025-07-24T03:55:18.4525940Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta.h' 2025-07-24T03:55:18.4526810Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_meta_dispatch.h' 2025-07-24T03:55:18.4527590Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_mps_dispatch.h' 2025-07-24T03:55:18.4528650Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_native.h' 2025-07-24T03:55:18.4529740Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_v_ops.h' 2025-07-24T03:55:18.4530750Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w.h' 2025-07-24T03:55:18.4531750Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4532860Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4533610Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cpu_dispatch.h' 2025-07-24T03:55:18.4534440Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_cuda_dispatch.h' 2025-07-24T03:55:18.4535250Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta.h' 2025-07-24T03:55:18.4536320Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_meta_dispatch.h' 2025-07-24T03:55:18.4537190Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_mps_dispatch.h' 2025-07-24T03:55:18.4538010Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_native.h' 2025-07-24T03:55:18.4539090Z adding 'torch/include/ATen/ops/special_shifted_chebyshev_polynomial_w_ops.h' 2025-07-24T03:55:18.4540160Z adding 'torch/include/ATen/ops/special_sinc.h' 2025-07-24T03:55:18.4541150Z adding 'torch/include/ATen/ops/special_sinc_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4541920Z adding 'torch/include/ATen/ops/special_sinc_native.h' 2025-07-24T03:55:18.4542920Z adding 'torch/include/ATen/ops/special_sinc_ops.h' 2025-07-24T03:55:18.4544010Z adding 'torch/include/ATen/ops/special_softmax.h' 2025-07-24T03:55:18.4545020Z adding 'torch/include/ATen/ops/special_softmax_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4545800Z adding 'torch/include/ATen/ops/special_softmax_native.h' 2025-07-24T03:55:18.4546750Z adding 'torch/include/ATen/ops/special_softmax_ops.h' 2025-07-24T03:55:18.4547880Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0.h' 2025-07-24T03:55:18.4549030Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4549780Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cpu_dispatch.h' 2025-07-24T03:55:18.4550620Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_cuda_dispatch.h' 2025-07-24T03:55:18.4551640Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta.h' 2025-07-24T03:55:18.4552500Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_meta_dispatch.h' 2025-07-24T03:55:18.4553290Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_mps_dispatch.h' 2025-07-24T03:55:18.4554110Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_native.h' 2025-07-24T03:55:18.4555230Z adding 'torch/include/ATen/ops/special_spherical_bessel_j0_ops.h' 2025-07-24T03:55:18.4556210Z adding 'torch/include/ATen/ops/special_xlog1py.h' 2025-07-24T03:55:18.4557230Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4558130Z adding 'torch/include/ATen/ops/special_xlog1py_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4559080Z adding 'torch/include/ATen/ops/special_xlog1py_cpu_dispatch.h' 2025-07-24T03:55:18.4559940Z adding 'torch/include/ATen/ops/special_xlog1py_cuda_dispatch.h' 2025-07-24T03:55:18.4560760Z adding 'torch/include/ATen/ops/special_xlog1py_meta.h' 2025-07-24T03:55:18.4561600Z adding 'torch/include/ATen/ops/special_xlog1py_meta_dispatch.h' 2025-07-24T03:55:18.4562610Z adding 'torch/include/ATen/ops/special_xlog1py_mps_dispatch.h' 2025-07-24T03:55:18.4563510Z adding 'torch/include/ATen/ops/special_xlog1py_native.h' 2025-07-24T03:55:18.4564590Z adding 'torch/include/ATen/ops/special_xlog1py_ops.h' 2025-07-24T03:55:18.4565590Z adding 'torch/include/ATen/ops/special_xlogy.h' 2025-07-24T03:55:18.4566810Z adding 'torch/include/ATen/ops/special_xlogy_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4567640Z adding 'torch/include/ATen/ops/special_xlogy_native.h' 2025-07-24T03:55:18.4568750Z adding 'torch/include/ATen/ops/special_xlogy_ops.h' 2025-07-24T03:55:18.4569820Z adding 'torch/include/ATen/ops/special_zeta.h' 2025-07-24T03:55:18.4571020Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4572010Z adding 'torch/include/ATen/ops/special_zeta_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4572730Z adding 'torch/include/ATen/ops/special_zeta_cpu_dispatch.h' 2025-07-24T03:55:18.4573550Z adding 'torch/include/ATen/ops/special_zeta_cuda_dispatch.h' 2025-07-24T03:55:18.4574560Z adding 'torch/include/ATen/ops/special_zeta_meta.h' 2025-07-24T03:55:18.4575420Z adding 'torch/include/ATen/ops/special_zeta_meta_dispatch.h' 2025-07-24T03:55:18.4576240Z adding 'torch/include/ATen/ops/special_zeta_mps_dispatch.h' 2025-07-24T03:55:18.4577130Z adding 'torch/include/ATen/ops/special_zeta_native.h' 2025-07-24T03:55:18.4578450Z adding 'torch/include/ATen/ops/special_zeta_ops.h' 2025-07-24T03:55:18.4579430Z adding 'torch/include/ATen/ops/split.h' 2025-07-24T03:55:18.4580430Z adding 'torch/include/ATen/ops/split_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4581290Z adding 'torch/include/ATen/ops/split_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4582470Z adding 'torch/include/ATen/ops/split_copy.h' 2025-07-24T03:55:18.4583490Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4584410Z adding 'torch/include/ATen/ops/split_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4585140Z adding 'torch/include/ATen/ops/split_copy_native.h' 2025-07-24T03:55:18.4586330Z adding 'torch/include/ATen/ops/split_copy_ops.h' 2025-07-24T03:55:18.4587190Z adding 'torch/include/ATen/ops/split_native.h' 2025-07-24T03:55:18.4588170Z adding 'torch/include/ATen/ops/split_ops.h' 2025-07-24T03:55:18.4589110Z adding 'torch/include/ATen/ops/split_with_sizes.h' 2025-07-24T03:55:18.4590300Z adding 'torch/include/ATen/ops/split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4591270Z adding 'torch/include/ATen/ops/split_with_sizes_copy.h' 2025-07-24T03:55:18.4592300Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4593260Z adding 'torch/include/ATen/ops/split_with_sizes_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4594230Z adding 'torch/include/ATen/ops/split_with_sizes_copy_cuda_dispatch.h' 2025-07-24T03:55:18.4595110Z adding 'torch/include/ATen/ops/split_with_sizes_copy_native.h' 2025-07-24T03:55:18.4596100Z adding 'torch/include/ATen/ops/split_with_sizes_copy_ops.h' 2025-07-24T03:55:18.4596950Z adding 'torch/include/ATen/ops/split_with_sizes_native.h' 2025-07-24T03:55:18.4598040Z adding 'torch/include/ATen/ops/split_with_sizes_ops.h' 2025-07-24T03:55:18.4598950Z adding 'torch/include/ATen/ops/sqrt.h' 2025-07-24T03:55:18.4599950Z adding 'torch/include/ATen/ops/sqrt_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4600730Z adding 'torch/include/ATen/ops/sqrt_cpu_dispatch.h' 2025-07-24T03:55:18.4601780Z adding 'torch/include/ATen/ops/sqrt_cuda_dispatch.h' 2025-07-24T03:55:18.4602590Z adding 'torch/include/ATen/ops/sqrt_meta.h' 2025-07-24T03:55:18.4603490Z adding 'torch/include/ATen/ops/sqrt_meta_dispatch.h' 2025-07-24T03:55:18.4604290Z adding 'torch/include/ATen/ops/sqrt_mps_dispatch.h' 2025-07-24T03:55:18.4605380Z adding 'torch/include/ATen/ops/sqrt_native.h' 2025-07-24T03:55:18.4606360Z adding 'torch/include/ATen/ops/sqrt_ops.h' 2025-07-24T03:55:18.4607300Z adding 'torch/include/ATen/ops/square.h' 2025-07-24T03:55:18.4608360Z adding 'torch/include/ATen/ops/square_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4609340Z adding 'torch/include/ATen/ops/square_native.h' 2025-07-24T03:55:18.4610330Z adding 'torch/include/ATen/ops/square_ops.h' 2025-07-24T03:55:18.4611240Z adding 'torch/include/ATen/ops/squeeze.h' 2025-07-24T03:55:18.4612260Z adding 'torch/include/ATen/ops/squeeze_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4613330Z adding 'torch/include/ATen/ops/squeeze_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4614230Z adding 'torch/include/ATen/ops/squeeze_copy.h' 2025-07-24T03:55:18.4615250Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4616150Z adding 'torch/include/ATen/ops/squeeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4617100Z adding 'torch/include/ATen/ops/squeeze_copy_native.h' 2025-07-24T03:55:18.4618170Z adding 'torch/include/ATen/ops/squeeze_copy_ops.h' 2025-07-24T03:55:18.4622130Z adding 'torch/include/ATen/ops/squeeze_native.h' 2025-07-24T03:55:18.4622330Z adding 'torch/include/ATen/ops/squeeze_ops.h' 2025-07-24T03:55:18.4622400Z adding 'torch/include/ATen/ops/sspaddmm.h' 2025-07-24T03:55:18.4623440Z adding 'torch/include/ATen/ops/sspaddmm_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4623570Z adding 'torch/include/ATen/ops/sspaddmm_cpu_dispatch.h' 2025-07-24T03:55:18.4623930Z adding 'torch/include/ATen/ops/sspaddmm_cuda_dispatch.h' 2025-07-24T03:55:18.4625130Z adding 'torch/include/ATen/ops/sspaddmm_native.h' 2025-07-24T03:55:18.4626010Z adding 'torch/include/ATen/ops/sspaddmm_ops.h' 2025-07-24T03:55:18.4626880Z adding 'torch/include/ATen/ops/stack.h' 2025-07-24T03:55:18.4627860Z adding 'torch/include/ATen/ops/stack_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4628840Z adding 'torch/include/ATen/ops/stack_native.h' 2025-07-24T03:55:18.4629850Z adding 'torch/include/ATen/ops/stack_ops.h' 2025-07-24T03:55:18.4630980Z adding 'torch/include/ATen/ops/std.h' 2025-07-24T03:55:18.4632040Z adding 'torch/include/ATen/ops/std_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4633070Z adding 'torch/include/ATen/ops/std_cpu_dispatch.h' 2025-07-24T03:55:18.4633940Z adding 'torch/include/ATen/ops/std_cuda_dispatch.h' 2025-07-24T03:55:18.4634980Z adding 'torch/include/ATen/ops/std_mean.h' 2025-07-24T03:55:18.4635970Z adding 'torch/include/ATen/ops/std_mean_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4637080Z adding 'torch/include/ATen/ops/std_mean_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4637910Z adding 'torch/include/ATen/ops/std_mean_cpu_dispatch.h' 2025-07-24T03:55:18.4638740Z adding 'torch/include/ATen/ops/std_mean_cuda_dispatch.h' 2025-07-24T03:55:18.4639580Z adding 'torch/include/ATen/ops/std_mean_mps_dispatch.h' 2025-07-24T03:55:18.4640670Z adding 'torch/include/ATen/ops/std_mean_native.h' 2025-07-24T03:55:18.4641870Z adding 'torch/include/ATen/ops/std_mean_ops.h' 2025-07-24T03:55:18.4642790Z adding 'torch/include/ATen/ops/std_mps_dispatch.h' 2025-07-24T03:55:18.4643710Z adding 'torch/include/ATen/ops/std_native.h' 2025-07-24T03:55:18.4645350Z adding 'torch/include/ATen/ops/std_ops.h' 2025-07-24T03:55:18.4646320Z adding 'torch/include/ATen/ops/stft.h' 2025-07-24T03:55:18.4647340Z adding 'torch/include/ATen/ops/stft_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4648160Z adding 'torch/include/ATen/ops/stft_native.h' 2025-07-24T03:55:18.4649390Z adding 'torch/include/ATen/ops/stft_ops.h' 2025-07-24T03:55:18.4650300Z adding 'torch/include/ATen/ops/stride.h' 2025-07-24T03:55:18.4651240Z adding 'torch/include/ATen/ops/stride_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4652000Z adding 'torch/include/ATen/ops/stride_native.h' 2025-07-24T03:55:18.4653130Z adding 'torch/include/ATen/ops/stride_ops.h' 2025-07-24T03:55:18.4654090Z adding 'torch/include/ATen/ops/sub.h' 2025-07-24T03:55:18.4655110Z adding 'torch/include/ATen/ops/sub_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4656040Z adding 'torch/include/ATen/ops/sub_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4656960Z adding 'torch/include/ATen/ops/sub_cpu_dispatch.h' 2025-07-24T03:55:18.4657830Z adding 'torch/include/ATen/ops/sub_cuda_dispatch.h' 2025-07-24T03:55:18.4658690Z adding 'torch/include/ATen/ops/sub_meta.h' 2025-07-24T03:55:18.4659550Z adding 'torch/include/ATen/ops/sub_meta_dispatch.h' 2025-07-24T03:55:18.4660560Z adding 'torch/include/ATen/ops/sub_mps_dispatch.h' 2025-07-24T03:55:18.4661490Z adding 'torch/include/ATen/ops/sub_native.h' 2025-07-24T03:55:18.4662630Z adding 'torch/include/ATen/ops/sub_ops.h' 2025-07-24T03:55:18.4663560Z adding 'torch/include/ATen/ops/subtract.h' 2025-07-24T03:55:18.4664740Z adding 'torch/include/ATen/ops/subtract_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4665530Z adding 'torch/include/ATen/ops/subtract_native.h' 2025-07-24T03:55:18.4666620Z adding 'torch/include/ATen/ops/subtract_ops.h' 2025-07-24T03:55:18.4667670Z adding 'torch/include/ATen/ops/sum.h' 2025-07-24T03:55:18.4668890Z adding 'torch/include/ATen/ops/sum_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4669850Z adding 'torch/include/ATen/ops/sum_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4670700Z adding 'torch/include/ATen/ops/sum_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4671540Z adding 'torch/include/ATen/ops/sum_cpu_dispatch.h' 2025-07-24T03:55:18.4672570Z adding 'torch/include/ATen/ops/sum_cuda_dispatch.h' 2025-07-24T03:55:18.4673440Z adding 'torch/include/ATen/ops/sum_meta.h' 2025-07-24T03:55:18.4674310Z adding 'torch/include/ATen/ops/sum_meta_dispatch.h' 2025-07-24T03:55:18.4675120Z adding 'torch/include/ATen/ops/sum_mps_dispatch.h' 2025-07-24T03:55:18.4676280Z adding 'torch/include/ATen/ops/sum_native.h' 2025-07-24T03:55:18.4677440Z adding 'torch/include/ATen/ops/sum_ops.h' 2025-07-24T03:55:18.4678360Z adding 'torch/include/ATen/ops/sum_to_size.h' 2025-07-24T03:55:18.4679300Z adding 'torch/include/ATen/ops/sum_to_size_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4680250Z adding 'torch/include/ATen/ops/sum_to_size_native.h' 2025-07-24T03:55:18.4681150Z adding 'torch/include/ATen/ops/sum_to_size_ops.h' 2025-07-24T03:55:18.4682050Z adding 'torch/include/ATen/ops/svd.h' 2025-07-24T03:55:18.4683030Z adding 'torch/include/ATen/ops/svd_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4684000Z adding 'torch/include/ATen/ops/svd_native.h' 2025-07-24T03:55:18.4684990Z adding 'torch/include/ATen/ops/svd_ops.h' 2025-07-24T03:55:18.4685870Z adding 'torch/include/ATen/ops/swapaxes.h' 2025-07-24T03:55:18.4686860Z adding 'torch/include/ATen/ops/swapaxes_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4687850Z adding 'torch/include/ATen/ops/swapaxes_native.h' 2025-07-24T03:55:18.4688790Z adding 'torch/include/ATen/ops/swapaxes_ops.h' 2025-07-24T03:55:18.4689650Z adding 'torch/include/ATen/ops/swapdims.h' 2025-07-24T03:55:18.4690600Z adding 'torch/include/ATen/ops/swapdims_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4691560Z adding 'torch/include/ATen/ops/swapdims_native.h' 2025-07-24T03:55:18.4692500Z adding 'torch/include/ATen/ops/swapdims_ops.h' 2025-07-24T03:55:18.4693390Z adding 'torch/include/ATen/ops/sym_constrain_range.h' 2025-07-24T03:55:18.4694370Z adding 'torch/include/ATen/ops/sym_constrain_range_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4695350Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size.h' 2025-07-24T03:55:18.4696350Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4697120Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_native.h' 2025-07-24T03:55:18.4698010Z adding 'torch/include/ATen/ops/sym_constrain_range_for_size_ops.h' 2025-07-24T03:55:18.4699010Z adding 'torch/include/ATen/ops/sym_constrain_range_native.h' 2025-07-24T03:55:18.4699920Z adding 'torch/include/ATen/ops/sym_constrain_range_ops.h' 2025-07-24T03:55:18.4700750Z adding 'torch/include/ATen/ops/sym_numel.h' 2025-07-24T03:55:18.4701740Z adding 'torch/include/ATen/ops/sym_numel_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4702640Z adding 'torch/include/ATen/ops/sym_numel_native.h' 2025-07-24T03:55:18.4703550Z adding 'torch/include/ATen/ops/sym_numel_ops.h' 2025-07-24T03:55:18.4704410Z adding 'torch/include/ATen/ops/sym_size.h' 2025-07-24T03:55:18.4705360Z adding 'torch/include/ATen/ops/sym_size_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4706300Z adding 'torch/include/ATen/ops/sym_size_native.h' 2025-07-24T03:55:18.4707200Z adding 'torch/include/ATen/ops/sym_size_ops.h' 2025-07-24T03:55:18.4708060Z adding 'torch/include/ATen/ops/sym_storage_offset.h' 2025-07-24T03:55:18.4709020Z adding 'torch/include/ATen/ops/sym_storage_offset_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4709980Z adding 'torch/include/ATen/ops/sym_storage_offset_native.h' 2025-07-24T03:55:18.4710870Z adding 'torch/include/ATen/ops/sym_storage_offset_ops.h' 2025-07-24T03:55:18.4711710Z adding 'torch/include/ATen/ops/sym_stride.h' 2025-07-24T03:55:18.4712650Z adding 'torch/include/ATen/ops/sym_stride_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4713570Z adding 'torch/include/ATen/ops/sym_stride_native.h' 2025-07-24T03:55:18.4714480Z adding 'torch/include/ATen/ops/sym_stride_ops.h' 2025-07-24T03:55:18.4715290Z adding 'torch/include/ATen/ops/t.h' 2025-07-24T03:55:18.4716290Z adding 'torch/include/ATen/ops/t_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4717230Z adding 'torch/include/ATen/ops/t_copy.h' 2025-07-24T03:55:18.4718190Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4719110Z adding 'torch/include/ATen/ops/t_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4719830Z adding 'torch/include/ATen/ops/t_copy_native.h' 2025-07-24T03:55:18.4720930Z adding 'torch/include/ATen/ops/t_copy_ops.h' 2025-07-24T03:55:18.4721760Z adding 'torch/include/ATen/ops/t_native.h' 2025-07-24T03:55:18.4722670Z adding 'torch/include/ATen/ops/t_ops.h' 2025-07-24T03:55:18.4723560Z adding 'torch/include/ATen/ops/take.h' 2025-07-24T03:55:18.4724700Z adding 'torch/include/ATen/ops/take_along_dim.h' 2025-07-24T03:55:18.4725770Z adding 'torch/include/ATen/ops/take_along_dim_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4726530Z adding 'torch/include/ATen/ops/take_along_dim_native.h' 2025-07-24T03:55:18.4727500Z adding 'torch/include/ATen/ops/take_along_dim_ops.h' 2025-07-24T03:55:18.4729140Z adding 'torch/include/ATen/ops/take_cpu_dispatch.h' 2025-07-24T03:55:18.4729800Z adding 'torch/include/ATen/ops/take_cuda_dispatch.h' 2025-07-24T03:55:18.4730640Z adding 'torch/include/ATen/ops/take_native.h' 2025-07-24T03:55:18.4731580Z adding 'torch/include/ATen/ops/take_ops.h' 2025-07-24T03:55:18.4732650Z adding 'torch/include/ATen/ops/tan.h' 2025-07-24T03:55:18.4733620Z adding 'torch/include/ATen/ops/tan_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4734350Z adding 'torch/include/ATen/ops/tan_cpu_dispatch.h' 2025-07-24T03:55:18.4735180Z adding 'torch/include/ATen/ops/tan_cuda_dispatch.h' 2025-07-24T03:55:18.4736210Z adding 'torch/include/ATen/ops/tan_meta.h' 2025-07-24T03:55:18.4737050Z adding 'torch/include/ATen/ops/tan_meta_dispatch.h' 2025-07-24T03:55:18.4737860Z adding 'torch/include/ATen/ops/tan_mps_dispatch.h' 2025-07-24T03:55:18.4738740Z adding 'torch/include/ATen/ops/tan_native.h' 2025-07-24T03:55:18.4739940Z adding 'torch/include/ATen/ops/tan_ops.h' 2025-07-24T03:55:18.4740830Z adding 'torch/include/ATen/ops/tanh.h' 2025-07-24T03:55:18.4741740Z adding 'torch/include/ATen/ops/tanh_backward.h' 2025-07-24T03:55:18.4742760Z adding 'torch/include/ATen/ops/tanh_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4743740Z adding 'torch/include/ATen/ops/tanh_backward_cpu_dispatch.h' 2025-07-24T03:55:18.4744560Z adding 'torch/include/ATen/ops/tanh_backward_cuda_dispatch.h' 2025-07-24T03:55:18.4745370Z adding 'torch/include/ATen/ops/tanh_backward_meta.h' 2025-07-24T03:55:18.4746250Z adding 'torch/include/ATen/ops/tanh_backward_meta_dispatch.h' 2025-07-24T03:55:18.4747310Z adding 'torch/include/ATen/ops/tanh_backward_mps_dispatch.h' 2025-07-24T03:55:18.4748130Z adding 'torch/include/ATen/ops/tanh_backward_native.h' 2025-07-24T03:55:18.4749050Z adding 'torch/include/ATen/ops/tanh_backward_ops.h' 2025-07-24T03:55:18.4750020Z adding 'torch/include/ATen/ops/tanh_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4750950Z adding 'torch/include/ATen/ops/tanh_cpu_dispatch.h' 2025-07-24T03:55:18.4751780Z adding 'torch/include/ATen/ops/tanh_cuda_dispatch.h' 2025-07-24T03:55:18.4752590Z adding 'torch/include/ATen/ops/tanh_meta.h' 2025-07-24T03:55:18.4753430Z adding 'torch/include/ATen/ops/tanh_meta_dispatch.h' 2025-07-24T03:55:18.4754400Z adding 'torch/include/ATen/ops/tanh_mps_dispatch.h' 2025-07-24T03:55:18.4755310Z adding 'torch/include/ATen/ops/tanh_native.h' 2025-07-24T03:55:18.4756260Z adding 'torch/include/ATen/ops/tanh_ops.h' 2025-07-24T03:55:18.4757240Z adding 'torch/include/ATen/ops/tensor.h' 2025-07-24T03:55:18.4758480Z adding 'torch/include/ATen/ops/tensor_split.h' 2025-07-24T03:55:18.4759510Z adding 'torch/include/ATen/ops/tensor_split_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4760290Z adding 'torch/include/ATen/ops/tensor_split_native.h' 2025-07-24T03:55:18.4761310Z adding 'torch/include/ATen/ops/tensor_split_ops.h' 2025-07-24T03:55:18.4762430Z adding 'torch/include/ATen/ops/tensordot.h' 2025-07-24T03:55:18.4763410Z adding 'torch/include/ATen/ops/tensordot_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4764160Z adding 'torch/include/ATen/ops/tensordot_native.h' 2025-07-24T03:55:18.4765130Z adding 'torch/include/ATen/ops/tensordot_ops.h' 2025-07-24T03:55:18.4766750Z adding 'torch/include/ATen/ops/thnn_conv2d.h' 2025-07-24T03:55:18.4767610Z adding 'torch/include/ATen/ops/thnn_conv2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4768420Z adding 'torch/include/ATen/ops/thnn_conv2d_native.h' 2025-07-24T03:55:18.4769390Z adding 'torch/include/ATen/ops/thnn_conv2d_ops.h' 2025-07-24T03:55:18.4770490Z adding 'torch/include/ATen/ops/threshold.h' 2025-07-24T03:55:18.4771410Z adding 'torch/include/ATen/ops/threshold_backward.h' 2025-07-24T03:55:18.4772440Z adding 'torch/include/ATen/ops/threshold_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4773210Z adding 'torch/include/ATen/ops/threshold_backward_cpu_dispatch.h' 2025-07-24T03:55:18.4774260Z adding 'torch/include/ATen/ops/threshold_backward_cuda_dispatch.h' 2025-07-24T03:55:18.4775080Z adding 'torch/include/ATen/ops/threshold_backward_meta.h' 2025-07-24T03:55:18.4775950Z adding 'torch/include/ATen/ops/threshold_backward_meta_dispatch.h' 2025-07-24T03:55:18.4776780Z adding 'torch/include/ATen/ops/threshold_backward_mps_dispatch.h' 2025-07-24T03:55:18.4777860Z adding 'torch/include/ATen/ops/threshold_backward_native.h' 2025-07-24T03:55:18.4778840Z adding 'torch/include/ATen/ops/threshold_backward_ops.h' 2025-07-24T03:55:18.4779860Z adding 'torch/include/ATen/ops/threshold_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4780620Z adding 'torch/include/ATen/ops/threshold_cpu_dispatch.h' 2025-07-24T03:55:18.4781640Z adding 'torch/include/ATen/ops/threshold_cuda_dispatch.h' 2025-07-24T03:55:18.4782500Z adding 'torch/include/ATen/ops/threshold_meta.h' 2025-07-24T03:55:18.4783320Z adding 'torch/include/ATen/ops/threshold_meta_dispatch.h' 2025-07-24T03:55:18.4784120Z adding 'torch/include/ATen/ops/threshold_mps_dispatch.h' 2025-07-24T03:55:18.4785200Z adding 'torch/include/ATen/ops/threshold_native.h' 2025-07-24T03:55:18.4786190Z adding 'torch/include/ATen/ops/threshold_ops.h' 2025-07-24T03:55:18.4787110Z adding 'torch/include/ATen/ops/tile.h' 2025-07-24T03:55:18.4788040Z adding 'torch/include/ATen/ops/tile_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4788990Z adding 'torch/include/ATen/ops/tile_native.h' 2025-07-24T03:55:18.4789890Z adding 'torch/include/ATen/ops/tile_ops.h' 2025-07-24T03:55:18.4790720Z adding 'torch/include/ATen/ops/to.h' 2025-07-24T03:55:18.4791780Z adding 'torch/include/ATen/ops/to_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4792680Z adding 'torch/include/ATen/ops/to_dense.h' 2025-07-24T03:55:18.4793580Z adding 'torch/include/ATen/ops/to_dense_backward.h' 2025-07-24T03:55:18.4794540Z adding 'torch/include/ATen/ops/to_dense_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4795310Z adding 'torch/include/ATen/ops/to_dense_backward_native.h' 2025-07-24T03:55:18.4796420Z adding 'torch/include/ATen/ops/to_dense_backward_ops.h' 2025-07-24T03:55:18.4797360Z adding 'torch/include/ATen/ops/to_dense_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4798120Z adding 'torch/include/ATen/ops/to_dense_native.h' 2025-07-24T03:55:18.4799030Z adding 'torch/include/ATen/ops/to_dense_ops.h' 2025-07-24T03:55:18.4800090Z adding 'torch/include/ATen/ops/to_mkldnn.h' 2025-07-24T03:55:18.4800990Z adding 'torch/include/ATen/ops/to_mkldnn_backward.h' 2025-07-24T03:55:18.4801940Z adding 'torch/include/ATen/ops/to_mkldnn_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4802680Z adding 'torch/include/ATen/ops/to_mkldnn_backward_native.h' 2025-07-24T03:55:18.4803750Z adding 'torch/include/ATen/ops/to_mkldnn_backward_ops.h' 2025-07-24T03:55:18.4804710Z adding 'torch/include/ATen/ops/to_mkldnn_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4805530Z adding 'torch/include/ATen/ops/to_mkldnn_cpu_dispatch.h' 2025-07-24T03:55:18.4806320Z adding 'torch/include/ATen/ops/to_mkldnn_native.h' 2025-07-24T03:55:18.4807450Z adding 'torch/include/ATen/ops/to_mkldnn_ops.h' 2025-07-24T03:55:18.4808330Z adding 'torch/include/ATen/ops/to_native.h' 2025-07-24T03:55:18.4809460Z adding 'torch/include/ATen/ops/to_ops.h' 2025-07-24T03:55:18.4810550Z adding 'torch/include/ATen/ops/to_padded_tensor.h' 2025-07-24T03:55:18.4811770Z adding 'torch/include/ATen/ops/to_padded_tensor_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4812580Z adding 'torch/include/ATen/ops/to_padded_tensor_native.h' 2025-07-24T03:55:18.4813530Z adding 'torch/include/ATen/ops/to_padded_tensor_ops.h' 2025-07-24T03:55:18.4814330Z adding 'torch/include/ATen/ops/to_sparse.h' 2025-07-24T03:55:18.4815330Z adding 'torch/include/ATen/ops/to_sparse_bsc.h' 2025-07-24T03:55:18.4816310Z adding 'torch/include/ATen/ops/to_sparse_bsc_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4817070Z adding 'torch/include/ATen/ops/to_sparse_bsc_native.h' 2025-07-24T03:55:18.4817970Z adding 'torch/include/ATen/ops/to_sparse_bsc_ops.h' 2025-07-24T03:55:18.4818960Z adding 'torch/include/ATen/ops/to_sparse_bsr.h' 2025-07-24T03:55:18.4819940Z adding 'torch/include/ATen/ops/to_sparse_bsr_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4820680Z adding 'torch/include/ATen/ops/to_sparse_bsr_native.h' 2025-07-24T03:55:18.4821590Z adding 'torch/include/ATen/ops/to_sparse_bsr_ops.h' 2025-07-24T03:55:18.4822740Z adding 'torch/include/ATen/ops/to_sparse_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4823480Z adding 'torch/include/ATen/ops/to_sparse_csc.h' 2025-07-24T03:55:18.4824430Z adding 'torch/include/ATen/ops/to_sparse_csc_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4825190Z adding 'torch/include/ATen/ops/to_sparse_csc_native.h' 2025-07-24T03:55:18.4826260Z adding 'torch/include/ATen/ops/to_sparse_csc_ops.h' 2025-07-24T03:55:18.4827060Z adding 'torch/include/ATen/ops/to_sparse_csr.h' 2025-07-24T03:55:18.4828010Z adding 'torch/include/ATen/ops/to_sparse_csr_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4828740Z adding 'torch/include/ATen/ops/to_sparse_csr_native.h' 2025-07-24T03:55:18.4829780Z adding 'torch/include/ATen/ops/to_sparse_csr_ops.h' 2025-07-24T03:55:18.4830640Z adding 'torch/include/ATen/ops/to_sparse_native.h' 2025-07-24T03:55:18.4831620Z adding 'torch/include/ATen/ops/to_sparse_ops.h' 2025-07-24T03:55:18.4832700Z adding 'torch/include/ATen/ops/topk.h' 2025-07-24T03:55:18.4833930Z adding 'torch/include/ATen/ops/topk_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4834760Z adding 'torch/include/ATen/ops/topk_cpu_dispatch.h' 2025-07-24T03:55:18.4835660Z adding 'torch/include/ATen/ops/topk_cuda_dispatch.h' 2025-07-24T03:55:18.4836470Z adding 'torch/include/ATen/ops/topk_meta.h' 2025-07-24T03:55:18.4837560Z adding 'torch/include/ATen/ops/topk_meta_dispatch.h' 2025-07-24T03:55:18.4838410Z adding 'torch/include/ATen/ops/topk_mps_dispatch.h' 2025-07-24T03:55:18.4839300Z adding 'torch/include/ATen/ops/topk_native.h' 2025-07-24T03:55:18.4840280Z adding 'torch/include/ATen/ops/topk_ops.h' 2025-07-24T03:55:18.4841360Z adding 'torch/include/ATen/ops/trace.h' 2025-07-24T03:55:18.4842300Z adding 'torch/include/ATen/ops/trace_backward.h' 2025-07-24T03:55:18.4843300Z adding 'torch/include/ATen/ops/trace_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4844040Z adding 'torch/include/ATen/ops/trace_backward_native.h' 2025-07-24T03:55:18.4845120Z adding 'torch/include/ATen/ops/trace_backward_ops.h' 2025-07-24T03:55:18.4846070Z adding 'torch/include/ATen/ops/trace_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4846880Z adding 'torch/include/ATen/ops/trace_cpu_dispatch.h' 2025-07-24T03:55:18.4847710Z adding 'torch/include/ATen/ops/trace_cuda_dispatch.h' 2025-07-24T03:55:18.4848750Z adding 'torch/include/ATen/ops/trace_mps_dispatch.h' 2025-07-24T03:55:18.4849600Z adding 'torch/include/ATen/ops/trace_native.h' 2025-07-24T03:55:18.4850550Z adding 'torch/include/ATen/ops/trace_ops.h' 2025-07-24T03:55:18.4851390Z adding 'torch/include/ATen/ops/transpose.h' 2025-07-24T03:55:18.4852540Z adding 'torch/include/ATen/ops/transpose_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4853400Z adding 'torch/include/ATen/ops/transpose_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4854240Z adding 'torch/include/ATen/ops/transpose_copy.h' 2025-07-24T03:55:18.4855210Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4856310Z adding 'torch/include/ATen/ops/transpose_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4857040Z adding 'torch/include/ATen/ops/transpose_copy_native.h' 2025-07-24T03:55:18.4857970Z adding 'torch/include/ATen/ops/transpose_copy_ops.h' 2025-07-24T03:55:18.4858810Z adding 'torch/include/ATen/ops/transpose_native.h' 2025-07-24T03:55:18.4860000Z adding 'torch/include/ATen/ops/transpose_ops.h' 2025-07-24T03:55:18.4860890Z adding 'torch/include/ATen/ops/trapezoid.h' 2025-07-24T03:55:18.4861840Z adding 'torch/include/ATen/ops/trapezoid_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4862590Z adding 'torch/include/ATen/ops/trapezoid_native.h' 2025-07-24T03:55:18.4863710Z adding 'torch/include/ATen/ops/trapezoid_ops.h' 2025-07-24T03:55:18.4864570Z adding 'torch/include/ATen/ops/trapz.h' 2025-07-24T03:55:18.4865560Z adding 'torch/include/ATen/ops/trapz_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4866320Z adding 'torch/include/ATen/ops/trapz_native.h' 2025-07-24T03:55:18.4867450Z adding 'torch/include/ATen/ops/trapz_ops.h' 2025-07-24T03:55:18.4868430Z adding 'torch/include/ATen/ops/triangular_solve.h' 2025-07-24T03:55:18.4869470Z adding 'torch/include/ATen/ops/triangular_solve_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4870260Z adding 'torch/include/ATen/ops/triangular_solve_cpu_dispatch.h' 2025-07-24T03:55:18.4871330Z adding 'torch/include/ATen/ops/triangular_solve_cuda_dispatch.h' 2025-07-24T03:55:18.4872170Z adding 'torch/include/ATen/ops/triangular_solve_meta.h' 2025-07-24T03:55:18.4873020Z adding 'torch/include/ATen/ops/triangular_solve_meta_dispatch.h' 2025-07-24T03:55:18.4873860Z adding 'torch/include/ATen/ops/triangular_solve_mps_dispatch.h' 2025-07-24T03:55:18.4874930Z adding 'torch/include/ATen/ops/triangular_solve_native.h' 2025-07-24T03:55:18.4875930Z adding 'torch/include/ATen/ops/triangular_solve_ops.h' 2025-07-24T03:55:18.4876780Z adding 'torch/include/ATen/ops/tril.h' 2025-07-24T03:55:18.4877800Z adding 'torch/include/ATen/ops/tril_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4878750Z adding 'torch/include/ATen/ops/tril_cpu_dispatch.h' 2025-07-24T03:55:18.4879640Z adding 'torch/include/ATen/ops/tril_cuda_dispatch.h' 2025-07-24T03:55:18.4880580Z adding 'torch/include/ATen/ops/tril_indices.h' 2025-07-24T03:55:18.4881560Z adding 'torch/include/ATen/ops/tril_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4882580Z adding 'torch/include/ATen/ops/tril_indices_cpu_dispatch.h' 2025-07-24T03:55:18.4883440Z adding 'torch/include/ATen/ops/tril_indices_cuda_dispatch.h' 2025-07-24T03:55:18.4884280Z adding 'torch/include/ATen/ops/tril_indices_mps_dispatch.h' 2025-07-24T03:55:18.4885130Z adding 'torch/include/ATen/ops/tril_indices_native.h' 2025-07-24T03:55:18.4886310Z adding 'torch/include/ATen/ops/tril_indices_ops.h' 2025-07-24T03:55:18.4887170Z adding 'torch/include/ATen/ops/tril_meta.h' 2025-07-24T03:55:18.4888020Z adding 'torch/include/ATen/ops/tril_meta_dispatch.h' 2025-07-24T03:55:18.4888850Z adding 'torch/include/ATen/ops/tril_mps_dispatch.h' 2025-07-24T03:55:18.4889880Z adding 'torch/include/ATen/ops/tril_native.h' 2025-07-24T03:55:18.4890880Z adding 'torch/include/ATen/ops/tril_ops.h' 2025-07-24T03:55:18.4891800Z adding 'torch/include/ATen/ops/triplet_margin_loss.h' 2025-07-24T03:55:18.4892770Z adding 'torch/include/ATen/ops/triplet_margin_loss_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4893740Z adding 'torch/include/ATen/ops/triplet_margin_loss_native.h' 2025-07-24T03:55:18.4894750Z adding 'torch/include/ATen/ops/triplet_margin_loss_ops.h' 2025-07-24T03:55:18.4895540Z adding 'torch/include/ATen/ops/triu.h' 2025-07-24T03:55:18.4896530Z adding 'torch/include/ATen/ops/triu_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4897430Z adding 'torch/include/ATen/ops/triu_cpu_dispatch.h' 2025-07-24T03:55:18.4898250Z adding 'torch/include/ATen/ops/triu_cuda_dispatch.h' 2025-07-24T03:55:18.4899200Z adding 'torch/include/ATen/ops/triu_indices.h' 2025-07-24T03:55:18.4900170Z adding 'torch/include/ATen/ops/triu_indices_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4901400Z adding 'torch/include/ATen/ops/triu_indices_cpu_dispatch.h' 2025-07-24T03:55:18.4902010Z adding 'torch/include/ATen/ops/triu_indices_cuda_dispatch.h' 2025-07-24T03:55:18.4902840Z adding 'torch/include/ATen/ops/triu_indices_mps_dispatch.h' 2025-07-24T03:55:18.4903700Z adding 'torch/include/ATen/ops/triu_indices_native.h' 2025-07-24T03:55:18.4904870Z adding 'torch/include/ATen/ops/triu_indices_ops.h' 2025-07-24T03:55:18.4905720Z adding 'torch/include/ATen/ops/triu_meta.h' 2025-07-24T03:55:18.4906560Z adding 'torch/include/ATen/ops/triu_meta_dispatch.h' 2025-07-24T03:55:18.4907360Z adding 'torch/include/ATen/ops/triu_mps_dispatch.h' 2025-07-24T03:55:18.4908390Z adding 'torch/include/ATen/ops/triu_native.h' 2025-07-24T03:55:18.4909370Z adding 'torch/include/ATen/ops/triu_ops.h' 2025-07-24T03:55:18.4910310Z adding 'torch/include/ATen/ops/true_divide.h' 2025-07-24T03:55:18.4911300Z adding 'torch/include/ATen/ops/true_divide_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4912260Z adding 'torch/include/ATen/ops/true_divide_native.h' 2025-07-24T03:55:18.4913350Z adding 'torch/include/ATen/ops/true_divide_ops.h' 2025-07-24T03:55:18.4914230Z adding 'torch/include/ATen/ops/trunc.h' 2025-07-24T03:55:18.4915240Z adding 'torch/include/ATen/ops/trunc_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4916170Z adding 'torch/include/ATen/ops/trunc_cpu_dispatch.h' 2025-07-24T03:55:18.4917000Z adding 'torch/include/ATen/ops/trunc_cuda_dispatch.h' 2025-07-24T03:55:18.4917830Z adding 'torch/include/ATen/ops/trunc_meta.h' 2025-07-24T03:55:18.4918670Z adding 'torch/include/ATen/ops/trunc_meta_dispatch.h' 2025-07-24T03:55:18.4919670Z adding 'torch/include/ATen/ops/trunc_mps_dispatch.h' 2025-07-24T03:55:18.4920540Z adding 'torch/include/ATen/ops/trunc_native.h' 2025-07-24T03:55:18.4921540Z adding 'torch/include/ATen/ops/trunc_ops.h' 2025-07-24T03:55:18.4922350Z adding 'torch/include/ATen/ops/type_as.h' 2025-07-24T03:55:18.4923480Z adding 'torch/include/ATen/ops/type_as_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4924240Z adding 'torch/include/ATen/ops/type_as_native.h' 2025-07-24T03:55:18.4925200Z adding 'torch/include/ATen/ops/type_as_ops.h' 2025-07-24T03:55:18.4926050Z adding 'torch/include/ATen/ops/unbind.h' 2025-07-24T03:55:18.4927200Z adding 'torch/include/ATen/ops/unbind_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4928090Z adding 'torch/include/ATen/ops/unbind_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4928910Z adding 'torch/include/ATen/ops/unbind_copy.h' 2025-07-24T03:55:18.4929890Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4930980Z adding 'torch/include/ATen/ops/unbind_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4931690Z adding 'torch/include/ATen/ops/unbind_copy_native.h' 2025-07-24T03:55:18.4932640Z adding 'torch/include/ATen/ops/unbind_copy_ops.h' 2025-07-24T03:55:18.4933500Z adding 'torch/include/ATen/ops/unbind_native.h' 2025-07-24T03:55:18.4934660Z adding 'torch/include/ATen/ops/unbind_ops.h' 2025-07-24T03:55:18.4935680Z adding 'torch/include/ATen/ops/unflatten.h' 2025-07-24T03:55:18.4936690Z adding 'torch/include/ATen/ops/unflatten_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4937510Z adding 'torch/include/ATen/ops/unflatten_dense_tensors.h' 2025-07-24T03:55:18.4938700Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4939440Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_native.h' 2025-07-24T03:55:18.4940360Z adding 'torch/include/ATen/ops/unflatten_dense_tensors_ops.h' 2025-07-24T03:55:18.4941170Z adding 'torch/include/ATen/ops/unflatten_native.h' 2025-07-24T03:55:18.4942370Z adding 'torch/include/ATen/ops/unflatten_ops.h' 2025-07-24T03:55:18.4943150Z adding 'torch/include/ATen/ops/unfold.h' 2025-07-24T03:55:18.4944800Z adding 'torch/include/ATen/ops/unfold_backward.h' 2025-07-24T03:55:18.4945680Z adding 'torch/include/ATen/ops/unfold_backward_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4946780Z adding 'torch/include/ATen/ops/unfold_backward_cpu_dispatch.h' 2025-07-24T03:55:18.4947620Z adding 'torch/include/ATen/ops/unfold_backward_cuda_dispatch.h' 2025-07-24T03:55:18.4948440Z adding 'torch/include/ATen/ops/unfold_backward_mps_dispatch.h' 2025-07-24T03:55:18.4949290Z adding 'torch/include/ATen/ops/unfold_backward_native.h' 2025-07-24T03:55:18.4950450Z adding 'torch/include/ATen/ops/unfold_backward_ops.h' 2025-07-24T03:55:18.4951380Z adding 'torch/include/ATen/ops/unfold_copy.h' 2025-07-24T03:55:18.4952350Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4953280Z adding 'torch/include/ATen/ops/unfold_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.4954200Z adding 'torch/include/ATen/ops/unfold_copy_native.h' 2025-07-24T03:55:18.4955150Z adding 'torch/include/ATen/ops/unfold_copy_ops.h' 2025-07-24T03:55:18.4956040Z adding 'torch/include/ATen/ops/unfold_cpu_dispatch.h' 2025-07-24T03:55:18.4956850Z adding 'torch/include/ATen/ops/unfold_cuda_dispatch.h' 2025-07-24T03:55:18.4957840Z adding 'torch/include/ATen/ops/unfold_meta_dispatch.h' 2025-07-24T03:55:18.4958650Z adding 'torch/include/ATen/ops/unfold_mps_dispatch.h' 2025-07-24T03:55:18.4959470Z adding 'torch/include/ATen/ops/unfold_native.h' 2025-07-24T03:55:18.4960420Z adding 'torch/include/ATen/ops/unfold_ops.h' 2025-07-24T03:55:18.4961570Z adding 'torch/include/ATen/ops/uniform.h' 2025-07-24T03:55:18.4962560Z adding 'torch/include/ATen/ops/uniform_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4963360Z adding 'torch/include/ATen/ops/uniform_cpu_dispatch.h' 2025-07-24T03:55:18.4964200Z adding 'torch/include/ATen/ops/uniform_cuda_dispatch.h' 2025-07-24T03:55:18.4965180Z adding 'torch/include/ATen/ops/uniform_meta_dispatch.h' 2025-07-24T03:55:18.4965970Z adding 'torch/include/ATen/ops/uniform_mps_dispatch.h' 2025-07-24T03:55:18.4966860Z adding 'torch/include/ATen/ops/uniform_native.h' 2025-07-24T03:55:18.4967850Z adding 'torch/include/ATen/ops/uniform_ops.h' 2025-07-24T03:55:18.4969120Z adding 'torch/include/ATen/ops/unique_consecutive.h' 2025-07-24T03:55:18.4970080Z adding 'torch/include/ATen/ops/unique_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4970910Z adding 'torch/include/ATen/ops/unique_consecutive_cpu_dispatch.h' 2025-07-24T03:55:18.4971730Z adding 'torch/include/ATen/ops/unique_consecutive_cuda_dispatch.h' 2025-07-24T03:55:18.4972730Z adding 'torch/include/ATen/ops/unique_consecutive_mps_dispatch.h' 2025-07-24T03:55:18.4973630Z adding 'torch/include/ATen/ops/unique_consecutive_native.h' 2025-07-24T03:55:18.4974640Z adding 'torch/include/ATen/ops/unique_consecutive_ops.h' 2025-07-24T03:55:18.4975590Z adding 'torch/include/ATen/ops/unique_dim.h' 2025-07-24T03:55:18.4976780Z adding 'torch/include/ATen/ops/unique_dim_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4977680Z adding 'torch/include/ATen/ops/unique_dim_consecutive.h' 2025-07-24T03:55:18.4978700Z adding 'torch/include/ATen/ops/unique_dim_consecutive_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4979510Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cpu_dispatch.h' 2025-07-24T03:55:18.4980530Z adding 'torch/include/ATen/ops/unique_dim_consecutive_cuda_dispatch.h' 2025-07-24T03:55:18.4981360Z adding 'torch/include/ATen/ops/unique_dim_consecutive_mps_dispatch.h' 2025-07-24T03:55:18.4982260Z adding 'torch/include/ATen/ops/unique_dim_consecutive_native.h' 2025-07-24T03:55:18.4983210Z adding 'torch/include/ATen/ops/unique_dim_consecutive_ops.h' 2025-07-24T03:55:18.4984260Z adding 'torch/include/ATen/ops/unique_dim_cpu_dispatch.h' 2025-07-24T03:55:18.4985110Z adding 'torch/include/ATen/ops/unique_dim_cuda_dispatch.h' 2025-07-24T03:55:18.4985940Z adding 'torch/include/ATen/ops/unique_dim_native.h' 2025-07-24T03:55:18.4986960Z adding 'torch/include/ATen/ops/unique_dim_ops.h' 2025-07-24T03:55:18.4988030Z adding 'torch/include/ATen/ops/unsafe_chunk.h' 2025-07-24T03:55:18.4989090Z adding 'torch/include/ATen/ops/unsafe_chunk_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.4989840Z adding 'torch/include/ATen/ops/unsafe_chunk_native.h' 2025-07-24T03:55:18.4990740Z adding 'torch/include/ATen/ops/unsafe_chunk_ops.h' 2025-07-24T03:55:18.4991980Z adding 'torch/include/ATen/ops/unsafe_split.h' 2025-07-24T03:55:18.4993030Z adding 'torch/include/ATen/ops/unsafe_split_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4993820Z adding 'torch/include/ATen/ops/unsafe_split_native.h' 2025-07-24T03:55:18.4994790Z adding 'torch/include/ATen/ops/unsafe_split_ops.h' 2025-07-24T03:55:18.4996070Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes.h' 2025-07-24T03:55:18.4997110Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.4997900Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_native.h' 2025-07-24T03:55:18.4998840Z adding 'torch/include/ATen/ops/unsafe_split_with_sizes_ops.h' 2025-07-24T03:55:18.4999840Z adding 'torch/include/ATen/ops/unsqueeze.h' 2025-07-24T03:55:18.5000830Z adding 'torch/include/ATen/ops/unsqueeze_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5001630Z adding 'torch/include/ATen/ops/unsqueeze_copy.h' 2025-07-24T03:55:18.5002600Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5003740Z adding 'torch/include/ATen/ops/unsqueeze_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5004490Z adding 'torch/include/ATen/ops/unsqueeze_copy_native.h' 2025-07-24T03:55:18.5005440Z adding 'torch/include/ATen/ops/unsqueeze_copy_ops.h' 2025-07-24T03:55:18.5006270Z adding 'torch/include/ATen/ops/unsqueeze_native.h' 2025-07-24T03:55:18.5007410Z adding 'torch/include/ATen/ops/unsqueeze_ops.h' 2025-07-24T03:55:18.5008680Z adding 'torch/include/ATen/ops/upsample_bicubic2d.h' 2025-07-24T03:55:18.5009930Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward.h' 2025-07-24T03:55:18.5011030Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5012140Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.5013050Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.5013910Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta.h' 2025-07-24T03:55:18.5014850Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_meta_dispatch.h' 2025-07-24T03:55:18.5015940Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_mps_dispatch.h' 2025-07-24T03:55:18.5016980Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_native.h' 2025-07-24T03:55:18.5017990Z adding 'torch/include/ATen/ops/upsample_bicubic2d_backward_ops.h' 2025-07-24T03:55:18.5019010Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5020030Z adding 'torch/include/ATen/ops/upsample_bicubic2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5020920Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cpu_dispatch.h' 2025-07-24T03:55:18.5021810Z adding 'torch/include/ATen/ops/upsample_bicubic2d_cuda_dispatch.h' 2025-07-24T03:55:18.5022640Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta.h' 2025-07-24T03:55:18.5023730Z adding 'torch/include/ATen/ops/upsample_bicubic2d_meta_dispatch.h' 2025-07-24T03:55:18.5024640Z adding 'torch/include/ATen/ops/upsample_bicubic2d_mps_dispatch.h' 2025-07-24T03:55:18.5025520Z adding 'torch/include/ATen/ops/upsample_bicubic2d_native.h' 2025-07-24T03:55:18.5026540Z adding 'torch/include/ATen/ops/upsample_bicubic2d_ops.h' 2025-07-24T03:55:18.5028510Z adding 'torch/include/ATen/ops/upsample_bilinear2d.h' 2025-07-24T03:55:18.5029810Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward.h' 2025-07-24T03:55:18.5031140Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5032100Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.5033740Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.5034550Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta.h' 2025-07-24T03:55:18.5035500Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_meta_dispatch.h' 2025-07-24T03:55:18.5036400Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_mps_dispatch.h' 2025-07-24T03:55:18.5037410Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_native.h' 2025-07-24T03:55:18.5038460Z adding 'torch/include/ATen/ops/upsample_bilinear2d_backward_ops.h' 2025-07-24T03:55:18.5039480Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5040430Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5041390Z adding 'torch/include/ATen/ops/upsample_bilinear2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5042250Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cpu_dispatch.h' 2025-07-24T03:55:18.5043150Z adding 'torch/include/ATen/ops/upsample_bilinear2d_cuda_dispatch.h' 2025-07-24T03:55:18.5044010Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta.h' 2025-07-24T03:55:18.5045020Z adding 'torch/include/ATen/ops/upsample_bilinear2d_meta_dispatch.h' 2025-07-24T03:55:18.5045910Z adding 'torch/include/ATen/ops/upsample_bilinear2d_mps_dispatch.h' 2025-07-24T03:55:18.5046850Z adding 'torch/include/ATen/ops/upsample_bilinear2d_native.h' 2025-07-24T03:55:18.5047990Z adding 'torch/include/ATen/ops/upsample_bilinear2d_ops.h' 2025-07-24T03:55:18.5049360Z adding 'torch/include/ATen/ops/upsample_linear1d.h' 2025-07-24T03:55:18.5050580Z adding 'torch/include/ATen/ops/upsample_linear1d_backward.h' 2025-07-24T03:55:18.5051710Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5052540Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.5053500Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.5054400Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta.h' 2025-07-24T03:55:18.5055290Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_meta_dispatch.h' 2025-07-24T03:55:18.5056150Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_mps_dispatch.h' 2025-07-24T03:55:18.5057150Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_native.h' 2025-07-24T03:55:18.5058150Z adding 'torch/include/ATen/ops/upsample_linear1d_backward_ops.h' 2025-07-24T03:55:18.5059150Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5060000Z adding 'torch/include/ATen/ops/upsample_linear1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5060950Z adding 'torch/include/ATen/ops/upsample_linear1d_cpu_dispatch.h' 2025-07-24T03:55:18.5061840Z adding 'torch/include/ATen/ops/upsample_linear1d_cuda_dispatch.h' 2025-07-24T03:55:18.5062690Z adding 'torch/include/ATen/ops/upsample_linear1d_meta.h' 2025-07-24T03:55:18.5063580Z adding 'torch/include/ATen/ops/upsample_linear1d_meta_dispatch.h' 2025-07-24T03:55:18.5064520Z adding 'torch/include/ATen/ops/upsample_linear1d_mps_dispatch.h' 2025-07-24T03:55:18.5065430Z adding 'torch/include/ATen/ops/upsample_linear1d_native.h' 2025-07-24T03:55:18.5066500Z adding 'torch/include/ATen/ops/upsample_linear1d_ops.h' 2025-07-24T03:55:18.5067650Z adding 'torch/include/ATen/ops/upsample_nearest1d.h' 2025-07-24T03:55:18.5068940Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward.h' 2025-07-24T03:55:18.5070010Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5070820Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.5071730Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.5072700Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta.h' 2025-07-24T03:55:18.5073700Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_meta_dispatch.h' 2025-07-24T03:55:18.5074560Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_mps_dispatch.h' 2025-07-24T03:55:18.5075450Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_native.h' 2025-07-24T03:55:18.5076530Z adding 'torch/include/ATen/ops/upsample_nearest1d_backward_ops.h' 2025-07-24T03:55:18.5077560Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5078430Z adding 'torch/include/ATen/ops/upsample_nearest1d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5079440Z adding 'torch/include/ATen/ops/upsample_nearest1d_cpu_dispatch.h' 2025-07-24T03:55:18.5080370Z adding 'torch/include/ATen/ops/upsample_nearest1d_cuda_dispatch.h' 2025-07-24T03:55:18.5081250Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta.h' 2025-07-24T03:55:18.5082110Z adding 'torch/include/ATen/ops/upsample_nearest1d_meta_dispatch.h' 2025-07-24T03:55:18.5082940Z adding 'torch/include/ATen/ops/upsample_nearest1d_mps_dispatch.h' 2025-07-24T03:55:18.5083900Z adding 'torch/include/ATen/ops/upsample_nearest1d_native.h' 2025-07-24T03:55:18.5084940Z adding 'torch/include/ATen/ops/upsample_nearest1d_ops.h' 2025-07-24T03:55:18.5086350Z adding 'torch/include/ATen/ops/upsample_nearest2d.h' 2025-07-24T03:55:18.5087590Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward.h' 2025-07-24T03:55:18.5088750Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5089660Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.5090510Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.5091350Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta.h' 2025-07-24T03:55:18.5092350Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_meta_dispatch.h' 2025-07-24T03:55:18.5093270Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_mps_dispatch.h' 2025-07-24T03:55:18.5094130Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_native.h' 2025-07-24T03:55:18.5095140Z adding 'torch/include/ATen/ops/upsample_nearest2d_backward_ops.h' 2025-07-24T03:55:18.5096210Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5097150Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5097980Z adding 'torch/include/ATen/ops/upsample_nearest2d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5098810Z adding 'torch/include/ATen/ops/upsample_nearest2d_cpu_dispatch.h' 2025-07-24T03:55:18.5099780Z adding 'torch/include/ATen/ops/upsample_nearest2d_cuda_dispatch.h' 2025-07-24T03:55:18.5100650Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta.h' 2025-07-24T03:55:18.5101540Z adding 'torch/include/ATen/ops/upsample_nearest2d_meta_dispatch.h' 2025-07-24T03:55:18.5102380Z adding 'torch/include/ATen/ops/upsample_nearest2d_mps_dispatch.h' 2025-07-24T03:55:18.5103410Z adding 'torch/include/ATen/ops/upsample_nearest2d_native.h' 2025-07-24T03:55:18.5104500Z adding 'torch/include/ATen/ops/upsample_nearest2d_ops.h' 2025-07-24T03:55:18.5105770Z adding 'torch/include/ATen/ops/upsample_nearest3d.h' 2025-07-24T03:55:18.5107080Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward.h' 2025-07-24T03:55:18.5108230Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5109130Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.5110050Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.5110880Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta.h' 2025-07-24T03:55:18.5111910Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_meta_dispatch.h' 2025-07-24T03:55:18.5112810Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_mps_dispatch.h' 2025-07-24T03:55:18.5113700Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_native.h' 2025-07-24T03:55:18.5114730Z adding 'torch/include/ATen/ops/upsample_nearest3d_backward_ops.h' 2025-07-24T03:55:18.5115830Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5116670Z adding 'torch/include/ATen/ops/upsample_nearest3d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5117540Z adding 'torch/include/ATen/ops/upsample_nearest3d_cpu_dispatch.h' 2025-07-24T03:55:18.5118420Z adding 'torch/include/ATen/ops/upsample_nearest3d_cuda_dispatch.h' 2025-07-24T03:55:18.5119350Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta.h' 2025-07-24T03:55:18.5121320Z adding 'torch/include/ATen/ops/upsample_nearest3d_meta_dispatch.h' 2025-07-24T03:55:18.5121820Z adding 'torch/include/ATen/ops/upsample_nearest3d_mps_dispatch.h' 2025-07-24T03:55:18.5122720Z adding 'torch/include/ATen/ops/upsample_nearest3d_native.h' 2025-07-24T03:55:18.5123890Z adding 'torch/include/ATen/ops/upsample_nearest3d_ops.h' 2025-07-24T03:55:18.5125240Z adding 'torch/include/ATen/ops/upsample_trilinear3d.h' 2025-07-24T03:55:18.5126520Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward.h' 2025-07-24T03:55:18.5127650Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5128620Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cpu_dispatch.h' 2025-07-24T03:55:18.5129570Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_cuda_dispatch.h' 2025-07-24T03:55:18.5130420Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta.h' 2025-07-24T03:55:18.5131350Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_meta_dispatch.h' 2025-07-24T03:55:18.5132350Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_mps_dispatch.h' 2025-07-24T03:55:18.5133270Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_native.h' 2025-07-24T03:55:18.5134380Z adding 'torch/include/ATen/ops/upsample_trilinear3d_backward_ops.h' 2025-07-24T03:55:18.5135350Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5136290Z adding 'torch/include/ATen/ops/upsample_trilinear3d_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5137170Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cpu_dispatch.h' 2025-07-24T03:55:18.5138080Z adding 'torch/include/ATen/ops/upsample_trilinear3d_cuda_dispatch.h' 2025-07-24T03:55:18.5138920Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta.h' 2025-07-24T03:55:18.5139920Z adding 'torch/include/ATen/ops/upsample_trilinear3d_meta_dispatch.h' 2025-07-24T03:55:18.5140800Z adding 'torch/include/ATen/ops/upsample_trilinear3d_mps_dispatch.h' 2025-07-24T03:55:18.5141700Z adding 'torch/include/ATen/ops/upsample_trilinear3d_native.h' 2025-07-24T03:55:18.5142760Z adding 'torch/include/ATen/ops/upsample_trilinear3d_ops.h' 2025-07-24T03:55:18.5143860Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward.h' 2025-07-24T03:55:18.5144890Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5145680Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_native.h' 2025-07-24T03:55:18.5146660Z adding 'torch/include/ATen/ops/value_selecting_reduction_backward_ops.h' 2025-07-24T03:55:18.5147520Z adding 'torch/include/ATen/ops/values.h' 2025-07-24T03:55:18.5148500Z adding 'torch/include/ATen/ops/values_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5149430Z adding 'torch/include/ATen/ops/values_copy.h' 2025-07-24T03:55:18.5150480Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5151520Z adding 'torch/include/ATen/ops/values_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5152380Z adding 'torch/include/ATen/ops/values_copy_native.h' 2025-07-24T03:55:18.5153340Z adding 'torch/include/ATen/ops/values_copy_ops.h' 2025-07-24T03:55:18.5154280Z adding 'torch/include/ATen/ops/values_native.h' 2025-07-24T03:55:18.5158540Z adding 'torch/include/ATen/ops/values_ops.h' 2025-07-24T03:55:18.5158740Z adding 'torch/include/ATen/ops/vander.h' 2025-07-24T03:55:18.5158980Z adding 'torch/include/ATen/ops/vander_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5159070Z adding 'torch/include/ATen/ops/vander_native.h' 2025-07-24T03:55:18.5159140Z adding 'torch/include/ATen/ops/vander_ops.h' 2025-07-24T03:55:18.5159980Z adding 'torch/include/ATen/ops/var.h' 2025-07-24T03:55:18.5161050Z adding 'torch/include/ATen/ops/var_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5161910Z adding 'torch/include/ATen/ops/var_cpu_dispatch.h' 2025-07-24T03:55:18.5162870Z adding 'torch/include/ATen/ops/var_cuda_dispatch.h' 2025-07-24T03:55:18.5469730Z adding 'torch/include/ATen/ops/var_mean.h' 2025-07-24T03:55:18.5470830Z adding 'torch/include/ATen/ops/var_mean_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5471880Z adding 'torch/include/ATen/ops/var_mean_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5472930Z adding 'torch/include/ATen/ops/var_mean_cpu_dispatch.h' 2025-07-24T03:55:18.5473940Z adding 'torch/include/ATen/ops/var_mean_cuda_dispatch.h' 2025-07-24T03:55:18.5474950Z adding 'torch/include/ATen/ops/var_mean_mps_dispatch.h' 2025-07-24T03:55:18.5476030Z adding 'torch/include/ATen/ops/var_mean_native.h' 2025-07-24T03:55:18.5478100Z adding 'torch/include/ATen/ops/var_mean_ops.h' 2025-07-24T03:55:18.5479110Z adding 'torch/include/ATen/ops/var_mps_dispatch.h' 2025-07-24T03:55:18.5480200Z adding 'torch/include/ATen/ops/var_native.h' 2025-07-24T03:55:18.5481740Z adding 'torch/include/ATen/ops/var_ops.h' 2025-07-24T03:55:18.5482950Z adding 'torch/include/ATen/ops/vdot.h' 2025-07-24T03:55:18.5484080Z adding 'torch/include/ATen/ops/vdot_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5485050Z adding 'torch/include/ATen/ops/vdot_cpu_dispatch.h' 2025-07-24T03:55:18.5486090Z adding 'torch/include/ATen/ops/vdot_cuda_dispatch.h' 2025-07-24T03:55:18.5487150Z adding 'torch/include/ATen/ops/vdot_native.h' 2025-07-24T03:55:18.5488300Z adding 'torch/include/ATen/ops/vdot_ops.h' 2025-07-24T03:55:18.5489350Z adding 'torch/include/ATen/ops/view.h' 2025-07-24T03:55:18.5490350Z adding 'torch/include/ATen/ops/view_as.h' 2025-07-24T03:55:18.5491520Z adding 'torch/include/ATen/ops/view_as_complex.h' 2025-07-24T03:55:18.5492580Z adding 'torch/include/ATen/ops/view_as_complex_copy.h' 2025-07-24T03:55:18.5493760Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5494850Z adding 'torch/include/ATen/ops/view_as_complex_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5495820Z adding 'torch/include/ATen/ops/view_as_complex_copy_native.h' 2025-07-24T03:55:18.5496950Z adding 'torch/include/ATen/ops/view_as_complex_copy_ops.h' 2025-07-24T03:55:18.5498010Z adding 'torch/include/ATen/ops/view_as_complex_cpu_dispatch.h' 2025-07-24T03:55:18.5498960Z adding 'torch/include/ATen/ops/view_as_complex_cuda_dispatch.h' 2025-07-24T03:55:18.5500040Z adding 'torch/include/ATen/ops/view_as_complex_meta_dispatch.h' 2025-07-24T03:55:18.5501030Z adding 'torch/include/ATen/ops/view_as_complex_mps_dispatch.h' 2025-07-24T03:55:18.5502040Z adding 'torch/include/ATen/ops/view_as_complex_native.h' 2025-07-24T03:55:18.5503100Z adding 'torch/include/ATen/ops/view_as_complex_ops.h' 2025-07-24T03:55:18.5504290Z adding 'torch/include/ATen/ops/view_as_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5505200Z adding 'torch/include/ATen/ops/view_as_native.h' 2025-07-24T03:55:18.5506290Z adding 'torch/include/ATen/ops/view_as_ops.h' 2025-07-24T03:55:18.5507320Z adding 'torch/include/ATen/ops/view_as_real.h' 2025-07-24T03:55:18.5508480Z adding 'torch/include/ATen/ops/view_as_real_copy.h' 2025-07-24T03:55:18.5509660Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5510760Z adding 'torch/include/ATen/ops/view_as_real_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5511610Z adding 'torch/include/ATen/ops/view_as_real_copy_native.h' 2025-07-24T03:55:18.5512820Z adding 'torch/include/ATen/ops/view_as_real_copy_ops.h' 2025-07-24T03:55:18.5513890Z adding 'torch/include/ATen/ops/view_as_real_cpu_dispatch.h' 2025-07-24T03:55:18.5514890Z adding 'torch/include/ATen/ops/view_as_real_cuda_dispatch.h' 2025-07-24T03:55:18.5515830Z adding 'torch/include/ATen/ops/view_as_real_meta_dispatch.h' 2025-07-24T03:55:18.5516850Z adding 'torch/include/ATen/ops/view_as_real_mps_dispatch.h' 2025-07-24T03:55:18.5517810Z adding 'torch/include/ATen/ops/view_as_real_native.h' 2025-07-24T03:55:18.5518850Z adding 'torch/include/ATen/ops/view_as_real_ops.h' 2025-07-24T03:55:18.5519950Z adding 'torch/include/ATen/ops/view_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5521200Z adding 'torch/include/ATen/ops/view_copy.h' 2025-07-24T03:55:18.5522340Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5523390Z adding 'torch/include/ATen/ops/view_copy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5524210Z adding 'torch/include/ATen/ops/view_copy_native.h' 2025-07-24T03:55:18.5525430Z adding 'torch/include/ATen/ops/view_copy_ops.h' 2025-07-24T03:55:18.5526420Z adding 'torch/include/ATen/ops/view_cpu_dispatch.h' 2025-07-24T03:55:18.5527350Z adding 'torch/include/ATen/ops/view_cuda_dispatch.h' 2025-07-24T03:55:18.5528260Z adding 'torch/include/ATen/ops/view_meta_dispatch.h' 2025-07-24T03:55:18.5529270Z adding 'torch/include/ATen/ops/view_mps_dispatch.h' 2025-07-24T03:55:18.5530230Z adding 'torch/include/ATen/ops/view_native.h' 2025-07-24T03:55:18.5531270Z adding 'torch/include/ATen/ops/view_ops.h' 2025-07-24T03:55:18.5532260Z adding 'torch/include/ATen/ops/vsplit.h' 2025-07-24T03:55:18.5533460Z adding 'torch/include/ATen/ops/vsplit_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5534360Z adding 'torch/include/ATen/ops/vsplit_native.h' 2025-07-24T03:55:18.5535450Z adding 'torch/include/ATen/ops/vsplit_ops.h' 2025-07-24T03:55:18.5536420Z adding 'torch/include/ATen/ops/vstack.h' 2025-07-24T03:55:18.5537600Z adding 'torch/include/ATen/ops/vstack_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5538480Z adding 'torch/include/ATen/ops/vstack_native.h' 2025-07-24T03:55:18.5539530Z adding 'torch/include/ATen/ops/vstack_ops.h' 2025-07-24T03:55:18.5540640Z adding 'torch/include/ATen/ops/where.h' 2025-07-24T03:55:18.5541850Z adding 'torch/include/ATen/ops/where_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5542770Z adding 'torch/include/ATen/ops/where_cpu_dispatch.h' 2025-07-24T03:55:18.5543720Z adding 'torch/include/ATen/ops/where_cuda_dispatch.h' 2025-07-24T03:55:18.5544620Z adding 'torch/include/ATen/ops/where_mps_dispatch.h' 2025-07-24T03:55:18.5545710Z adding 'torch/include/ATen/ops/where_native.h' 2025-07-24T03:55:18.5546960Z adding 'torch/include/ATen/ops/where_ops.h' 2025-07-24T03:55:18.5548100Z adding 'torch/include/ATen/ops/xlogy.h' 2025-07-24T03:55:18.5549230Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5550350Z adding 'torch/include/ATen/ops/xlogy_compositeexplicitautogradnonfunctional_dispatch.h' 2025-07-24T03:55:18.5551220Z adding 'torch/include/ATen/ops/xlogy_cpu_dispatch.h' 2025-07-24T03:55:18.5552190Z adding 'torch/include/ATen/ops/xlogy_cuda_dispatch.h' 2025-07-24T03:55:18.5553090Z adding 'torch/include/ATen/ops/xlogy_meta.h' 2025-07-24T03:55:18.5554140Z adding 'torch/include/ATen/ops/xlogy_meta_dispatch.h' 2025-07-24T03:55:18.5555080Z adding 'torch/include/ATen/ops/xlogy_mps_dispatch.h' 2025-07-24T03:55:18.5556050Z adding 'torch/include/ATen/ops/xlogy_native.h' 2025-07-24T03:55:18.5557350Z adding 'torch/include/ATen/ops/xlogy_ops.h' 2025-07-24T03:55:18.5558440Z adding 'torch/include/ATen/ops/xor.h' 2025-07-24T03:55:18.5559520Z adding 'torch/include/ATen/ops/xor_compositeimplicitautograd_dispatch.h' 2025-07-24T03:55:18.5560380Z adding 'torch/include/ATen/ops/xor_native.h' 2025-07-24T03:55:18.5561500Z adding 'torch/include/ATen/ops/xor_ops.h' 2025-07-24T03:55:18.5562610Z adding 'torch/include/ATen/ops/zero.h' 2025-07-24T03:55:18.5563680Z adding 'torch/include/ATen/ops/zero_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5564550Z adding 'torch/include/ATen/ops/zero_cpu_dispatch.h' 2025-07-24T03:55:18.5565490Z adding 'torch/include/ATen/ops/zero_cuda_dispatch.h' 2025-07-24T03:55:18.5566510Z adding 'torch/include/ATen/ops/zero_meta_dispatch.h' 2025-07-24T03:55:18.5567450Z adding 'torch/include/ATen/ops/zero_mps_dispatch.h' 2025-07-24T03:55:18.5568360Z adding 'torch/include/ATen/ops/zero_native.h' 2025-07-24T03:55:18.5569350Z adding 'torch/include/ATen/ops/zero_ops.h' 2025-07-24T03:55:18.5570890Z adding 'torch/include/ATen/ops/zeros.h' 2025-07-24T03:55:18.5572000Z adding 'torch/include/ATen/ops/zeros_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5572960Z adding 'torch/include/ATen/ops/zeros_like.h' 2025-07-24T03:55:18.5574050Z adding 'torch/include/ATen/ops/zeros_like_compositeexplicitautograd_dispatch.h' 2025-07-24T03:55:18.5575100Z adding 'torch/include/ATen/ops/zeros_like_compositeimplicitautogradnestedtensor_dispatch.h' 2025-07-24T03:55:18.5575920Z adding 'torch/include/ATen/ops/zeros_like_native.h' 2025-07-24T03:55:18.5576970Z adding 'torch/include/ATen/ops/zeros_like_ops.h' 2025-07-24T03:55:18.5577880Z adding 'torch/include/ATen/ops/zeros_native.h' 2025-07-24T03:55:18.5579090Z adding 'torch/include/ATen/ops/zeros_ops.h' 2025-07-24T03:55:18.5582280Z adding 'torch/include/ATen/quantized/QTensorImpl.h' 2025-07-24T03:55:18.5584420Z adding 'torch/include/ATen/quantized/Quantizer.h' 2025-07-24T03:55:18.5585660Z adding 'torch/include/ATen/xpu/CachingHostAllocator.h' 2025-07-24T03:55:18.5586670Z adding 'torch/include/ATen/xpu/PinnedMemoryAllocator.h' 2025-07-24T03:55:18.5587520Z adding 'torch/include/ATen/xpu/XPUContext.h' 2025-07-24T03:55:18.5588370Z adding 'torch/include/ATen/xpu/XPUDevice.h' 2025-07-24T03:55:18.5590160Z adding 'torch/include/ATen/xpu/XPUEvent.h' 2025-07-24T03:55:18.5591190Z adding 'torch/include/ATen/xpu/XPUGeneratorImpl.h' 2025-07-24T03:55:18.5592440Z adding 'torch/include/ATen/xpu/detail/XPUHooks.h' 2025-07-24T03:55:18.5597260Z adding 'torch/include/c10/core/Allocator.h' 2025-07-24T03:55:18.5598240Z adding 'torch/include/c10/core/AutogradState.h' 2025-07-24T03:55:18.5600590Z adding 'torch/include/c10/core/Backend.h' 2025-07-24T03:55:18.5601630Z adding 'torch/include/c10/core/CPUAllocator.h' 2025-07-24T03:55:18.5602730Z adding 'torch/include/c10/core/CachingDeviceAllocator.h' 2025-07-24T03:55:18.5603860Z adding 'torch/include/c10/core/CompileTimeFunctionPointer.h' 2025-07-24T03:55:18.5605180Z adding 'torch/include/c10/core/ConstantSymNodeImpl.h' 2025-07-24T03:55:18.5606950Z adding 'torch/include/c10/core/Contiguity.h' 2025-07-24T03:55:18.5607920Z adding 'torch/include/c10/core/CopyBytes.h' 2025-07-24T03:55:18.5608790Z adding 'torch/include/c10/core/DefaultDtype.h' 2025-07-24T03:55:18.5609860Z adding 'torch/include/c10/core/DefaultTensorOptions.h' 2025-07-24T03:55:18.5611890Z adding 'torch/include/c10/core/Device.h' 2025-07-24T03:55:18.5612710Z adding 'torch/include/c10/core/DeviceArray.h' 2025-07-24T03:55:18.5615080Z adding 'torch/include/c10/core/DeviceGuard.h' 2025-07-24T03:55:18.5616390Z adding 'torch/include/c10/core/DeviceType.h' 2025-07-24T03:55:18.5624270Z adding 'torch/include/c10/core/DispatchKey.h' 2025-07-24T03:55:18.5633720Z adding 'torch/include/c10/core/DispatchKeySet.h' 2025-07-24T03:55:18.5635200Z adding 'torch/include/c10/core/DynamicCast.h' 2025-07-24T03:55:18.5636800Z adding 'torch/include/c10/core/Event.h' 2025-07-24T03:55:18.5638740Z adding 'torch/include/c10/core/GeneratorImpl.h' 2025-07-24T03:55:18.5639400Z adding 'torch/include/c10/core/GradMode.h' 2025-07-24T03:55:18.5640990Z adding 'torch/include/c10/core/InferenceMode.h' 2025-07-24T03:55:18.5641870Z adding 'torch/include/c10/core/Layout.h' 2025-07-24T03:55:18.5644560Z adding 'torch/include/c10/core/MemoryFormat.h' 2025-07-24T03:55:18.5645240Z adding 'torch/include/c10/core/OptionalRef.h' 2025-07-24T03:55:18.5646600Z adding 'torch/include/c10/core/PyHandleCache.h' 2025-07-24T03:55:18.5647550Z adding 'torch/include/c10/core/QEngine.h' 2025-07-24T03:55:18.5648650Z adding 'torch/include/c10/core/QScheme.h' 2025-07-24T03:55:18.5649840Z adding 'torch/include/c10/core/RefcountedDeleter.h' 2025-07-24T03:55:18.5651150Z adding 'torch/include/c10/core/SafePyObject.h' 2025-07-24T03:55:18.5654380Z adding 'torch/include/c10/core/Scalar.h' 2025-07-24T03:55:18.5659020Z adding 'torch/include/c10/core/ScalarType.h' 2025-07-24T03:55:18.5659910Z adding 'torch/include/c10/core/ScalarTypeToTypeMeta.h' 2025-07-24T03:55:18.5662000Z adding 'torch/include/c10/core/Storage.h' 2025-07-24T03:55:18.5664630Z adding 'torch/include/c10/core/StorageImpl.h' 2025-07-24T03:55:18.5666800Z adding 'torch/include/c10/core/Stream.h' 2025-07-24T03:55:18.5668320Z adding 'torch/include/c10/core/StreamGuard.h' 2025-07-24T03:55:18.5669650Z adding 'torch/include/c10/core/SymBool.h' 2025-07-24T03:55:18.5671250Z adding 'torch/include/c10/core/SymFloat.h' 2025-07-24T03:55:18.5674560Z adding 'torch/include/c10/core/SymInt.h' 2025-07-24T03:55:18.5675680Z adding 'torch/include/c10/core/SymIntArrayRef.h' 2025-07-24T03:55:18.5677580Z adding 'torch/include/c10/core/SymNodeImpl.h' 2025-07-24T03:55:18.5678970Z adding 'torch/include/c10/core/SymbolicShapeMeta.h' 2025-07-24T03:55:18.5705430Z adding 'torch/include/c10/core/TensorImpl.h' 2025-07-24T03:55:18.5711750Z adding 'torch/include/c10/core/TensorOptions.h' 2025-07-24T03:55:18.5712710Z adding 'torch/include/c10/core/UndefinedTensorImpl.h' 2025-07-24T03:55:18.5713790Z adding 'torch/include/c10/core/WrapDimMinimal.h' 2025-07-24T03:55:18.5714870Z adding 'torch/include/c10/core/alignment.h' 2025-07-24T03:55:18.5716270Z adding 'torch/include/c10/core/thread_pool.h' 2025-07-24T03:55:18.5717730Z adding 'torch/include/c10/core/impl/COW.h' 2025-07-24T03:55:18.5718920Z adding 'torch/include/c10/core/impl/COWDeleter.h' 2025-07-24T03:55:18.5722560Z adding 'torch/include/c10/core/impl/DeviceGuardImplInterface.h' 2025-07-24T03:55:18.5723670Z adding 'torch/include/c10/core/impl/FakeGuardImpl.h' 2025-07-24T03:55:18.5724730Z adding 'torch/include/c10/core/impl/GPUTrace.h' 2025-07-24T03:55:18.5725990Z adding 'torch/include/c10/core/impl/HermeticPyObjectTLS.h' 2025-07-24T03:55:18.5729870Z adding 'torch/include/c10/core/impl/InlineDeviceGuard.h' 2025-07-24T03:55:18.5731110Z adding 'torch/include/c10/core/impl/InlineEvent.h' 2025-07-24T03:55:18.5733850Z adding 'torch/include/c10/core/impl/InlineStreamGuard.h' 2025-07-24T03:55:18.5735590Z adding 'torch/include/c10/core/impl/LocalDispatchKeySet.h' 2025-07-24T03:55:18.5738520Z adding 'torch/include/c10/core/impl/PyInterpreter.h' 2025-07-24T03:55:18.5740930Z adding 'torch/include/c10/core/impl/PyObjectSlot.h' 2025-07-24T03:55:18.5741620Z adding 'torch/include/c10/core/impl/PythonDispatcherTLS.h' 2025-07-24T03:55:18.5743850Z adding 'torch/include/c10/core/impl/SizesAndStrides.h' 2025-07-24T03:55:18.5744880Z adding 'torch/include/c10/core/impl/TorchDispatchModeTLS.h' 2025-07-24T03:55:18.5746150Z adding 'torch/include/c10/core/impl/VirtualGuardImpl.h' 2025-07-24T03:55:18.5747040Z adding 'torch/include/c10/core/impl/alloc_cpu.h' 2025-07-24T03:55:18.5748440Z adding 'torch/include/c10/cuda/CUDAAlgorithm.h' 2025-07-24T03:55:18.5750270Z adding 'torch/include/c10/cuda/CUDAAllocatorConfig.h' 2025-07-24T03:55:18.5754120Z adding 'torch/include/c10/cuda/CUDACachingAllocator.h' 2025-07-24T03:55:18.5755420Z adding 'torch/include/c10/cuda/CUDADeviceAssertion.h' 2025-07-24T03:55:18.5757630Z adding 'torch/include/c10/cuda/CUDADeviceAssertionHost.h' 2025-07-24T03:55:18.5758880Z adding 'torch/include/c10/cuda/CUDAException.h' 2025-07-24T03:55:18.5760810Z adding 'torch/include/c10/cuda/CUDAFunctions.h' 2025-07-24T03:55:18.5761630Z adding 'torch/include/c10/cuda/CUDAGraphsC10Utils.h' 2025-07-24T03:55:18.5764200Z adding 'torch/include/c10/cuda/CUDAGuard.h' 2025-07-24T03:55:18.5765080Z adding 'torch/include/c10/cuda/CUDAMacros.h' 2025-07-24T03:55:18.5766340Z adding 'torch/include/c10/cuda/CUDAMathCompat.h' 2025-07-24T03:55:18.5767220Z adding 'torch/include/c10/cuda/CUDAMiscFunctions.h' 2025-07-24T03:55:18.5770160Z adding 'torch/include/c10/cuda/CUDAStream.h' 2025-07-24T03:55:18.5771360Z adding 'torch/include/c10/cuda/driver_api.h' 2025-07-24T03:55:18.5774150Z adding 'torch/include/c10/cuda/impl/CUDAGuardImpl.h' 2025-07-24T03:55:18.5774770Z adding 'torch/include/c10/cuda/impl/CUDATest.h' 2025-07-24T03:55:18.5775840Z adding 'torch/include/c10/macros/Export.h' 2025-07-24T03:55:18.5776700Z adding 'torch/include/c10/macros/Macros.h' 2025-07-24T03:55:18.5777600Z adding 'torch/include/c10/macros/cmake_macros.h' 2025-07-24T03:55:18.5779520Z adding 'torch/include/c10/metal/atomic.h' 2025-07-24T03:55:18.5780230Z adding 'torch/include/c10/metal/common.h' 2025-07-24T03:55:18.5782160Z adding 'torch/include/c10/metal/expm1f.h' 2025-07-24T03:55:18.5785250Z adding 'torch/include/c10/metal/indexing.h' 2025-07-24T03:55:18.5786230Z adding 'torch/include/c10/metal/random.h' 2025-07-24T03:55:18.5787850Z adding 'torch/include/c10/metal/reduction_utils.h' 2025-07-24T03:55:18.5797030Z adding 'torch/include/c10/metal/special_math.h' 2025-07-24T03:55:18.5799110Z adding 'torch/include/c10/metal/utils.h' 2025-07-24T03:55:18.5800870Z adding 'torch/include/c10/mobile/CPUCachingAllocator.h' 2025-07-24T03:55:18.5802620Z adding 'torch/include/c10/mobile/CPUProfilingAllocator.h' 2025-07-24T03:55:18.5803700Z adding 'torch/include/c10/test/util/Macros.h' 2025-07-24T03:55:18.5806530Z adding 'torch/include/c10/test/util/complex_math_test_common.h' 2025-07-24T03:55:18.5809750Z adding 'torch/include/c10/test/util/complex_test_common.h' 2025-07-24T03:55:18.5812090Z adding 'torch/include/c10/util/AbortHandler.h' 2025-07-24T03:55:18.5813410Z adding 'torch/include/c10/util/AlignOf.h' 2025-07-24T03:55:18.5815000Z adding 'torch/include/c10/util/ApproximateClock.h' 2025-07-24T03:55:18.5815730Z adding 'torch/include/c10/util/Array.h' 2025-07-24T03:55:18.5818520Z adding 'torch/include/c10/util/ArrayRef.h' 2025-07-24T03:55:18.5820320Z adding 'torch/include/c10/util/BFloat16-inl.h' 2025-07-24T03:55:18.5822420Z adding 'torch/include/c10/util/BFloat16-math.h' 2025-07-24T03:55:18.5823240Z adding 'torch/include/c10/util/BFloat16.h' 2025-07-24T03:55:18.5824350Z adding 'torch/include/c10/util/Backtrace.h' 2025-07-24T03:55:18.5825750Z adding 'torch/include/c10/util/Bitset.h' 2025-07-24T03:55:18.5826920Z adding 'torch/include/c10/util/C++17.h' 2025-07-24T03:55:18.5828070Z adding 'torch/include/c10/util/CallOnce.h' 2025-07-24T03:55:18.5830650Z adding 'torch/include/c10/util/ConstexprCrc.h' 2025-07-24T03:55:18.5831590Z adding 'torch/include/c10/util/DeadlockDetection.h' 2025-07-24T03:55:18.5832820Z adding 'torch/include/c10/util/Deprecated.h' 2025-07-24T03:55:18.5833740Z adding 'torch/include/c10/util/DimVector.h' 2025-07-24T03:55:18.5834870Z adding 'torch/include/c10/util/DynamicCounter.h' 2025-07-24T03:55:18.5836470Z adding 'torch/include/c10/util/Enumerate.h' 2025-07-24T03:55:18.5842410Z adding 'torch/include/c10/util/Exception.h' 2025-07-24T03:55:18.5843860Z adding 'torch/include/c10/util/ExclusivelyOwned.h' 2025-07-24T03:55:18.5845180Z adding 'torch/include/c10/util/ExclusivelyOwnedTensorTraits.h' 2025-07-24T03:55:18.5846100Z adding 'torch/include/c10/util/FbcodeMaps.h' 2025-07-24T03:55:18.5848760Z adding 'torch/include/c10/util/Flags.h' 2025-07-24T03:55:18.5849570Z adding 'torch/include/c10/util/Float4_e2m1fn_x2.h' 2025-07-24T03:55:18.5851490Z adding 'torch/include/c10/util/Float8_e4m3fn-inl.h' 2025-07-24T03:55:18.5853790Z adding 'torch/include/c10/util/Float8_e4m3fn.h' 2025-07-24T03:55:18.5855910Z adding 'torch/include/c10/util/Float8_e4m3fnuz-inl.h' 2025-07-24T03:55:18.5857030Z adding 'torch/include/c10/util/Float8_e4m3fnuz.h' 2025-07-24T03:55:18.5858960Z adding 'torch/include/c10/util/Float8_e5m2-inl.h' 2025-07-24T03:55:18.5860240Z adding 'torch/include/c10/util/Float8_e5m2.h' 2025-07-24T03:55:18.5862170Z adding 'torch/include/c10/util/Float8_e5m2fnuz-inl.h' 2025-07-24T03:55:18.5863280Z adding 'torch/include/c10/util/Float8_e5m2fnuz.h' 2025-07-24T03:55:18.5864690Z adding 'torch/include/c10/util/Float8_e8m0fnu-inl.h' 2025-07-24T03:55:18.5865970Z adding 'torch/include/c10/util/Float8_e8m0fnu.h' 2025-07-24T03:55:18.5867080Z adding 'torch/include/c10/util/Float8_fnuz_cvt.h' 2025-07-24T03:55:18.5868210Z adding 'torch/include/c10/util/FunctionRef.h' 2025-07-24T03:55:18.5869260Z adding 'torch/include/c10/util/Gauge.h' 2025-07-24T03:55:18.5871360Z adding 'torch/include/c10/util/Half-inl.h' 2025-07-24T03:55:18.5874950Z adding 'torch/include/c10/util/Half.h' 2025-07-24T03:55:18.5875900Z adding 'torch/include/c10/util/IdWrapper.h' 2025-07-24T03:55:18.5877860Z adding 'torch/include/c10/util/IntrusiveList.h' 2025-07-24T03:55:18.5878640Z adding 'torch/include/c10/util/Lazy.h' 2025-07-24T03:55:18.5880880Z adding 'torch/include/c10/util/LeftRight.h' 2025-07-24T03:55:18.5881580Z adding 'torch/include/c10/util/Load.h' 2025-07-24T03:55:18.5884670Z adding 'torch/include/c10/util/Logging.h' 2025-07-24T03:55:18.5885700Z adding 'torch/include/c10/util/MathConstants.h' 2025-07-24T03:55:18.5887800Z adding 'torch/include/c10/util/MaybeOwned.h' 2025-07-24T03:55:18.5889530Z adding 'torch/include/c10/util/Metaprogramming.h' 2025-07-24T03:55:18.5890520Z adding 'torch/include/c10/util/NetworkFlow.h' 2025-07-24T03:55:18.5891550Z adding 'torch/include/c10/util/Optional.h' 2025-07-24T03:55:18.5893500Z adding 'torch/include/c10/util/OptionalArrayRef.h' 2025-07-24T03:55:18.5894090Z adding 'torch/include/c10/util/ParallelGuard.h' 2025-07-24T03:55:18.5896990Z adding 'torch/include/c10/util/Registry.h' 2025-07-24T03:55:18.5897800Z adding 'torch/include/c10/util/ScopeExit.h' 2025-07-24T03:55:18.5898790Z adding 'torch/include/c10/util/Semaphore.h' 2025-07-24T03:55:18.5899890Z adding 'torch/include/c10/util/SmallBuffer.h' 2025-07-24T03:55:18.5910290Z adding 'torch/include/c10/util/SmallVector.h' 2025-07-24T03:55:18.5912510Z adding 'torch/include/c10/util/StringUtil.h' 2025-07-24T03:55:18.5913340Z adding 'torch/include/c10/util/Synchronized.h' 2025-07-24T03:55:18.5914940Z adding 'torch/include/c10/util/ThreadLocal.h' 2025-07-24T03:55:18.5916140Z adding 'torch/include/c10/util/ThreadLocalDebugInfo.h' 2025-07-24T03:55:18.5917030Z adding 'torch/include/c10/util/Type.h' 2025-07-24T03:55:18.5918950Z adding 'torch/include/c10/util/TypeCast.h' 2025-07-24T03:55:18.5920470Z adding 'torch/include/c10/util/TypeIndex.h' 2025-07-24T03:55:18.5923490Z adding 'torch/include/c10/util/TypeList.h' 2025-07-24T03:55:18.5924580Z adding 'torch/include/c10/util/TypeSafeSignMath.h' 2025-07-24T03:55:18.5926510Z adding 'torch/include/c10/util/TypeTraits.h' 2025-07-24T03:55:18.5927050Z adding 'torch/include/c10/util/Unicode.h' 2025-07-24T03:55:18.5929020Z adding 'torch/include/c10/util/UniqueVoidPtr.h' 2025-07-24T03:55:18.5929590Z adding 'torch/include/c10/util/Unroll.h' 2025-07-24T03:55:18.5930830Z adding 'torch/include/c10/util/WaitCounter.h' 2025-07-24T03:55:18.5931910Z adding 'torch/include/c10/util/WaitCounterDynamicBackend.h' 2025-07-24T03:55:18.5933200Z adding 'torch/include/c10/util/accumulate.h' 2025-07-24T03:55:18.5934190Z adding 'torch/include/c10/util/bit_cast.h' 2025-07-24T03:55:18.5935110Z adding 'torch/include/c10/util/bits.h' 2025-07-24T03:55:18.5939280Z adding 'torch/include/c10/util/complex.h' 2025-07-24T03:55:18.5941430Z adding 'torch/include/c10/util/complex_math.h' 2025-07-24T03:55:18.5942250Z adding 'torch/include/c10/util/complex_utils.h' 2025-07-24T03:55:18.5943100Z adding 'torch/include/c10/util/copysign.h' 2025-07-24T03:55:18.5944160Z adding 'torch/include/c10/util/env.h' 2025-07-24T03:55:18.5945070Z adding 'torch/include/c10/util/error.h' 2025-07-24T03:55:18.5955190Z adding 'torch/include/c10/util/flat_hash_map.h' 2025-07-24T03:55:18.5956090Z adding 'torch/include/c10/util/floating_point_utils.h' 2025-07-24T03:55:18.5957350Z adding 'torch/include/c10/util/generic_math.h' 2025-07-24T03:55:18.5960330Z adding 'torch/include/c10/util/hash.h' 2025-07-24T03:55:18.5963150Z adding 'torch/include/c10/util/int128.h' 2025-07-24T03:55:18.5970500Z adding 'torch/include/c10/util/intrusive_ptr.h' 2025-07-24T03:55:18.5971810Z adding 'torch/include/c10/util/irange.h' 2025-07-24T03:55:18.5977680Z adding 'torch/include/c10/util/llvmMathExtras.h' 2025-07-24T03:55:18.5979010Z adding 'torch/include/c10/util/logging_is_google_glog.h' 2025-07-24T03:55:18.5981370Z adding 'torch/include/c10/util/logging_is_not_google_glog.h' 2025-07-24T03:55:18.5982020Z adding 'torch/include/c10/util/numa.h' 2025-07-24T03:55:18.5993570Z adding 'torch/include/c10/util/order_preserving_flat_hash_map.h' 2025-07-24T03:55:18.5995270Z adding 'torch/include/c10/util/overflows.h' 2025-07-24T03:55:18.5996090Z adding 'torch/include/c10/util/overloaded.h' 2025-07-24T03:55:18.5996870Z adding 'torch/include/c10/util/python_stub.h' 2025-07-24T03:55:18.5997830Z adding 'torch/include/c10/util/qint32.h' 2025-07-24T03:55:18.5998710Z adding 'torch/include/c10/util/qint8.h' 2025-07-24T03:55:18.5999580Z adding 'torch/include/c10/util/quint2x4.h' 2025-07-24T03:55:18.6000390Z adding 'torch/include/c10/util/quint4x2.h' 2025-07-24T03:55:18.6001310Z adding 'torch/include/c10/util/quint8.h' 2025-07-24T03:55:18.6002510Z adding 'torch/include/c10/util/safe_numerics.h' 2025-07-24T03:55:18.6004110Z adding 'torch/include/c10/util/signal_handler.h' 2025-07-24T03:55:18.6009250Z adding 'torch/include/c10/util/sparse_bitset.h' 2025-07-24T03:55:18.6010160Z adding 'torch/include/c10/util/ssize.h' 2025-07-24T03:55:18.6011150Z adding 'torch/include/c10/util/static_tracepoint.h' 2025-07-24T03:55:18.6013310Z adding 'torch/include/c10/util/static_tracepoint_elfx86.h' 2025-07-24T03:55:18.6013940Z adding 'torch/include/c10/util/strides.h' 2025-07-24T03:55:18.6014900Z adding 'torch/include/c10/util/string_utils.h' 2025-07-24T03:55:18.6018480Z adding 'torch/include/c10/util/string_view.h' 2025-07-24T03:55:18.6023430Z adding 'torch/include/c10/util/strong_type.h' 2025-07-24T03:55:18.6024540Z adding 'torch/include/c10/util/tempfile.h' 2025-07-24T03:55:18.6025370Z adding 'torch/include/c10/util/thread_name.h' 2025-07-24T03:55:18.6030660Z adding 'torch/include/c10/util/typeid.h' 2025-07-24T03:55:18.6031520Z adding 'torch/include/c10/util/win32-headers.h' 2025-07-24T03:55:18.6032740Z adding 'torch/include/c10/xpu/XPUCachingAllocator.h' 2025-07-24T03:55:18.6035250Z adding 'torch/include/c10/xpu/XPUDeviceProp.h' 2025-07-24T03:55:18.6036030Z adding 'torch/include/c10/xpu/XPUException.h' 2025-07-24T03:55:18.6037020Z adding 'torch/include/c10/xpu/XPUFunctions.h' 2025-07-24T03:55:18.6037950Z adding 'torch/include/c10/xpu/XPUMacros.h' 2025-07-24T03:55:18.6040240Z adding 'torch/include/c10/xpu/XPUStream.h' 2025-07-24T03:55:18.6042480Z adding 'torch/include/c10/xpu/impl/XPUGuardImpl.h' 2025-07-24T03:55:18.6043570Z adding 'torch/include/c10/xpu/test/impl/XPUTest.h' 2025-07-24T03:55:18.6045510Z adding 'torch/include/caffe2/core/common.h' 2025-07-24T03:55:18.6046460Z adding 'torch/include/caffe2/core/macros.h' 2025-07-24T03:55:18.6047570Z adding 'torch/include/caffe2/core/timer.h' 2025-07-24T03:55:18.6050170Z adding 'torch/include/caffe2/perfkernels/batch_box_cox_vec.h' 2025-07-24T03:55:18.6051390Z adding 'torch/include/caffe2/perfkernels/common.h' 2025-07-24T03:55:18.6052590Z adding 'torch/include/caffe2/perfkernels/embedding_lookup_idx.h' 2025-07-24T03:55:18.6077410Z adding 'torch/include/caffe2/serialize/crc_alt.h' 2025-07-24T03:55:18.6078790Z adding 'torch/include/caffe2/serialize/file_adapter.h' 2025-07-24T03:55:18.6079850Z adding 'torch/include/caffe2/serialize/in_memory_adapter.h' 2025-07-24T03:55:18.6082730Z adding 'torch/include/caffe2/serialize/inline_container.h' 2025-07-24T03:55:18.6083600Z adding 'torch/include/caffe2/serialize/istream_adapter.h' 2025-07-24T03:55:18.6084590Z adding 'torch/include/caffe2/serialize/read_adapter_interface.h' 2025-07-24T03:55:18.6086850Z adding 'torch/include/caffe2/serialize/versions.h' 2025-07-24T03:55:18.6088210Z adding 'torch/include/caffe2/utils/fixed_divisor.h' 2025-07-24T03:55:18.6089330Z adding 'torch/include/caffe2/utils/proto_wrap.h' 2025-07-24T03:55:18.6090380Z adding 'torch/include/caffe2/utils/string_utils.h' 2025-07-24T03:55:18.6092320Z adding 'torch/include/caffe2/utils/threadpool/ThreadPool.h' 2025-07-24T03:55:18.6092960Z adding 'torch/include/caffe2/utils/threadpool/ThreadPoolCommon.h' 2025-07-24T03:55:18.6096250Z adding 'torch/include/caffe2/utils/threadpool/WorkersPool.h' 2025-07-24T03:55:18.6097130Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool-cpp.h' 2025-07-24T03:55:18.6099080Z adding 'torch/include/caffe2/utils/threadpool/pthreadpool.h' 2025-07-24T03:55:18.6099760Z adding 'torch/include/caffe2/utils/threadpool/thread_pool_guard.h' 2025-07-24T03:55:18.6102410Z adding 'torch/include/fmt/args.h' 2025-07-24T03:55:18.6125400Z adding 'torch/include/fmt/base.h' 2025-07-24T03:55:18.6140820Z adding 'torch/include/fmt/chrono.h' 2025-07-24T03:55:18.6146780Z adding 'torch/include/fmt/color.h' 2025-07-24T03:55:18.6150760Z adding 'torch/include/fmt/compile.h' 2025-07-24T03:55:18.6151500Z adding 'torch/include/fmt/core.h' 2025-07-24T03:55:18.6171250Z adding 'torch/include/fmt/format-inl.h' 2025-07-24T03:55:18.6207700Z adding 'torch/include/fmt/format.h' 2025-07-24T03:55:18.6211640Z adding 'torch/include/fmt/os.h' 2025-07-24T03:55:18.6213700Z adding 'torch/include/fmt/ostream.h' 2025-07-24T03:55:18.6218190Z adding 'torch/include/fmt/printf.h' 2025-07-24T03:55:18.6223410Z adding 'torch/include/fmt/ranges.h' 2025-07-24T03:55:18.6227900Z adding 'torch/include/fmt/std.h' 2025-07-24T03:55:18.6230710Z adding 'torch/include/fmt/xchar.h' 2025-07-24T03:55:18.6232040Z adding 'torch/include/fp16/bitcasts.h' 2025-07-24T03:55:18.6235680Z adding 'torch/include/fp16/fp16.h' 2025-07-24T03:55:18.6237150Z adding 'torch/include/fp16/psimd.h' 2025-07-24T03:55:18.6240310Z adding 'torch/include/google/protobuf/any.h' 2025-07-24T03:55:18.6243120Z adding 'torch/include/google/protobuf/any.pb.h' 2025-07-24T03:55:18.6249750Z adding 'torch/include/google/protobuf/api.pb.h' 2025-07-24T03:55:18.6256750Z adding 'torch/include/google/protobuf/arena.h' 2025-07-24T03:55:18.6260570Z adding 'torch/include/google/protobuf/arena_impl.h' 2025-07-24T03:55:18.6263980Z adding 'torch/include/google/protobuf/arenastring.h' 2025-07-24T03:55:18.6283740Z adding 'torch/include/google/protobuf/descriptor.h' 2025-07-24T03:55:18.6643040Z adding 'torch/include/google/protobuf/descriptor.pb.h' 2025-07-24T03:55:18.6650480Z adding 'torch/include/google/protobuf/descriptor_database.h' 2025-07-24T03:55:18.6652940Z adding 'torch/include/google/protobuf/duration.pb.h' 2025-07-24T03:55:18.6655860Z adding 'torch/include/google/protobuf/dynamic_message.h' 2025-07-24T03:55:18.6658080Z adding 'torch/include/google/protobuf/empty.pb.h' 2025-07-24T03:55:18.6675700Z adding 'torch/include/google/protobuf/extension_set.h' 2025-07-24T03:55:18.6679060Z adding 'torch/include/google/protobuf/extension_set_inl.h' 2025-07-24T03:55:18.6682280Z adding 'torch/include/google/protobuf/field_mask.pb.h' 2025-07-24T03:55:18.6683890Z adding 'torch/include/google/protobuf/generated_enum_reflection.h' 2025-07-24T03:55:18.6685500Z adding 'torch/include/google/protobuf/generated_enum_util.h' 2025-07-24T03:55:18.6689410Z adding 'torch/include/google/protobuf/generated_message_reflection.h' 2025-07-24T03:55:18.6693920Z adding 'torch/include/google/protobuf/generated_message_table_driven.h' 2025-07-24T03:55:18.6697060Z adding 'torch/include/google/protobuf/generated_message_util.h' 2025-07-24T03:55:18.6699240Z adding 'torch/include/google/protobuf/has_bits.h' 2025-07-24T03:55:18.6893160Z adding 'torch/include/google/protobuf/implicit_weak_message.h' 2025-07-24T03:55:18.6893550Z adding 'torch/include/google/protobuf/inlined_string_field.h' 2025-07-24T03:55:18.6893630Z adding 'torch/include/google/protobuf/map.h' 2025-07-24T03:55:18.6893720Z adding 'torch/include/google/protobuf/map_entry.h' 2025-07-24T03:55:18.6893830Z adding 'torch/include/google/protobuf/map_entry_lite.h' 2025-07-24T03:55:18.6893910Z adding 'torch/include/google/protobuf/map_field.h' 2025-07-24T03:55:18.6894010Z adding 'torch/include/google/protobuf/map_field_inl.h' 2025-07-24T03:55:18.6894110Z adding 'torch/include/google/protobuf/map_field_lite.h' 2025-07-24T03:55:18.6894210Z adding 'torch/include/google/protobuf/map_type_handler.h' 2025-07-24T03:55:18.6894290Z adding 'torch/include/google/protobuf/message.h' 2025-07-24T03:55:18.6894390Z adding 'torch/include/google/protobuf/message_lite.h' 2025-07-24T03:55:18.6894470Z adding 'torch/include/google/protobuf/metadata.h' 2025-07-24T03:55:18.6894570Z adding 'torch/include/google/protobuf/metadata_lite.h' 2025-07-24T03:55:18.6894660Z adding 'torch/include/google/protobuf/parse_context.h' 2025-07-24T03:55:18.6894740Z adding 'torch/include/google/protobuf/port.h' 2025-07-24T03:55:18.6894820Z adding 'torch/include/google/protobuf/reflection.h' 2025-07-24T03:55:18.6894920Z adding 'torch/include/google/protobuf/reflection_ops.h' 2025-07-24T03:55:18.7154960Z adding 'torch/include/google/protobuf/repeated_field.h' 2025-07-24T03:55:18.7160520Z adding 'torch/include/google/protobuf/service.h' 2025-07-24T03:55:18.7164080Z adding 'torch/include/google/protobuf/source_context.pb.h' 2025-07-24T03:55:18.7170890Z adding 'torch/include/google/protobuf/struct.pb.h' 2025-07-24T03:55:18.7186760Z adding 'torch/include/google/protobuf/text_format.h' 2025-07-24T03:55:18.7186870Z adding 'torch/include/google/protobuf/timestamp.pb.h' 2025-07-24T03:55:18.7195780Z adding 'torch/include/google/protobuf/type.pb.h' 2025-07-24T03:55:18.7201170Z adding 'torch/include/google/protobuf/unknown_field_set.h' 2025-07-24T03:55:18.7205600Z adding 'torch/include/google/protobuf/wire_format.h' 2025-07-24T03:55:18.7222320Z adding 'torch/include/google/protobuf/wire_format_lite.h' 2025-07-24T03:55:18.7229980Z adding 'torch/include/google/protobuf/wrappers.pb.h' 2025-07-24T03:55:18.7233670Z adding 'torch/include/google/protobuf/compiler/code_generator.h' 2025-07-24T03:55:18.7240000Z adding 'torch/include/google/protobuf/compiler/command_line_interface.h' 2025-07-24T03:55:18.7244860Z adding 'torch/include/google/protobuf/compiler/importer.h' 2025-07-24T03:55:18.7252510Z adding 'torch/include/google/protobuf/compiler/parser.h' 2025-07-24T03:55:18.7254150Z adding 'torch/include/google/protobuf/compiler/plugin.h' 2025-07-24T03:55:18.7265100Z adding 'torch/include/google/protobuf/compiler/plugin.pb.h' 2025-07-24T03:55:18.7268780Z adding 'torch/include/google/protobuf/compiler/cpp/cpp_generator.h' 2025-07-24T03:55:18.7270920Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_generator.h' 2025-07-24T03:55:18.7272940Z adding 'torch/include/google/protobuf/compiler/csharp/csharp_names.h' 2025-07-24T03:55:18.7274710Z adding 'torch/include/google/protobuf/compiler/java/java_generator.h' 2025-07-24T03:55:18.7276240Z adding 'torch/include/google/protobuf/compiler/java/java_names.h' 2025-07-24T03:55:18.7280270Z adding 'torch/include/google/protobuf/compiler/js/js_generator.h' 2025-07-24T03:55:18.7281550Z adding 'torch/include/google/protobuf/compiler/js/well_known_types_embed.h' 2025-07-24T03:55:18.7284040Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_generator.h' 2025-07-24T03:55:18.7287290Z adding 'torch/include/google/protobuf/compiler/objectivec/objectivec_helpers.h' 2025-07-24T03:55:18.7289000Z adding 'torch/include/google/protobuf/compiler/php/php_generator.h' 2025-07-24T03:55:18.7291440Z adding 'torch/include/google/protobuf/compiler/python/python_generator.h' 2025-07-24T03:55:18.7293290Z adding 'torch/include/google/protobuf/compiler/ruby/ruby_generator.h' 2025-07-24T03:55:18.7313560Z adding 'torch/include/google/protobuf/io/coded_stream.h' 2025-07-24T03:55:18.7316580Z adding 'torch/include/google/protobuf/io/gzip_stream.h' 2025-07-24T03:55:18.7318320Z adding 'torch/include/google/protobuf/io/io_win32.h' 2025-07-24T03:55:18.7322220Z adding 'torch/include/google/protobuf/io/printer.h' 2025-07-24T03:55:18.7323550Z adding 'torch/include/google/protobuf/io/strtod.h' 2025-07-24T03:55:18.7328650Z adding 'torch/include/google/protobuf/io/tokenizer.h' 2025-07-24T03:55:18.7331550Z adding 'torch/include/google/protobuf/io/zero_copy_stream.h' 2025-07-24T03:55:18.7334260Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl.h' 2025-07-24T03:55:18.7339530Z adding 'torch/include/google/protobuf/io/zero_copy_stream_impl_lite.h' 2025-07-24T03:55:18.7343140Z adding 'torch/include/google/protobuf/stubs/bytestream.h' 2025-07-24T03:55:18.7346010Z adding 'torch/include/google/protobuf/stubs/callback.h' 2025-07-24T03:55:18.7348000Z adding 'torch/include/google/protobuf/stubs/casts.h' 2025-07-24T03:55:18.7350380Z adding 'torch/include/google/protobuf/stubs/common.h' 2025-07-24T03:55:18.7352260Z adding 'torch/include/google/protobuf/stubs/fastmem.h' 2025-07-24T03:55:18.7353710Z adding 'torch/include/google/protobuf/stubs/hash.h' 2025-07-24T03:55:18.7356030Z adding 'torch/include/google/protobuf/stubs/logging.h' 2025-07-24T03:55:18.7357950Z adding 'torch/include/google/protobuf/stubs/macros.h' 2025-07-24T03:55:18.7363970Z adding 'torch/include/google/protobuf/stubs/map_util.h' 2025-07-24T03:55:18.7365560Z adding 'torch/include/google/protobuf/stubs/mutex.h' 2025-07-24T03:55:18.7366750Z adding 'torch/include/google/protobuf/stubs/once.h' 2025-07-24T03:55:18.7368720Z adding 'torch/include/google/protobuf/stubs/platform_macros.h' 2025-07-24T03:55:18.7371260Z adding 'torch/include/google/protobuf/stubs/port.h' 2025-07-24T03:55:18.7372960Z adding 'torch/include/google/protobuf/stubs/status.h' 2025-07-24T03:55:18.7374190Z adding 'torch/include/google/protobuf/stubs/stl_util.h' 2025-07-24T03:55:18.7378950Z adding 'torch/include/google/protobuf/stubs/stringpiece.h' 2025-07-24T03:55:18.7387310Z adding 'torch/include/google/protobuf/stubs/strutil.h' 2025-07-24T03:55:18.7389370Z adding 'torch/include/google/protobuf/stubs/template_util.h' 2025-07-24T03:55:18.7392810Z adding 'torch/include/google/protobuf/util/delimited_message_util.h' 2025-07-24T03:55:18.7394700Z adding 'torch/include/google/protobuf/util/field_comparator.h' 2025-07-24T03:55:18.7398160Z adding 'torch/include/google/protobuf/util/field_mask_util.h' 2025-07-24T03:55:18.7400290Z adding 'torch/include/google/protobuf/util/json_util.h' 2025-07-24T03:55:18.7412240Z adding 'torch/include/google/protobuf/util/message_differencer.h' 2025-07-24T03:55:18.7416550Z adding 'torch/include/google/protobuf/util/time_util.h' 2025-07-24T03:55:18.7418500Z adding 'torch/include/google/protobuf/util/type_resolver.h' 2025-07-24T03:55:18.7418990Z adding 'torch/include/google/protobuf/util/type_resolver_util.h' 2025-07-24T03:55:18.7421580Z adding 'torch/include/kai/kai_common.h' 2025-07-24T03:55:18.7426560Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-07-24T03:55:18.7551310Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f16_f16p_f16p/kai_imatmul_clamp_f16_f16p_f16p_interface.h' 2025-07-24T03:55:18.7552960Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p2vlx1_f32p2vlx1b_2vlx2vl_sme2_mopa.h' 2025-07-24T03:55:18.7554010Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_f32_f32p_f32p/kai_imatmul_clamp_f32_f32p_f32p_interface.h' 2025-07-24T03:55:18.7555730Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-07-24T03:55:18.7557440Z adding 'torch/include/kai/ukernels/matmul/imatmul_clamp_qai8_qai8p_qsi8cxp/kai_imatmul_clamp_qai8_qai8p_qsi8cxp_interface.h' 2025-07-24T03:55:18.7559270Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-07-24T03:55:18.7560240Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_bf16p_bf16p/kai_matmul_clamp_f16_bf16p_bf16p_interface.h' 2025-07-24T03:55:18.7562240Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p16x1biasf16_6x16x8_neon_mla.h' 2025-07-24T03:55:18.7563430Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p2vlx2b_1x16vl_sme2_dot.h' 2025-07-24T03:55:18.7564570Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16_f16p/kai_matmul_clamp_f16_f16_f16p_interface.h' 2025-07-24T03:55:18.7566250Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p2vlx2_f16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-07-24T03:55:18.7567320Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_f16p_f16p/kai_matmul_clamp_f16_f16p_f16p_interface.h' 2025-07-24T03:55:18.7569840Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7571000Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi4cxp4x8_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7572620Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi4cxp4x4_16x4_neon_dotprod.h' 2025-07-24T03:55:18.7574060Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi4cxp4x8_16x4_neon_i8mm.h' 2025-07-24T03:55:18.7575350Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi4cxp/kai_matmul_clamp_f16_qai8dxp_qsi4cxp_interface.h' 2025-07-24T03:55:18.7577130Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7578520Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7579910Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-07-24T03:55:18.7581540Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-07-24T03:55:18.7586860Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qai8dxp_qsi8cxp/kai_matmul_clamp_f16_qai8dxp_qsi8cxp_interface.h' 2025-07-24T03:55:18.7587540Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7588340Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-07-24T03:55:18.7589010Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f16_qsi8d32p_qai4c32p/kai_matmul_clamp_f16_qsi8d32p_qai4c32p_interface.h' 2025-07-24T03:55:18.7590000Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p1x4_bf16p12x4b_1x36_neon_dot.h' 2025-07-24T03:55:18.7591720Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p8x4_bf16p12x4b_8x12_neon_mmla.h' 2025-07-24T03:55:18.7592900Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-07-24T03:55:18.7594720Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p16vlx1b_1x16vl_sme2_mla.h' 2025-07-24T03:55:18.7596690Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p2vlx1b_1x16vl_sme2_mla.h' 2025-07-24T03:55:18.7598160Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p8x1biasf32_6x8x4_neon_mla.h' 2025-07-24T03:55:18.7599370Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32_f32p/kai_matmul_clamp_f32_f32_f32p_interface.h' 2025-07-24T03:55:18.7601450Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p2vlx1_f32p2vlx1biasf32_sme2_mopa.h' 2025-07-24T03:55:18.7602560Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_f32p_f32p/kai_matmul_clamp_f32_f32p_f32p_interface.h' 2025-07-24T03:55:18.7604510Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7606100Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x4_qsi4c32p8x4_1x8_neon_dotprod.h' 2025-07-24T03:55:18.7607780Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-07-24T03:55:18.7609270Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8_neon_dotprod.h' 2025-07-24T03:55:18.7610730Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp1x8_qsi4c32p8x8_1x8x32_neon_dotprod.h' 2025-07-24T03:55:18.7612170Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-07-24T03:55:18.7613760Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x4_qsi4c32p8x4_4x8_neon_dotprod.h' 2025-07-24T03:55:18.7615210Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_16x4x32_neon_i8mm.h' 2025-07-24T03:55:18.7616580Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-07-24T03:55:18.7618080Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8_neon_i8mm.h' 2025-07-24T03:55:18.7619590Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp4x8_qsi4c32p8x8_4x8x32_neon_i8mm.h' 2025-07-24T03:55:18.7620640Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4c32p/kai_matmul_clamp_f32_qai8dxp_qsi4c32p_interface.h' 2025-07-24T03:55:18.7622590Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1vlx8_qsi4cxp4vlx8_1vlx4vl_sme2_mopa.h' 2025-07-24T03:55:18.7623900Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4vlx4_1x4vl_sme2_sdot.h' 2025-07-24T03:55:18.7625770Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi4cxp4x4_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7627330Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp4x8_1x4x32_neon_dotprod.h' 2025-07-24T03:55:18.7628810Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi4cxp8x8_1x8x32_neon_dotprod.h' 2025-07-24T03:55:18.7630310Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi4cxp8x4_8x8x32_neon_dotprod.h' 2025-07-24T03:55:18.7632010Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x4_16x4x32_neon_dotprod.h' 2025-07-24T03:55:18.7633890Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_4x4x32_neon_i8mm.h' 2025-07-24T03:55:18.7635460Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp4x8_8x4x32_neon_i8mm.h' 2025-07-24T03:55:18.7637180Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_4x8x32_neon_i8mm.h' 2025-07-24T03:55:18.7638930Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi4cxp8x8_8x8x32_neon_i8mm.h' 2025-07-24T03:55:18.7640140Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi4cxp/kai_matmul_clamp_f32_qai8dxp_qsi4cxp_interface.h' 2025-07-24T03:55:18.7641710Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x4_qsi8cxp4x4_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7643380Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp1x8_qsi8cxp4x8_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7644900Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x4_qsi8cxp4x4_16x4_neon_dotprod.h' 2025-07-24T03:55:18.7646530Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp4x8_qsi8cxp4x8_16x4_neon_i8mm.h' 2025-07-24T03:55:18.7647600Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qai8dxp_qsi8cxp/kai_matmul_clamp_f32_qai8dxp_qsi8cxp_interface.h' 2025-07-24T03:55:18.7649900Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qai4c32p4x8_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7651150Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qai4c32p4x8_8x4_neon_i8mm.h' 2025-07-24T03:55:18.7652220Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qai4c32p/kai_matmul_clamp_f32_qsi8d32p_qai4c32p_interface.h' 2025-07-24T03:55:18.7654210Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1vlx4_qsi4c32p4vlx4_1vlx4vl_sme2_mopa.h' 2025-07-24T03:55:18.7656020Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4vlx4_1x4vl_sme2_sdot.h' 2025-07-24T03:55:18.7657880Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x4_qsi4c32p4x4_1x4_neon_dotprod.h' 2025-07-24T03:55:18.7660660Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p1x8_qsi4c32p4x8_1x4x32_neon_dotprod.h' 2025-07-24T03:55:18.7662260Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x4_qsi4c32p4x4_16x4_neon_dotprod.h' 2025-07-24T03:55:18.7663960Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_16x4_neon_i8mm.h' 2025-07-24T03:55:18.7665630Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p4x8_qsi4c32p4x8_8x4x32_neon_i8mm.h' 2025-07-24T03:55:18.7666730Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_f32_qsi8d32p_qsi4c32p/kai_matmul_clamp_f32_qsi8d32p_qsi4c32p_interface.h' 2025-07-24T03:55:18.7668490Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p2vlx2_bf16p2vlx2_2vlx2vl_sme2_mopa.h' 2025-07-24T03:55:18.7669650Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_fp32_bf16p_bf16p/kai_matmul_clamp_f32_bf16p_bf16p_interface.h' 2025-07-24T03:55:18.7671340Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp2vlx4sb_1x16vl_sme2_dot.h' 2025-07-24T03:55:18.7672420Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8_qsi8cxp/kai_matmul_clamp_qai8_qai8_qsi8cxp_interface.h' 2025-07-24T03:55:18.7674150Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p2vlx4_qsi8cxpsb2vlx4_2vlx2vl_sme2_mopa.h' 2025-07-24T03:55:18.7675150Z adding 'torch/include/kai/ukernels/matmul/matmul_clamp_qai8_qai8p_qsi8cxp/kai_matmul_clamp_qai8_qai8p_qsi8cxpsb_interface.h' 2025-07-24T03:55:18.7676870Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x16p2vlx2_x16p_sme.h' 2025-07-24T03:55:18.7677970Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x32p2vlx1_x32p_sme.h' 2025-07-24T03:55:18.7678990Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_imatmul_pack_x8p2vlx4_x8p_sme.h' 2025-07-24T03:55:18.7680590Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p2vlx2_f32_sme.h' 2025-07-24T03:55:18.7681470Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_bf16p8x4_f16_neon.h' 2025-07-24T03:55:18.7682600Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_f32p2vlx1_f32_sme.h' 2025-07-24T03:55:18.7683640Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x16p2vlx2_x16_sme.h' 2025-07-24T03:55:18.7684790Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_pack_x8p2vlx4_x8_sme.h' 2025-07-24T03:55:18.7685920Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p1x4_f32_neon.h' 2025-07-24T03:55:18.7687010Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_bf16p8x4_f32_neon.h' 2025-07-24T03:55:18.7688330Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f16_neon.h' 2025-07-24T03:55:18.7689450Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qai8dxp_f32.h' 2025-07-24T03:55:18.7690730Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32.h' 2025-07-24T03:55:18.7691980Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32p_f32_neon.h' 2025-07-24T03:55:18.7693250Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f16_neon.h' 2025-07-24T03:55:18.7694520Z adding 'torch/include/kai/ukernels/matmul/pack/kai_lhs_quant_pack_qsi8d32pscalef32_f32_neon.h' 2025-07-24T03:55:18.7695780Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-07-24T03:55:18.7697120Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-07-24T03:55:18.7698390Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_imatmul_pack_kxn_x32p2vlx1b_x32_x32_sme.h' 2025-07-24T03:55:18.7699710Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf16_f16_neon.h' 2025-07-24T03:55:18.7701190Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p12x4biasf32_f16_neon.h' 2025-07-24T03:55:18.7702410Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_bf16p2vlx2b_f32_x32_sme.h' 2025-07-24T03:55:18.7703600Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f16p16x1biasf16_f16_f16_neon.h' 2025-07-24T03:55:18.7704800Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p16vlx1b_f32_f32_sme.h' 2025-07-24T03:55:18.7706150Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p2vlx1biasf32_f32_f32_sme.h' 2025-07-24T03:55:18.7707210Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_f32p8x1biasf32_f32_f32_neon.h' 2025-07-24T03:55:18.7708900Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4c32p_qsu4c32s1s0.h' 2025-07-24T03:55:18.7710500Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi4cxp_qs4cxs1s0.h' 2025-07-24T03:55:18.7711940Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp2vlx4sb_qs8cx_f32_i32_sme.h' 2025-07-24T03:55:18.7713500Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_qsi8cxp_qsi8cx_neon.h' 2025-07-24T03:55:18.7714770Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_kxn_x16p2vlx2b_x16_x16_sme.h' 2025-07-24T03:55:18.7716070Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_f32p2vlx1biasf32_f32_f32_sme.h' 2025-07-24T03:55:18.7717760Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qai4c32p_qau4c32s0s1_f32_f32_f32_neon.h' 2025-07-24T03:55:18.7719840Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32p_qsu4c32s1s0.h' 2025-07-24T03:55:18.7721340Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32ps1s0scalef16_qsu4c32s16s0_neon.h' 2025-07-24T03:55:18.7744480Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4c32pscalef16_qsu4c32s16s0.h' 2025-07-24T03:55:18.7744950Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxp_qs4cxs1s0.h' 2025-07-24T03:55:18.7745400Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi4cxps1s0_qsu4cxs1s0_neon.h' 2025-07-24T03:55:18.7745860Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_qsi8cxp_qsi8cx_neon.h' 2025-07-24T03:55:18.7746300Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_pack_nxk_x16p2vlx2b_x16_x16_sme.h' 2025-07-24T03:55:18.7746760Z adding 'torch/include/kai/ukernels/matmul/pack/kai_rhs_quant_pack_kxn_bf16p12x4biasf32_f32_neon.h' 2025-07-24T03:55:18.7747120Z adding 'torch/include/kineto/AbstractConfig.h' 2025-07-24T03:55:18.7747380Z adding 'torch/include/kineto/ActivityProfilerInterface.h' 2025-07-24T03:55:18.7747660Z adding 'torch/include/kineto/ActivityTraceInterface.h' 2025-07-24T03:55:18.7748370Z adding 'torch/include/kineto/ActivityType.h' 2025-07-24T03:55:18.7749160Z adding 'torch/include/kineto/ClientInterface.h' 2025-07-24T03:55:18.7749790Z adding 'torch/include/kineto/Config.h' 2025-07-24T03:55:18.7750380Z adding 'torch/include/kineto/GenericTraceActivity.h' 2025-07-24T03:55:18.7751070Z adding 'torch/include/kineto/IActivityProfiler.h' 2025-07-24T03:55:18.7751710Z adding 'torch/include/kineto/ILoggerObserver.h' 2025-07-24T03:55:18.7752390Z adding 'torch/include/kineto/ITraceActivity.h' 2025-07-24T03:55:18.7752630Z adding 'torch/include/kineto/LoggingAPI.h' 2025-07-24T03:55:18.7752830Z adding 'torch/include/kineto/ThreadUtil.h' 2025-07-24T03:55:18.7753040Z adding 'torch/include/kineto/TraceSpan.h' 2025-07-24T03:55:18.7753240Z adding 'torch/include/kineto/libkineto.h' 2025-07-24T03:55:18.7753450Z adding 'torch/include/kineto/output_base.h' 2025-07-24T03:55:18.7754270Z adding 'torch/include/kineto/time_since_epoch.h' 2025-07-24T03:55:18.7759550Z adding 'torch/include/pybind11/attr.h' 2025-07-24T03:55:18.7762090Z adding 'torch/include/pybind11/buffer_info.h' 2025-07-24T03:55:18.7778090Z adding 'torch/include/pybind11/cast.h' 2025-07-24T03:55:18.7781120Z adding 'torch/include/pybind11/chrono.h' 2025-07-24T03:55:18.7781710Z adding 'torch/include/pybind11/common.h' 2025-07-24T03:55:18.7783570Z adding 'torch/include/pybind11/complex.h' 2025-07-24T03:55:18.7784440Z adding 'torch/include/pybind11/eigen.h' 2025-07-24T03:55:18.7789400Z adding 'torch/include/pybind11/embed.h' 2025-07-24T03:55:18.7790940Z adding 'torch/include/pybind11/eval.h' 2025-07-24T03:55:18.7792820Z adding 'torch/include/pybind11/functional.h' 2025-07-24T03:55:18.7794960Z adding 'torch/include/pybind11/gil.h' 2025-07-24T03:55:18.7796630Z adding 'torch/include/pybind11/gil_safe_call_once.h' 2025-07-24T03:55:18.7799430Z adding 'torch/include/pybind11/iostream.h' 2025-07-24T03:55:18.7817170Z adding 'torch/include/pybind11/numpy.h' 2025-07-24T03:55:18.7820190Z adding 'torch/include/pybind11/operators.h' 2025-07-24T03:55:18.7821240Z adding 'torch/include/pybind11/options.h' 2025-07-24T03:55:18.7850040Z adding 'torch/include/pybind11/pybind11.h' 2025-07-24T03:55:18.7871840Z adding 'torch/include/pybind11/pytypes.h' 2025-07-24T03:55:18.7875330Z adding 'torch/include/pybind11/stl.h' 2025-07-24T03:55:18.7881240Z adding 'torch/include/pybind11/stl_bind.h' 2025-07-24T03:55:18.7882420Z adding 'torch/include/pybind11/type_caster_pyobject_ptr.h' 2025-07-24T03:55:18.7884110Z adding 'torch/include/pybind11/typing.h' 2025-07-24T03:55:18.7891450Z adding 'torch/include/pybind11/detail/class.h' 2025-07-24T03:55:18.8002520Z adding 'torch/include/pybind11/detail/common.h' 2025-07-24T03:55:18.8004750Z adding 'torch/include/pybind11/detail/cpp_conduit.h' 2025-07-24T03:55:18.8006240Z adding 'torch/include/pybind11/detail/descr.h' 2025-07-24T03:55:18.8007650Z adding 'torch/include/pybind11/detail/exception_translation.h' 2025-07-24T03:55:18.8011810Z adding 'torch/include/pybind11/detail/init.h' 2025-07-24T03:55:18.8018370Z adding 'torch/include/pybind11/detail/internals.h' 2025-07-24T03:55:18.8029350Z adding 'torch/include/pybind11/detail/type_caster_base.h' 2025-07-24T03:55:18.8030690Z adding 'torch/include/pybind11/detail/typeid.h' 2025-07-24T03:55:18.8031840Z adding 'torch/include/pybind11/detail/value_and_holder.h' 2025-07-24T03:55:18.8033310Z adding 'torch/include/pybind11/eigen/common.h' 2025-07-24T03:55:18.8040320Z adding 'torch/include/pybind11/eigen/matrix.h' 2025-07-24T03:55:18.8043450Z adding 'torch/include/pybind11/eigen/tensor.h' 2025-07-24T03:55:18.8045230Z adding 'torch/include/pybind11/stl/filesystem.h' 2025-07-24T03:55:18.8050330Z adding 'torch/include/torch/custom_class.h' 2025-07-24T03:55:18.8052680Z adding 'torch/include/torch/custom_class_detail.h' 2025-07-24T03:55:18.8053300Z adding 'torch/include/torch/extension.h' 2025-07-24T03:55:18.8062840Z adding 'torch/include/torch/library.h' 2025-07-24T03:55:18.8063950Z adding 'torch/include/torch/script.h' 2025-07-24T03:55:18.8066610Z adding 'torch/include/torch/csrc/CudaIPCTypes.h' 2025-07-24T03:55:18.8067440Z adding 'torch/include/torch/csrc/DataLoader.h' 2025-07-24T03:55:18.8068380Z adding 'torch/include/torch/csrc/Device.h' 2025-07-24T03:55:18.8069330Z adding 'torch/include/torch/csrc/DeviceAccelerator.h' 2025-07-24T03:55:18.8070310Z adding 'torch/include/torch/csrc/Dtype.h' 2025-07-24T03:55:18.8071400Z adding 'torch/include/torch/csrc/DynamicTypes.h' 2025-07-24T03:55:18.8072410Z adding 'torch/include/torch/csrc/Event.h' 2025-07-24T03:55:18.8097700Z adding 'torch/include/torch/csrc/Exceptions.h' 2025-07-24T03:55:18.8098360Z adding 'torch/include/torch/csrc/Export.h' 2025-07-24T03:55:18.8099370Z adding 'torch/include/torch/csrc/Generator.h' 2025-07-24T03:55:18.8100510Z adding 'torch/include/torch/csrc/Layout.h' 2025-07-24T03:55:18.8101450Z adding 'torch/include/torch/csrc/MemoryFormat.h' 2025-07-24T03:55:18.8102240Z adding 'torch/include/torch/csrc/Module.h' 2025-07-24T03:55:18.8103130Z adding 'torch/include/torch/csrc/PyInterpreter.h' 2025-07-24T03:55:18.8104170Z adding 'torch/include/torch/csrc/QScheme.h' 2025-07-24T03:55:18.8105070Z adding 'torch/include/torch/csrc/Size.h' 2025-07-24T03:55:18.8106120Z adding 'torch/include/torch/csrc/Storage.h' 2025-07-24T03:55:18.8106900Z adding 'torch/include/torch/csrc/StorageMethods.h' 2025-07-24T03:55:18.8107880Z adding 'torch/include/torch/csrc/StorageSharing.h' 2025-07-24T03:55:18.8108780Z adding 'torch/include/torch/csrc/Stream.h' 2025-07-24T03:55:18.8109620Z adding 'torch/include/torch/csrc/THConcat.h' 2025-07-24T03:55:18.8110480Z adding 'torch/include/torch/csrc/THP.h' 2025-07-24T03:55:18.8111510Z adding 'torch/include/torch/csrc/TypeInfo.h' 2025-07-24T03:55:18.8112280Z adding 'torch/include/torch/csrc/Types.h' 2025-07-24T03:55:18.8113280Z adding 'torch/include/torch/csrc/copy_utils.h' 2025-07-24T03:55:18.8114100Z adding 'torch/include/torch/csrc/itt.h' 2025-07-24T03:55:18.8115150Z adding 'torch/include/torch/csrc/itt_wrapper.h' 2025-07-24T03:55:18.8115990Z adding 'torch/include/torch/csrc/python_dimname.h' 2025-07-24T03:55:18.8116800Z adding 'torch/include/torch/csrc/python_headers.h' 2025-07-24T03:55:18.8117650Z adding 'torch/include/torch/csrc/serialization.h' 2025-07-24T03:55:18.8120000Z adding 'torch/include/torch/csrc/utils.h' 2025-07-24T03:55:18.8122730Z adding 'torch/include/torch/csrc/api/include/torch/all.h' 2025-07-24T03:55:18.8123480Z adding 'torch/include/torch/csrc/api/include/torch/arg.h' 2025-07-24T03:55:18.8124320Z adding 'torch/include/torch/csrc/api/include/torch/autograd.h' 2025-07-24T03:55:18.8125410Z adding 'torch/include/torch/csrc/api/include/torch/cuda.h' 2025-07-24T03:55:18.8126230Z adding 'torch/include/torch/csrc/api/include/torch/data.h' 2025-07-24T03:55:18.8128010Z adding 'torch/include/torch/csrc/api/include/torch/enum.h' 2025-07-24T03:55:18.8129790Z adding 'torch/include/torch/csrc/api/include/torch/expanding_array.h' 2025-07-24T03:55:18.8131990Z adding 'torch/include/torch/csrc/api/include/torch/fft.h' 2025-07-24T03:55:18.8132880Z adding 'torch/include/torch/csrc/api/include/torch/imethod.h' 2025-07-24T03:55:18.8133840Z adding 'torch/include/torch/csrc/api/include/torch/jit.h' 2025-07-24T03:55:18.8134960Z adding 'torch/include/torch/csrc/api/include/torch/mps.h' 2025-07-24T03:55:18.8136650Z adding 'torch/include/torch/csrc/api/include/torch/nested.h' 2025-07-24T03:55:18.8138040Z adding 'torch/include/torch/csrc/api/include/torch/nn.h' 2025-07-24T03:55:18.8140680Z adding 'torch/include/torch/csrc/api/include/torch/optim.h' 2025-07-24T03:55:18.8144430Z adding 'torch/include/torch/csrc/api/include/torch/ordered_dict.h' 2025-07-24T03:55:18.8147010Z adding 'torch/include/torch/csrc/api/include/torch/python.h' 2025-07-24T03:55:18.8148980Z adding 'torch/include/torch/csrc/api/include/torch/serialize.h' 2025-07-24T03:55:18.8149710Z adding 'torch/include/torch/csrc/api/include/torch/sparse.h' 2025-07-24T03:55:18.8153920Z adding 'torch/include/torch/csrc/api/include/torch/special.h' 2025-07-24T03:55:18.8154840Z adding 'torch/include/torch/csrc/api/include/torch/torch.h' 2025-07-24T03:55:18.8156120Z adding 'torch/include/torch/csrc/api/include/torch/types.h' 2025-07-24T03:55:18.8157550Z adding 'torch/include/torch/csrc/api/include/torch/utils.h' 2025-07-24T03:55:18.8158630Z adding 'torch/include/torch/csrc/api/include/torch/version.h' 2025-07-24T03:55:18.8159570Z adding 'torch/include/torch/csrc/api/include/torch/xpu.h' 2025-07-24T03:55:18.8161590Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader.h' 2025-07-24T03:55:18.8162980Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader_options.h' 2025-07-24T03:55:18.8163960Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets.h' 2025-07-24T03:55:18.8166140Z adding 'torch/include/torch/csrc/api/include/torch/data/example.h' 2025-07-24T03:55:18.8166850Z adding 'torch/include/torch/csrc/api/include/torch/data/iterator.h' 2025-07-24T03:55:18.8169060Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers.h' 2025-07-24T03:55:18.8169650Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms.h' 2025-07-24T03:55:18.8171660Z adding 'torch/include/torch/csrc/api/include/torch/data/worker_exception.h' 2025-07-24T03:55:18.8174920Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/base.h' 2025-07-24T03:55:18.8176130Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateful.h' 2025-07-24T03:55:18.8177550Z adding 'torch/include/torch/csrc/api/include/torch/data/dataloader/stateless.h' 2025-07-24T03:55:18.8179330Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/base.h' 2025-07-24T03:55:18.8184850Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/chunk.h' 2025-07-24T03:55:18.8186170Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/map.h' 2025-07-24T03:55:18.8187240Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/mnist.h' 2025-07-24T03:55:18.8188550Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/shared.h' 2025-07-24T03:55:18.8189650Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/stateful.h' 2025-07-24T03:55:18.8190690Z adding 'torch/include/torch/csrc/api/include/torch/data/datasets/tensor.h' 2025-07-24T03:55:18.8192290Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/data_shuttle.h' 2025-07-24T03:55:18.8193540Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/queue.h' 2025-07-24T03:55:18.8195120Z adding 'torch/include/torch/csrc/api/include/torch/data/detail/sequencers.h' 2025-07-24T03:55:18.8196400Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/base.h' 2025-07-24T03:55:18.8197360Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/custom_batch_request.h' 2025-07-24T03:55:18.8198720Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/distributed.h' 2025-07-24T03:55:18.8199730Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/random.h' 2025-07-24T03:55:18.8200740Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/sequential.h' 2025-07-24T03:55:18.8201600Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/serialize.h' 2025-07-24T03:55:18.8202760Z adding 'torch/include/torch/csrc/api/include/torch/data/samplers/stream.h' 2025-07-24T03:55:18.8204090Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/base.h' 2025-07-24T03:55:18.8205070Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/collate.h' 2025-07-24T03:55:18.8206050Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/lambda.h' 2025-07-24T03:55:18.8206980Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/stack.h' 2025-07-24T03:55:18.8208110Z adding 'torch/include/torch/csrc/api/include/torch/data/transforms/tensor.h' 2025-07-24T03:55:18.8211730Z adding 'torch/include/torch/csrc/api/include/torch/detail/TensorDataContainer.h' 2025-07-24T03:55:18.8212530Z adding 'torch/include/torch/csrc/api/include/torch/detail/static.h' 2025-07-24T03:55:18.8214660Z adding 'torch/include/torch/csrc/api/include/torch/nn/cloneable.h' 2025-07-24T03:55:18.8215180Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional.h' 2025-07-24T03:55:18.8216560Z adding 'torch/include/torch/csrc/api/include/torch/nn/init.h' 2025-07-24T03:55:18.8221860Z adding 'torch/include/torch/csrc/api/include/torch/nn/module.h' 2025-07-24T03:55:18.8222600Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules.h' 2025-07-24T03:55:18.8223400Z adding 'torch/include/torch/csrc/api/include/torch/nn/options.h' 2025-07-24T03:55:18.8224740Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl-inl.h' 2025-07-24T03:55:18.8226880Z adding 'torch/include/torch/csrc/api/include/torch/nn/pimpl.h' 2025-07-24T03:55:18.8227410Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils.h' 2025-07-24T03:55:18.8232230Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/activation.h' 2025-07-24T03:55:18.8233240Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/batchnorm.h' 2025-07-24T03:55:18.8234630Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/conv.h' 2025-07-24T03:55:18.8235790Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/distance.h' 2025-07-24T03:55:18.8237140Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/dropout.h' 2025-07-24T03:55:18.8238840Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/embedding.h' 2025-07-24T03:55:18.8239890Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/fold.h' 2025-07-24T03:55:18.8240890Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/instancenorm.h' 2025-07-24T03:55:18.8241780Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/linear.h' 2025-07-24T03:55:18.8245680Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/loss.h' 2025-07-24T03:55:18.8246950Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/normalization.h' 2025-07-24T03:55:18.8248050Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/padding.h' 2025-07-24T03:55:18.8248960Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pixelshuffle.h' 2025-07-24T03:55:18.8252730Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/pooling.h' 2025-07-24T03:55:18.8254900Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/upsampling.h' 2025-07-24T03:55:18.8255910Z adding 'torch/include/torch/csrc/api/include/torch/nn/functional/vision.h' 2025-07-24T03:55:18.8257250Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/_functions.h' 2025-07-24T03:55:18.8260760Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/activation.h' 2025-07-24T03:55:18.8261940Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/adaptive.h' 2025-07-24T03:55:18.8264090Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/batchnorm.h' 2025-07-24T03:55:18.8265160Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/common.h' 2025-07-24T03:55:18.8267960Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/conv.h' 2025-07-24T03:55:18.8268880Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/distance.h' 2025-07-24T03:55:18.8270310Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/dropout.h' 2025-07-24T03:55:18.8271960Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/embedding.h' 2025-07-24T03:55:18.8272910Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/fold.h' 2025-07-24T03:55:18.8274350Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/instancenorm.h' 2025-07-24T03:55:18.8275870Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/linear.h' 2025-07-24T03:55:18.8279870Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/loss.h' 2025-07-24T03:55:18.8281230Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/normalization.h' 2025-07-24T03:55:18.8283470Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/padding.h' 2025-07-24T03:55:18.8284400Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pixelshuffle.h' 2025-07-24T03:55:18.8296770Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/pooling.h' 2025-07-24T03:55:18.8297170Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/rnn.h' 2025-07-24T03:55:18.8297530Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformer.h' 2025-07-24T03:55:18.8297940Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformercoder.h' 2025-07-24T03:55:18.8298360Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/transformerlayer.h' 2025-07-24T03:55:18.8298760Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/upsampling.h' 2025-07-24T03:55:18.8299120Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/utils.h' 2025-07-24T03:55:18.8300370Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any.h' 2025-07-24T03:55:18.8302020Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_module_holder.h' 2025-07-24T03:55:18.8303490Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/any_value.h' 2025-07-24T03:55:18.8304920Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/functional.h' 2025-07-24T03:55:18.8307300Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/moduledict.h' 2025-07-24T03:55:18.8309580Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/modulelist.h' 2025-07-24T03:55:18.8310510Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/named_any.h' 2025-07-24T03:55:18.8311980Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterdict.h' 2025-07-24T03:55:18.8313520Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/parameterlist.h' 2025-07-24T03:55:18.8316890Z adding 'torch/include/torch/csrc/api/include/torch/nn/modules/container/sequential.h' 2025-07-24T03:55:18.8320040Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/activation.h' 2025-07-24T03:55:18.8320770Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/adaptive.h' 2025-07-24T03:55:18.8321870Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/batchnorm.h' 2025-07-24T03:55:18.8324040Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/conv.h' 2025-07-24T03:55:18.8324850Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/distance.h' 2025-07-24T03:55:18.8325900Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/dropout.h' 2025-07-24T03:55:18.8328000Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/embedding.h' 2025-07-24T03:55:18.8328890Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/fold.h' 2025-07-24T03:55:18.8330040Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/instancenorm.h' 2025-07-24T03:55:18.8331140Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/linear.h' 2025-07-24T03:55:18.8334700Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/loss.h' 2025-07-24T03:55:18.8336000Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/normalization.h' 2025-07-24T03:55:18.8337580Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/padding.h' 2025-07-24T03:55:18.8338630Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pixelshuffle.h' 2025-07-24T03:55:18.8341180Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/pooling.h' 2025-07-24T03:55:18.8342510Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/rnn.h' 2025-07-24T03:55:18.8343670Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformer.h' 2025-07-24T03:55:18.8344760Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformercoder.h' 2025-07-24T03:55:18.8345800Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/transformerlayer.h' 2025-07-24T03:55:18.8347160Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/upsampling.h' 2025-07-24T03:55:18.8348100Z adding 'torch/include/torch/csrc/api/include/torch/nn/options/vision.h' 2025-07-24T03:55:18.8351360Z adding 'torch/include/torch/csrc/api/include/torch/nn/parallel/data_parallel.h' 2025-07-24T03:55:18.8352760Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/clip_grad.h' 2025-07-24T03:55:18.8353970Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/convert_parameters.h' 2025-07-24T03:55:18.8357270Z adding 'torch/include/torch/csrc/api/include/torch/nn/utils/rnn.h' 2025-07-24T03:55:18.8358550Z adding 'torch/include/torch/csrc/api/include/torch/optim/adagrad.h' 2025-07-24T03:55:18.8359730Z adding 'torch/include/torch/csrc/api/include/torch/optim/adam.h' 2025-07-24T03:55:18.8360880Z adding 'torch/include/torch/csrc/api/include/torch/optim/adamw.h' 2025-07-24T03:55:18.8362180Z adding 'torch/include/torch/csrc/api/include/torch/optim/lbfgs.h' 2025-07-24T03:55:18.8364420Z adding 'torch/include/torch/csrc/api/include/torch/optim/optimizer.h' 2025-07-24T03:55:18.8365280Z adding 'torch/include/torch/csrc/api/include/torch/optim/rmsprop.h' 2025-07-24T03:55:18.8368080Z adding 'torch/include/torch/csrc/api/include/torch/optim/serialize.h' 2025-07-24T03:55:18.8368940Z adding 'torch/include/torch/csrc/api/include/torch/optim/sgd.h' 2025-07-24T03:55:18.8370270Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/lr_scheduler.h' 2025-07-24T03:55:18.8371360Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/reduce_on_plateau_scheduler.h' 2025-07-24T03:55:18.8372170Z adding 'torch/include/torch/csrc/api/include/torch/optim/schedulers/step_lr.h' 2025-07-24T03:55:18.8373200Z adding 'torch/include/torch/csrc/api/include/torch/python/init.h' 2025-07-24T03:55:18.8374220Z adding 'torch/include/torch/csrc/api/include/torch/serialize/archive.h' 2025-07-24T03:55:18.8375620Z adding 'torch/include/torch/csrc/api/include/torch/serialize/input-archive.h' 2025-07-24T03:55:18.8376740Z adding 'torch/include/torch/csrc/api/include/torch/serialize/output-archive.h' 2025-07-24T03:55:18.8377630Z adding 'torch/include/torch/csrc/api/include/torch/serialize/tensor.h' 2025-07-24T03:55:18.8383220Z adding 'torch/include/torch/csrc/autograd/FunctionsManual.h' 2025-07-24T03:55:18.8383910Z adding 'torch/include/torch/csrc/autograd/InferenceMode.h' 2025-07-24T03:55:18.8387210Z adding 'torch/include/torch/csrc/autograd/VariableTypeUtils.h' 2025-07-24T03:55:18.8388110Z adding 'torch/include/torch/csrc/autograd/anomaly_mode.h' 2025-07-24T03:55:18.8390270Z adding 'torch/include/torch/csrc/autograd/autograd.h' 2025-07-24T03:55:18.8390820Z adding 'torch/include/torch/csrc/autograd/autograd_not_implemented_fallback.h' 2025-07-24T03:55:18.8391670Z adding 'torch/include/torch/csrc/autograd/cpp_hook.h' 2025-07-24T03:55:18.8396820Z adding 'torch/include/torch/csrc/autograd/custom_function.h' 2025-07-24T03:55:18.8397720Z adding 'torch/include/torch/csrc/autograd/edge.h' 2025-07-24T03:55:18.8400620Z adding 'torch/include/torch/csrc/autograd/engine.h' 2025-07-24T03:55:18.8403370Z adding 'torch/include/torch/csrc/autograd/forward_grad.h' 2025-07-24T03:55:18.8410750Z adding 'torch/include/torch/csrc/autograd/function.h' 2025-07-24T03:55:18.8412360Z adding 'torch/include/torch/csrc/autograd/function_hook.h' 2025-07-24T03:55:18.8413010Z adding 'torch/include/torch/csrc/autograd/grad_mode.h' 2025-07-24T03:55:18.8416040Z adding 'torch/include/torch/csrc/autograd/graph_task.h' 2025-07-24T03:55:18.8418070Z adding 'torch/include/torch/csrc/autograd/input_buffer.h' 2025-07-24T03:55:18.8418950Z adding 'torch/include/torch/csrc/autograd/input_metadata.h' 2025-07-24T03:55:18.8420110Z adding 'torch/include/torch/csrc/autograd/jit_decomp_interface.h' 2025-07-24T03:55:18.8420860Z adding 'torch/include/torch/csrc/autograd/profiler.h' 2025-07-24T03:55:18.8423410Z adding 'torch/include/torch/csrc/autograd/profiler_kineto.h' 2025-07-24T03:55:18.8426090Z adding 'torch/include/torch/csrc/autograd/profiler_legacy.h' 2025-07-24T03:55:18.8426620Z adding 'torch/include/torch/csrc/autograd/profiler_python.h' 2025-07-24T03:55:18.8427600Z adding 'torch/include/torch/csrc/autograd/python_anomaly_mode.h' 2025-07-24T03:55:18.8428650Z adding 'torch/include/torch/csrc/autograd/python_autograd.h' 2025-07-24T03:55:18.8430070Z adding 'torch/include/torch/csrc/autograd/python_cpp_function.h' 2025-07-24T03:55:18.8431010Z adding 'torch/include/torch/csrc/autograd/python_engine.h' 2025-07-24T03:55:18.8431800Z adding 'torch/include/torch/csrc/autograd/python_enum_tag.h' 2025-07-24T03:55:18.8432820Z adding 'torch/include/torch/csrc/autograd/python_fft_functions.h' 2025-07-24T03:55:18.8434740Z adding 'torch/include/torch/csrc/autograd/python_function.h' 2025-07-24T03:55:18.8435520Z adding 'torch/include/torch/csrc/autograd/python_hook.h' 2025-07-24T03:55:18.8436380Z adding 'torch/include/torch/csrc/autograd/python_legacy_variable.h' 2025-07-24T03:55:18.8437390Z adding 'torch/include/torch/csrc/autograd/python_linalg_functions.h' 2025-07-24T03:55:18.8438240Z adding 'torch/include/torch/csrc/autograd/python_nested_functions.h' 2025-07-24T03:55:18.8439020Z adding 'torch/include/torch/csrc/autograd/python_nn_functions.h' 2025-07-24T03:55:18.8439960Z adding 'torch/include/torch/csrc/autograd/python_saved_variable_hooks.h' 2025-07-24T03:55:18.8440910Z adding 'torch/include/torch/csrc/autograd/python_sparse_functions.h' 2025-07-24T03:55:18.8441680Z adding 'torch/include/torch/csrc/autograd/python_special_functions.h' 2025-07-24T03:55:18.8442570Z adding 'torch/include/torch/csrc/autograd/python_torch_functions.h' 2025-07-24T03:55:18.8443890Z adding 'torch/include/torch/csrc/autograd/python_variable.h' 2025-07-24T03:55:18.8445370Z adding 'torch/include/torch/csrc/autograd/python_variable_indexing.h' 2025-07-24T03:55:18.8446270Z adding 'torch/include/torch/csrc/autograd/record_function_ops.h' 2025-07-24T03:55:18.8448350Z adding 'torch/include/torch/csrc/autograd/saved_variable.h' 2025-07-24T03:55:18.8448810Z adding 'torch/include/torch/csrc/autograd/saved_variable_hooks.h' 2025-07-24T03:55:18.8449760Z adding 'torch/include/torch/csrc/autograd/symbolic.h' 2025-07-24T03:55:18.8459310Z adding 'torch/include/torch/csrc/autograd/variable.h' 2025-07-24T03:55:18.8460140Z adding 'torch/include/torch/csrc/autograd/variable_info.h' 2025-07-24T03:55:18.8464560Z adding 'torch/include/torch/csrc/autograd/functions/accumulate_grad.h' 2025-07-24T03:55:18.8465560Z adding 'torch/include/torch/csrc/autograd/functions/basic_ops.h' 2025-07-24T03:55:18.8466540Z adding 'torch/include/torch/csrc/autograd/functions/comm.h' 2025-07-24T03:55:18.8467430Z adding 'torch/include/torch/csrc/autograd/functions/pybind.h' 2025-07-24T03:55:18.8470070Z adding 'torch/include/torch/csrc/autograd/functions/tensor.h' 2025-07-24T03:55:18.8471120Z adding 'torch/include/torch/csrc/autograd/functions/utils.h' 2025-07-24T03:55:18.8504590Z adding 'torch/include/torch/csrc/autograd/generated/Functions.h' 2025-07-24T03:55:18.8507970Z adding 'torch/include/torch/csrc/autograd/generated/VariableType.h' 2025-07-24T03:55:18.8511080Z adding 'torch/include/torch/csrc/autograd/generated/ViewFuncs.h' 2025-07-24T03:55:18.8512260Z adding 'torch/include/torch/csrc/autograd/generated/python_functions.h' 2025-07-24T03:55:18.8513370Z adding 'torch/include/torch/csrc/autograd/generated/python_return_types.h' 2025-07-24T03:55:18.8517950Z adding 'torch/include/torch/csrc/autograd/generated/variable_factories.h' 2025-07-24T03:55:18.8519350Z adding 'torch/include/torch/csrc/autograd/utils/error_messages.h' 2025-07-24T03:55:18.8520550Z adding 'torch/include/torch/csrc/autograd/utils/grad_layout_contract.h' 2025-07-24T03:55:18.8521730Z adding 'torch/include/torch/csrc/autograd/utils/lambda_post_hook.h' 2025-07-24T03:55:18.8522750Z adding 'torch/include/torch/csrc/autograd/utils/python_arg_parsing.h' 2025-07-24T03:55:18.8523600Z adding 'torch/include/torch/csrc/autograd/utils/warnings.h' 2025-07-24T03:55:18.8524870Z adding 'torch/include/torch/csrc/autograd/utils/wrap_outputs.h' 2025-07-24T03:55:18.8526150Z adding 'torch/include/torch/csrc/cpu/Module.h' 2025-07-24T03:55:18.8528640Z adding 'torch/include/torch/csrc/cuda/CUDAPluggableAllocator.h' 2025-07-24T03:55:18.8529230Z adding 'torch/include/torch/csrc/cuda/Event.h' 2025-07-24T03:55:18.8530050Z adding 'torch/include/torch/csrc/cuda/GdsFile.h' 2025-07-24T03:55:18.8531080Z adding 'torch/include/torch/csrc/cuda/Module.h' 2025-07-24T03:55:18.8531960Z adding 'torch/include/torch/csrc/cuda/Stream.h' 2025-07-24T03:55:18.8532720Z adding 'torch/include/torch/csrc/cuda/THCP.h' 2025-07-24T03:55:18.8533770Z adding 'torch/include/torch/csrc/cuda/comm.h' 2025-07-24T03:55:18.8534780Z adding 'torch/include/torch/csrc/cuda/device_set.h' 2025-07-24T03:55:18.8535740Z adding 'torch/include/torch/csrc/cuda/memory_snapshot.h' 2025-07-24T03:55:18.8537280Z adding 'torch/include/torch/csrc/cuda/nccl.h' 2025-07-24T03:55:18.8538050Z adding 'torch/include/torch/csrc/cuda/python_comm.h' 2025-07-24T03:55:18.8539070Z adding 'torch/include/torch/csrc/cuda/python_nccl.h' 2025-07-24T03:55:18.8539860Z adding 'torch/include/torch/csrc/cuda/utils.h' 2025-07-24T03:55:18.8542030Z adding 'torch/include/torch/csrc/distributed/autograd/autograd.h' 2025-07-24T03:55:18.8542530Z adding 'torch/include/torch/csrc/distributed/autograd/python_autograd.h' 2025-07-24T03:55:18.8543910Z adding 'torch/include/torch/csrc/distributed/autograd/utils.h' 2025-07-24T03:55:18.8546440Z adding 'torch/include/torch/csrc/distributed/autograd/context/container.h' 2025-07-24T03:55:18.8548770Z adding 'torch/include/torch/csrc/distributed/autograd/context/context.h' 2025-07-24T03:55:18.8551210Z adding 'torch/include/torch/csrc/distributed/autograd/engine/dist_engine.h' 2025-07-24T03:55:18.8552620Z adding 'torch/include/torch/csrc/distributed/autograd/functions/recvrpc_backward.h' 2025-07-24T03:55:18.8553420Z adding 'torch/include/torch/csrc/distributed/autograd/functions/sendrpc_backward.h' 2025-07-24T03:55:18.8554630Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/autograd_metadata.h' 2025-07-24T03:55:18.8555610Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_req.h' 2025-07-24T03:55:18.8556810Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/cleanup_autograd_context_resp.h' 2025-07-24T03:55:18.8558020Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_req.h' 2025-07-24T03:55:18.8558920Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/propagate_gradients_resp.h' 2025-07-24T03:55:18.8560150Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_autograd.h' 2025-07-24T03:55:18.8561520Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_req.h' 2025-07-24T03:55:18.8562600Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rpc_with_profiling_resp.h' 2025-07-24T03:55:18.8563520Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_req.h' 2025-07-24T03:55:18.8564390Z adding 'torch/include/torch/csrc/distributed/autograd/rpc_messages/rref_backward_resp.h' 2025-07-24T03:55:18.8568070Z adding 'torch/include/torch/csrc/distributed/c10d/Backend.hpp' 2025-07-24T03:55:18.8568830Z adding 'torch/include/torch/csrc/distributed/c10d/Backoff.hpp' 2025-07-24T03:55:18.8570330Z adding 'torch/include/torch/csrc/distributed/c10d/FakeProcessGroup.hpp' 2025-07-24T03:55:18.8571300Z adding 'torch/include/torch/csrc/distributed/c10d/FileStore.hpp' 2025-07-24T03:55:18.8574270Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorder.hpp' 2025-07-24T03:55:18.8578200Z adding 'torch/include/torch/csrc/distributed/c10d/FlightRecorderDetail.hpp' 2025-07-24T03:55:18.8578930Z adding 'torch/include/torch/csrc/distributed/c10d/Functional.hpp' 2025-07-24T03:55:18.8579900Z adding 'torch/include/torch/csrc/distributed/c10d/GlooDeviceFactory.hpp' 2025-07-24T03:55:18.8580970Z adding 'torch/include/torch/csrc/distributed/c10d/GroupRegistry.hpp' 2025-07-24T03:55:18.8582010Z adding 'torch/include/torch/csrc/distributed/c10d/HashStore.hpp' 2025-07-24T03:55:18.8585570Z adding 'torch/include/torch/csrc/distributed/c10d/NCCLUtils.hpp' 2025-07-24T03:55:18.8586170Z adding 'torch/include/torch/csrc/distributed/c10d/NanCheck.hpp' 2025-07-24T03:55:18.8588400Z adding 'torch/include/torch/csrc/distributed/c10d/ParamCommsUtils.hpp' 2025-07-24T03:55:18.8589190Z adding 'torch/include/torch/csrc/distributed/c10d/PrefixStore.hpp' 2025-07-24T03:55:18.8595000Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroup.hpp' 2025-07-24T03:55:18.8598700Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGloo.hpp' 2025-07-24T03:55:18.8602750Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupGlooDetail.hpp' 2025-07-24T03:55:18.8605010Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupMPI.hpp' 2025-07-24T03:55:18.8618040Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupNCCL.hpp' 2025-07-24T03:55:18.8620800Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupUCC.hpp' 2025-07-24T03:55:18.8622320Z adding 'torch/include/torch/csrc/distributed/c10d/ProcessGroupWrapper.hpp' 2025-07-24T03:55:18.8624790Z adding 'torch/include/torch/csrc/distributed/c10d/PyProcessGroup.hpp' 2025-07-24T03:55:18.8625700Z adding 'torch/include/torch/csrc/distributed/c10d/RankLocal.hpp' 2025-07-24T03:55:18.8627080Z adding 'torch/include/torch/csrc/distributed/c10d/Store.hpp' 2025-07-24T03:55:18.8629170Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStore.hpp' 2025-07-24T03:55:18.8630070Z adding 'torch/include/torch/csrc/distributed/c10d/TCPStoreBackend.hpp' 2025-07-24T03:55:18.8632590Z adding 'torch/include/torch/csrc/distributed/c10d/TraceUtils.h' 2025-07-24T03:55:18.8633860Z adding 'torch/include/torch/csrc/distributed/c10d/Types.hpp' 2025-07-24T03:55:18.8635280Z adding 'torch/include/torch/csrc/distributed/c10d/UCCTracing.hpp' 2025-07-24T03:55:18.8637440Z adding 'torch/include/torch/csrc/distributed/c10d/UCCUtils.hpp' 2025-07-24T03:55:18.8637960Z adding 'torch/include/torch/csrc/distributed/c10d/UnixSockUtils.hpp' 2025-07-24T03:55:18.8642600Z adding 'torch/include/torch/csrc/distributed/c10d/Utils.hpp' 2025-07-24T03:55:18.8643570Z adding 'torch/include/torch/csrc/distributed/c10d/WinSockUtils.hpp' 2025-07-24T03:55:18.8645610Z adding 'torch/include/torch/csrc/distributed/c10d/Work.hpp' 2025-07-24T03:55:18.8646150Z adding 'torch/include/torch/csrc/distributed/c10d/c10d.h' 2025-07-24T03:55:18.8648070Z adding 'torch/include/torch/csrc/distributed/c10d/comm.hpp' 2025-07-24T03:55:18.8648740Z adding 'torch/include/torch/csrc/distributed/c10d/debug.h' 2025-07-24T03:55:18.8649780Z adding 'torch/include/torch/csrc/distributed/c10d/default_comm_hooks.hpp' 2025-07-24T03:55:18.8650760Z adding 'torch/include/torch/csrc/distributed/c10d/error.h' 2025-07-24T03:55:18.8651740Z adding 'torch/include/torch/csrc/distributed/c10d/exception.h' 2025-07-24T03:55:18.8654150Z adding 'torch/include/torch/csrc/distributed/c10d/logger.hpp' 2025-07-24T03:55:18.8654900Z adding 'torch/include/torch/csrc/distributed/c10d/logging.h' 2025-07-24T03:55:18.8655860Z adding 'torch/include/torch/csrc/distributed/c10d/python_comm_hook.h' 2025-07-24T03:55:18.8662360Z adding 'torch/include/torch/csrc/distributed/c10d/reducer.hpp' 2025-07-24T03:55:18.8663600Z adding 'torch/include/torch/csrc/distributed/c10d/reducer_timer.hpp' 2025-07-24T03:55:18.8664700Z adding 'torch/include/torch/csrc/distributed/c10d/sequence_num.hpp' 2025-07-24T03:55:18.8665840Z adding 'torch/include/torch/csrc/distributed/c10d/socket.h' 2025-07-24T03:55:18.8666810Z adding 'torch/include/torch/csrc/distributed/c10d/socket_fmt.h' 2025-07-24T03:55:18.8668800Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/ControlCollectives.hpp' 2025-07-24T03:55:18.8669520Z adding 'torch/include/torch/csrc/distributed/c10d/control_collectives/StoreCollectives.hpp' 2025-07-24T03:55:18.8670830Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/Handlers.hpp' 2025-07-24T03:55:18.8671730Z adding 'torch/include/torch/csrc/distributed/c10d/control_plane/WorkerServer.hpp' 2025-07-24T03:55:18.8674660Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/CUDAEventCache.hpp' 2025-07-24T03:55:18.8674820Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/StreamBlock.hpp' 2025-07-24T03:55:18.8674940Z adding 'torch/include/torch/csrc/distributed/c10d/cuda/utils.hpp' 2025-07-24T03:55:18.8675890Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization.h' 2025-07-24T03:55:18.8676930Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_gpu.h' 2025-07-24T03:55:18.8677910Z adding 'torch/include/torch/csrc/distributed/c10d/quantization/quantization_utils.h' 2025-07-24T03:55:18.8680930Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory-inl.h' 2025-07-24T03:55:18.8681970Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemory.hpp' 2025-07-24T03:55:18.8683020Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryTypes.hpp' 2025-07-24T03:55:18.8684330Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/CUDASymmetricMemoryUtils.hpp' 2025-07-24T03:55:18.8685270Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/DMAConnectivity.hpp' 2025-07-24T03:55:18.8687540Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/SymmetricMemory.hpp' 2025-07-24T03:55:18.8688610Z adding 'torch/include/torch/csrc/distributed/c10d/symm_mem/intra_node_comm.hpp' 2025-07-24T03:55:18.8690060Z adding 'torch/include/torch/csrc/distributed/rpc/agent_utils.h' 2025-07-24T03:55:18.8692280Z adding 'torch/include/torch/csrc/distributed/rpc/message.h' 2025-07-24T03:55:18.8693300Z adding 'torch/include/torch/csrc/distributed/rpc/py_rref.h' 2025-07-24T03:55:18.8694480Z adding 'torch/include/torch/csrc/distributed/rpc/python_call.h' 2025-07-24T03:55:18.8695650Z adding 'torch/include/torch/csrc/distributed/rpc/python_functions.h' 2025-07-24T03:55:18.8696600Z adding 'torch/include/torch/csrc/distributed/rpc/python_remote_call.h' 2025-07-24T03:55:18.8697490Z adding 'torch/include/torch/csrc/distributed/rpc/python_resp.h' 2025-07-24T03:55:18.8699810Z adding 'torch/include/torch/csrc/distributed/rpc/python_rpc_handler.h' 2025-07-24T03:55:18.8700610Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback.h' 2025-07-24T03:55:18.8701530Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_impl.h' 2025-07-24T03:55:18.8702720Z adding 'torch/include/torch/csrc/distributed/rpc/request_callback_no_python.h' 2025-07-24T03:55:18.8703670Z adding 'torch/include/torch/csrc/distributed/rpc/rpc.h' 2025-07-24T03:55:18.8707390Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_agent.h' 2025-07-24T03:55:18.8708080Z adding 'torch/include/torch/csrc/distributed/rpc/rpc_command_base.h' 2025-07-24T03:55:18.8712470Z adding 'torch/include/torch/csrc/distributed/rpc/rref_context.h' 2025-07-24T03:55:18.8716930Z adding 'torch/include/torch/csrc/distributed/rpc/rref_impl.h' 2025-07-24T03:55:18.8718070Z adding 'torch/include/torch/csrc/distributed/rpc/rref_proto.h' 2025-07-24T03:55:18.8719280Z adding 'torch/include/torch/csrc/distributed/rpc/script_call.h' 2025-07-24T03:55:18.8720290Z adding 'torch/include/torch/csrc/distributed/rpc/script_remote_call.h' 2025-07-24T03:55:18.8721380Z adding 'torch/include/torch/csrc/distributed/rpc/script_resp.h' 2025-07-24T03:55:18.8726060Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_agent.h' 2025-07-24T03:55:18.8727520Z adding 'torch/include/torch/csrc/distributed/rpc/tensorpipe_utils.h' 2025-07-24T03:55:18.8729770Z adding 'torch/include/torch/csrc/distributed/rpc/torchscript_functions.h' 2025-07-24T03:55:18.8730640Z adding 'torch/include/torch/csrc/distributed/rpc/types.h' 2025-07-24T03:55:18.8731820Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_call.h' 2025-07-24T03:55:18.8732870Z adding 'torch/include/torch/csrc/distributed/rpc/unpickled_python_remote_call.h' 2025-07-24T03:55:18.8734600Z adding 'torch/include/torch/csrc/distributed/rpc/utils.h' 2025-07-24T03:55:18.8736040Z adding 'torch/include/torch/csrc/distributed/rpc/metrics/RpcMetricsHandler.h' 2025-07-24T03:55:18.8737680Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/remote_profiler_manager.h' 2025-07-24T03:55:18.8739090Z adding 'torch/include/torch/csrc/distributed/rpc/profiler/server_process_global_profiler.h' 2025-07-24T03:55:18.8741100Z adding 'torch/include/torch/csrc/distributed/rpc/testing/faulty_tensorpipe_agent.h' 2025-07-24T03:55:18.8741860Z adding 'torch/include/torch/csrc/distributed/rpc/testing/testing.h' 2025-07-24T03:55:18.8743720Z adding 'torch/include/torch/csrc/dynamo/cache_entry.h' 2025-07-24T03:55:18.8753780Z adding 'torch/include/torch/csrc/dynamo/compiled_autograd.h' 2025-07-24T03:55:18.8754800Z adding 'torch/include/torch/csrc/dynamo/cpp_shim.h' 2025-07-24T03:55:18.8755780Z adding 'torch/include/torch/csrc/dynamo/cpython_defs.h' 2025-07-24T03:55:18.8756810Z adding 'torch/include/torch/csrc/dynamo/cpython_includes.h' 2025-07-24T03:55:18.8758390Z adding 'torch/include/torch/csrc/dynamo/debug_macros.h' 2025-07-24T03:55:18.8759330Z adding 'torch/include/torch/csrc/dynamo/eval_frame.h' 2025-07-24T03:55:18.8760210Z adding 'torch/include/torch/csrc/dynamo/eval_frame_cpp.h' 2025-07-24T03:55:18.8762300Z adding 'torch/include/torch/csrc/dynamo/extra_state.h' 2025-07-24T03:55:18.8763410Z adding 'torch/include/torch/csrc/dynamo/framelocals_mapping.h' 2025-07-24T03:55:18.8764640Z adding 'torch/include/torch/csrc/dynamo/guards.h' 2025-07-24T03:55:18.8765470Z adding 'torch/include/torch/csrc/dynamo/init.h' 2025-07-24T03:55:18.8766360Z adding 'torch/include/torch/csrc/dynamo/python_compiled_autograd.h' 2025-07-24T03:55:18.8767310Z adding 'torch/include/torch/csrc/dynamo/utils.h' 2025-07-24T03:55:18.8768520Z adding 'torch/include/torch/csrc/export/example_upgraders.h' 2025-07-24T03:55:18.8769920Z adding 'torch/include/torch/csrc/export/pt2_archive_constants.h' 2025-07-24T03:55:18.8770670Z adding 'torch/include/torch/csrc/export/pybind.h' 2025-07-24T03:55:18.8772610Z adding 'torch/include/torch/csrc/export/upgrader.h' 2025-07-24T03:55:18.8773440Z adding 'torch/include/torch/csrc/functorch/init.h' 2025-07-24T03:55:18.8774390Z adding 'torch/include/torch/csrc/fx/node.h' 2025-07-24T03:55:18.8776410Z adding 'torch/include/torch/csrc/inductor/array_ref_impl.h' 2025-07-24T03:55:18.8782930Z adding 'torch/include/torch/csrc/inductor/cpp_prefix.h' 2025-07-24T03:55:18.8783890Z adding 'torch/include/torch/csrc/inductor/inductor_ops.h' 2025-07-24T03:55:18.8784730Z adding 'torch/include/torch/csrc/inductor/static_cuda_launcher.h' 2025-07-24T03:55:18.8787000Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_holder.h' 2025-07-24T03:55:18.8788770Z adding 'torch/include/torch/csrc/inductor/aoti_eager/kernel_meta_info.h' 2025-07-24T03:55:18.8789600Z adding 'torch/include/torch/csrc/inductor/aoti_include/array_ref.h' 2025-07-24T03:55:18.8790400Z adding 'torch/include/torch/csrc/inductor/aoti_include/common.h' 2025-07-24T03:55:18.8791290Z adding 'torch/include/torch/csrc/inductor/aoti_include/cpu.h' 2025-07-24T03:55:18.8792030Z adding 'torch/include/torch/csrc/inductor/aoti_include/cuda.h' 2025-07-24T03:55:18.8792780Z adding 'torch/include/torch/csrc/inductor/aoti_include/mps.h' 2025-07-24T03:55:18.8793560Z adding 'torch/include/torch/csrc/inductor/aoti_include/xpu.h' 2025-07-24T03:55:18.8795010Z adding 'torch/include/torch/csrc/inductor/aoti_package/model_package_loader.h' 2025-07-24T03:55:18.8795760Z adding 'torch/include/torch/csrc/inductor/aoti_package/pybind.h' 2025-07-24T03:55:18.8797830Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner.h' 2025-07-24T03:55:18.8798390Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cpu.h' 2025-07-24T03:55:18.8799450Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_cuda.h' 2025-07-24T03:55:18.8800290Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_mps.h' 2025-07-24T03:55:18.8801300Z adding 'torch/include/torch/csrc/inductor/aoti_runner/model_container_runner_xpu.h' 2025-07-24T03:55:18.8802000Z adding 'torch/include/torch/csrc/inductor/aoti_runner/pybind.h' 2025-07-24T03:55:18.8804360Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/arrayref_tensor.h' 2025-07-24T03:55:18.8804980Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/constant_type.h' 2025-07-24T03:55:18.8806130Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/device_utils.h' 2025-07-24T03:55:18.8808360Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/interface.h' 2025-07-24T03:55:18.8809700Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/mini_array_ref.h' 2025-07-24T03:55:18.8810810Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model.h' 2025-07-24T03:55:18.8815570Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_base.h' 2025-07-24T03:55:18.8820860Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/model_container.h' 2025-07-24T03:55:18.8821930Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/scalar_to_tensor.h' 2025-07-24T03:55:18.8824430Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/sycl_runtime_wrappers.h' 2025-07-24T03:55:18.8825020Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/thread_local.h' 2025-07-24T03:55:18.8827460Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils.h' 2025-07-24T03:55:18.8829280Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_cuda.h' 2025-07-24T03:55:18.8830220Z adding 'torch/include/torch/csrc/inductor/aoti_runtime/utils_xpu.h' 2025-07-24T03:55:18.8831460Z adding 'torch/include/torch/csrc/inductor/aoti_torch/mkldnn_tensor.h' 2025-07-24T03:55:18.8833450Z adding 'torch/include/torch/csrc/inductor/aoti_torch/oss_proxy_executor.h' 2025-07-24T03:55:18.8834100Z adding 'torch/include/torch/csrc/inductor/aoti_torch/proxy_executor.h' 2025-07-24T03:55:18.8835070Z adding 'torch/include/torch/csrc/inductor/aoti_torch/tensor_converter.h' 2025-07-24T03:55:18.8837020Z adding 'torch/include/torch/csrc/inductor/aoti_torch/utils.h' 2025-07-24T03:55:18.8838300Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/macros.h' 2025-07-24T03:55:18.8842460Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim.h' 2025-07-24T03:55:18.8843690Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_cpu.h' 2025-07-24T03:55:18.8845170Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_deprecated.h' 2025-07-24T03:55:18.8846040Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_mps.h' 2025-07-24T03:55:18.8847270Z adding 'torch/include/torch/csrc/inductor/aoti_torch/c/shim_xpu.h' 2025-07-24T03:55:18.8851200Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cpu.h' 2025-07-24T03:55:18.8855060Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_cuda.h' 2025-07-24T03:55:18.8857840Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_mps.h' 2025-07-24T03:55:18.8859730Z adding 'torch/include/torch/csrc/inductor/aoti_torch/generated/c_shim_xpu.h' 2025-07-24T03:55:18.8860670Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/array_ref.h' 2025-07-24T03:55:18.8861780Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/common.h' 2025-07-24T03:55:18.8862570Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cpu.h' 2025-07-24T03:55:18.8863330Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/cuda.h' 2025-07-24T03:55:18.8864190Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/mps.h' 2025-07-24T03:55:18.8864970Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/xpu.h' 2025-07-24T03:55:18.8866120Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cpu.h' 2025-07-24T03:55:18.8866830Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/cuda.h' 2025-07-24T03:55:18.8867700Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/mps.h' 2025-07-24T03:55:18.8868490Z adding 'torch/include/torch/csrc/inductor/cpp_wrapper/device_internal/xpu.h' 2025-07-24T03:55:18.8869460Z adding 'torch/include/torch/csrc/instruction_counter/Module.h' 2025-07-24T03:55:18.8871550Z adding 'torch/include/torch/csrc/jit/jit_log.h' 2025-07-24T03:55:18.8872440Z adding 'torch/include/torch/csrc/jit/jit_opt_limit.h' 2025-07-24T03:55:18.8873330Z adding 'torch/include/torch/csrc/jit/resource_guard.h' 2025-07-24T03:55:18.8877020Z adding 'torch/include/torch/csrc/jit/api/compilation_unit.h' 2025-07-24T03:55:18.8878740Z adding 'torch/include/torch/csrc/jit/api/function_impl.h' 2025-07-24T03:55:18.8879820Z adding 'torch/include/torch/csrc/jit/api/method.h' 2025-07-24T03:55:18.8885380Z adding 'torch/include/torch/csrc/jit/api/module.h' 2025-07-24T03:55:18.8887140Z adding 'torch/include/torch/csrc/jit/api/object.h' 2025-07-24T03:55:18.8888890Z adding 'torch/include/torch/csrc/jit/backends/backend.h' 2025-07-24T03:55:18.8891100Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_handler.h' 2025-07-24T03:55:18.8892000Z adding 'torch/include/torch/csrc/jit/backends/backend_debug_info.h' 2025-07-24T03:55:18.8892910Z adding 'torch/include/torch/csrc/jit/backends/backend_detail.h' 2025-07-24T03:55:18.8894060Z adding 'torch/include/torch/csrc/jit/backends/backend_exception.h' 2025-07-24T03:55:18.8895020Z adding 'torch/include/torch/csrc/jit/backends/backend_init.h' 2025-07-24T03:55:18.8895980Z adding 'torch/include/torch/csrc/jit/backends/backend_interface.h' 2025-07-24T03:55:18.8896820Z adding 'torch/include/torch/csrc/jit/backends/backend_preprocess.h' 2025-07-24T03:55:18.8897630Z adding 'torch/include/torch/csrc/jit/backends/backend_resolver.h' 2025-07-24T03:55:18.8899570Z adding 'torch/include/torch/csrc/jit/backends/coreml/cpp/context.h' 2025-07-24T03:55:18.8900310Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLCompiler.h' 2025-07-24T03:55:18.8901210Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLExecutor.h' 2025-07-24T03:55:18.8902060Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLFeatureProvider.h' 2025-07-24T03:55:18.8903080Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLModelWrapper.h' 2025-07-24T03:55:18.8903950Z adding 'torch/include/torch/csrc/jit/backends/coreml/objc/PTMCoreMLTensorSpec.h' 2025-07-24T03:55:18.8905500Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/xnnpack_graph_builder.h' 2025-07-24T03:55:18.8906750Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/compiler/xnn_compiler.h' 2025-07-24T03:55:18.8908080Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/executor/xnn_executor.h' 2025-07-24T03:55:18.8909500Z adding 'torch/include/torch/csrc/jit/backends/xnnpack/serialization/serializer.h' 2025-07-24T03:55:18.8911390Z adding 'torch/include/torch/csrc/jit/codegen/cuda/interface.h' 2025-07-24T03:55:18.8912280Z adding 'torch/include/torch/csrc/jit/codegen/fuser/arg_spec.h' 2025-07-24T03:55:18.8913290Z adding 'torch/include/torch/csrc/jit/codegen/fuser/codegen.h' 2025-07-24T03:55:18.8914320Z adding 'torch/include/torch/csrc/jit/codegen/fuser/compiler.h' 2025-07-24T03:55:18.8915220Z adding 'torch/include/torch/csrc/jit/codegen/fuser/executor.h' 2025-07-24T03:55:18.8915990Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fallback.h' 2025-07-24T03:55:18.8917350Z adding 'torch/include/torch/csrc/jit/codegen/fuser/fused_kernel.h' 2025-07-24T03:55:18.8918390Z adding 'torch/include/torch/csrc/jit/codegen/fuser/interface.h' 2025-07-24T03:55:18.8919300Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_cache.h' 2025-07-24T03:55:18.8920900Z adding 'torch/include/torch/csrc/jit/codegen/fuser/kernel_spec.h' 2025-07-24T03:55:18.8921930Z adding 'torch/include/torch/csrc/jit/codegen/fuser/partition_desc.h' 2025-07-24T03:55:18.8923170Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_desc.h' 2025-07-24T03:55:18.8927490Z adding 'torch/include/torch/csrc/jit/codegen/fuser/tensor_info.h' 2025-07-24T03:55:18.8928470Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/fused_kernel.h' 2025-07-24T03:55:18.8929720Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/resource_strings.h' 2025-07-24T03:55:18.8931030Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cpu/temp_file.h' 2025-07-24T03:55:18.8932230Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/fused_kernel.h' 2025-07-24T03:55:18.8934960Z adding 'torch/include/torch/csrc/jit/codegen/fuser/cuda/resource_strings.h' 2025-07-24T03:55:18.8937480Z adding 'torch/include/torch/csrc/jit/codegen/onednn/LlgaTensorImpl.h' 2025-07-24T03:55:18.8938040Z adding 'torch/include/torch/csrc/jit/codegen/onednn/decompose_silu.h' 2025-07-24T03:55:18.8938850Z adding 'torch/include/torch/csrc/jit/codegen/onednn/defer_size_check.h' 2025-07-24T03:55:18.8939860Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_fuser.h' 2025-07-24T03:55:18.8941090Z adding 'torch/include/torch/csrc/jit/codegen/onednn/graph_helper.h' 2025-07-24T03:55:18.8941890Z adding 'torch/include/torch/csrc/jit/codegen/onednn/guard_shape.h' 2025-07-24T03:55:18.8942880Z adding 'torch/include/torch/csrc/jit/codegen/onednn/interface.h' 2025-07-24T03:55:18.8944070Z adding 'torch/include/torch/csrc/jit/codegen/onednn/kernel.h' 2025-07-24T03:55:18.8945020Z adding 'torch/include/torch/csrc/jit/codegen/onednn/layout_propagation.h' 2025-07-24T03:55:18.8946360Z adding 'torch/include/torch/csrc/jit/codegen/onednn/operator.h' 2025-07-24T03:55:18.8947230Z adding 'torch/include/torch/csrc/jit/codegen/onednn/prepare_binary.h' 2025-07-24T03:55:18.8949240Z adding 'torch/include/torch/csrc/jit/cuda/cuda.h' 2025-07-24T03:55:18.8950330Z adding 'torch/include/torch/csrc/jit/frontend/builtin_functions.h' 2025-07-24T03:55:18.8951220Z adding 'torch/include/torch/csrc/jit/frontend/canonicalize_modified_loop.h' 2025-07-24T03:55:18.8953830Z adding 'torch/include/torch/csrc/jit/frontend/concrete_module_type.h' 2025-07-24T03:55:18.8958390Z adding 'torch/include/torch/csrc/jit/frontend/convert_to_ssa.h' 2025-07-24T03:55:18.8958650Z adding 'torch/include/torch/csrc/jit/frontend/edit_distance.h' 2025-07-24T03:55:18.8958840Z adding 'torch/include/torch/csrc/jit/frontend/error_report.h' 2025-07-24T03:55:18.8958960Z adding 'torch/include/torch/csrc/jit/frontend/exit_transforms.h' 2025-07-24T03:55:18.8959100Z adding 'torch/include/torch/csrc/jit/frontend/function_schema_parser.h' 2025-07-24T03:55:18.8959380Z adding 'torch/include/torch/csrc/jit/frontend/inline_loop_condition.h' 2025-07-24T03:55:18.8960540Z adding 'torch/include/torch/csrc/jit/frontend/ir_emitter.h' 2025-07-24T03:55:18.8965160Z adding 'torch/include/torch/csrc/jit/frontend/lexer.h' 2025-07-24T03:55:18.8966630Z adding 'torch/include/torch/csrc/jit/frontend/mini_environment.h' 2025-07-24T03:55:18.8967580Z adding 'torch/include/torch/csrc/jit/frontend/name_mangler.h' 2025-07-24T03:55:18.8968790Z adding 'torch/include/torch/csrc/jit/frontend/parse_string_literal.h' 2025-07-24T03:55:18.8969660Z adding 'torch/include/torch/csrc/jit/frontend/parser.h' 2025-07-24T03:55:18.8970720Z adding 'torch/include/torch/csrc/jit/frontend/parser_constants.h' 2025-07-24T03:55:18.8971790Z adding 'torch/include/torch/csrc/jit/frontend/resolver.h' 2025-07-24T03:55:18.8972900Z adding 'torch/include/torch/csrc/jit/frontend/schema_matching.h' 2025-07-24T03:55:18.8973880Z adding 'torch/include/torch/csrc/jit/frontend/schema_type_parser.h' 2025-07-24T03:55:18.8975080Z adding 'torch/include/torch/csrc/jit/frontend/script_type_parser.h' 2025-07-24T03:55:18.8979130Z adding 'torch/include/torch/csrc/jit/frontend/source_range.h' 2025-07-24T03:55:18.8979880Z adding 'torch/include/torch/csrc/jit/frontend/source_ref.h' 2025-07-24T03:55:18.8980720Z adding 'torch/include/torch/csrc/jit/frontend/strtod.h' 2025-07-24T03:55:18.8986530Z adding 'torch/include/torch/csrc/jit/frontend/sugared_value.h' 2025-07-24T03:55:18.8989210Z adding 'torch/include/torch/csrc/jit/frontend/tracer.h' 2025-07-24T03:55:18.8991090Z adding 'torch/include/torch/csrc/jit/frontend/tree.h' 2025-07-24T03:55:18.8997470Z adding 'torch/include/torch/csrc/jit/frontend/tree_views.h' 2025-07-24T03:55:18.8998460Z adding 'torch/include/torch/csrc/jit/frontend/versioned_symbols.h' 2025-07-24T03:55:18.9002480Z adding 'torch/include/torch/csrc/jit/ir/alias_analysis.h' 2025-07-24T03:55:18.9003690Z adding 'torch/include/torch/csrc/jit/ir/attributes.h' 2025-07-24T03:55:18.9005010Z adding 'torch/include/torch/csrc/jit/ir/constants.h' 2025-07-24T03:55:18.9007160Z adding 'torch/include/torch/csrc/jit/ir/graph_node_list.h' 2025-07-24T03:55:18.9008020Z adding 'torch/include/torch/csrc/jit/ir/graph_utils.h' 2025-07-24T03:55:18.9021020Z adding 'torch/include/torch/csrc/jit/ir/ir.h' 2025-07-24T03:55:18.9023080Z adding 'torch/include/torch/csrc/jit/ir/ir_views.h' 2025-07-24T03:55:18.9023770Z adding 'torch/include/torch/csrc/jit/ir/irparser.h' 2025-07-24T03:55:18.9025020Z adding 'torch/include/torch/csrc/jit/ir/named_value.h' 2025-07-24T03:55:18.9025920Z adding 'torch/include/torch/csrc/jit/ir/node_hashing.h' 2025-07-24T03:55:18.9028060Z adding 'torch/include/torch/csrc/jit/ir/scope.h' 2025-07-24T03:55:18.9029260Z adding 'torch/include/torch/csrc/jit/ir/subgraph_matcher.h' 2025-07-24T03:55:18.9030140Z adding 'torch/include/torch/csrc/jit/ir/type_hashing.h' 2025-07-24T03:55:18.9031580Z adding 'torch/include/torch/csrc/jit/mobile/code.h' 2025-07-24T03:55:18.9032680Z adding 'torch/include/torch/csrc/jit/mobile/debug_info.h' 2025-07-24T03:55:18.9034810Z adding 'torch/include/torch/csrc/jit/mobile/file_format.h' 2025-07-24T03:55:18.9036060Z adding 'torch/include/torch/csrc/jit/mobile/flatbuffer_loader.h' 2025-07-24T03:55:18.9037240Z adding 'torch/include/torch/csrc/jit/mobile/frame.h' 2025-07-24T03:55:18.9038210Z adding 'torch/include/torch/csrc/jit/mobile/function.h' 2025-07-24T03:55:18.9039590Z adding 'torch/include/torch/csrc/jit/mobile/import.h' 2025-07-24T03:55:18.9040600Z adding 'torch/include/torch/csrc/jit/mobile/import_data.h' 2025-07-24T03:55:18.9041530Z adding 'torch/include/torch/csrc/jit/mobile/import_export_common.h' 2025-07-24T03:55:18.9042370Z adding 'torch/include/torch/csrc/jit/mobile/interpreter.h' 2025-07-24T03:55:18.9043280Z adding 'torch/include/torch/csrc/jit/mobile/method.h' 2025-07-24T03:55:18.9045240Z adding 'torch/include/torch/csrc/jit/mobile/module.h' 2025-07-24T03:55:18.9046290Z adding 'torch/include/torch/csrc/jit/mobile/observer.h' 2025-07-24T03:55:18.9047180Z adding 'torch/include/torch/csrc/jit/mobile/parse_bytecode.h' 2025-07-24T03:55:18.9048090Z adding 'torch/include/torch/csrc/jit/mobile/parse_operators.h' 2025-07-24T03:55:18.9048990Z adding 'torch/include/torch/csrc/jit/mobile/prim_ops_registery.h' 2025-07-24T03:55:18.9050440Z adding 'torch/include/torch/csrc/jit/mobile/profiler_edge.h' 2025-07-24T03:55:18.9051340Z adding 'torch/include/torch/csrc/jit/mobile/promoted_prim_ops.h' 2025-07-24T03:55:18.9052270Z adding 'torch/include/torch/csrc/jit/mobile/quantization.h' 2025-07-24T03:55:18.9053350Z adding 'torch/include/torch/csrc/jit/mobile/register_ops_common_utils.h' 2025-07-24T03:55:18.9054310Z adding 'torch/include/torch/csrc/jit/mobile/type_parser.h' 2025-07-24T03:55:18.9055210Z adding 'torch/include/torch/csrc/jit/mobile/upgrader_mobile.h' 2025-07-24T03:55:18.9056480Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport.h' 2025-07-24T03:55:18.9057490Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/backport_manager.h' 2025-07-24T03:55:18.9058710Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/model_compatibility.h' 2025-07-24T03:55:18.9059660Z adding 'torch/include/torch/csrc/jit/mobile/compatibility/runtime_compatibility.h' 2025-07-24T03:55:18.9060890Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/BuildFeatureTracer.h' 2025-07-24T03:55:18.9061830Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/CustomClassTracer.h' 2025-07-24T03:55:18.9062830Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/KernelDTypeTracer.h' 2025-07-24T03:55:18.9064760Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/MobileModelRunner.h' 2025-07-24T03:55:18.9065300Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/OperatorCallTracer.h' 2025-07-24T03:55:18.9066120Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TensorUtils.h' 2025-07-24T03:55:18.9067020Z adding 'torch/include/torch/csrc/jit/mobile/model_tracer/TracerRunner.h' 2025-07-24T03:55:18.9068150Z adding 'torch/include/torch/csrc/jit/mobile/nnc/aot_compiler.h' 2025-07-24T03:55:18.9070090Z adding 'torch/include/torch/csrc/jit/mobile/nnc/context.h' 2025-07-24T03:55:18.9070770Z adding 'torch/include/torch/csrc/jit/mobile/nnc/registry.h' 2025-07-24T03:55:18.9072090Z adding 'torch/include/torch/csrc/jit/mobile/train/export_data.h' 2025-07-24T03:55:18.9073070Z adding 'torch/include/torch/csrc/jit/mobile/train/random.h' 2025-07-24T03:55:18.9074010Z adding 'torch/include/torch/csrc/jit/mobile/train/sequential.h' 2025-07-24T03:55:18.9075950Z adding 'torch/include/torch/csrc/jit/mobile/train/optim/sgd.h' 2025-07-24T03:55:18.9076830Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders.h' 2025-07-24T03:55:18.9077760Z adding 'torch/include/torch/csrc/jit/operator_upgraders/upgraders_entry.h' 2025-07-24T03:55:18.9078940Z adding 'torch/include/torch/csrc/jit/operator_upgraders/utils.h' 2025-07-24T03:55:18.9079610Z adding 'torch/include/torch/csrc/jit/operator_upgraders/version_map.h' 2025-07-24T03:55:18.9081590Z adding 'torch/include/torch/csrc/jit/passes/add_if_then_else.h' 2025-07-24T03:55:18.9082080Z adding 'torch/include/torch/csrc/jit/passes/annotate_warns.h' 2025-07-24T03:55:18.9082900Z adding 'torch/include/torch/csrc/jit/passes/autocast.h' 2025-07-24T03:55:18.9083860Z adding 'torch/include/torch/csrc/jit/passes/bailout_graph.h' 2025-07-24T03:55:18.9084630Z adding 'torch/include/torch/csrc/jit/passes/batch_mm.h' 2025-07-24T03:55:18.9085490Z adding 'torch/include/torch/csrc/jit/passes/canonicalize.h' 2025-07-24T03:55:18.9086330Z adding 'torch/include/torch/csrc/jit/passes/canonicalize_graph_fuser_ops.h' 2025-07-24T03:55:18.9087090Z adding 'torch/include/torch/csrc/jit/passes/check_strict_fusion.h' 2025-07-24T03:55:18.9087930Z adding 'torch/include/torch/csrc/jit/passes/clear_profiling.h' 2025-07-24T03:55:18.9088850Z adding 'torch/include/torch/csrc/jit/passes/clear_undefinedness.h' 2025-07-24T03:55:18.9089700Z adding 'torch/include/torch/csrc/jit/passes/common_subexpression_elimination.h' 2025-07-24T03:55:18.9090480Z adding 'torch/include/torch/csrc/jit/passes/concat_opt.h' 2025-07-24T03:55:18.9091280Z adding 'torch/include/torch/csrc/jit/passes/constant_pooling.h' 2025-07-24T03:55:18.9092310Z adding 'torch/include/torch/csrc/jit/passes/constant_propagation.h' 2025-07-24T03:55:18.9093160Z adding 'torch/include/torch/csrc/jit/passes/create_autodiff_subgraphs.h' 2025-07-24T03:55:18.9093990Z adding 'torch/include/torch/csrc/jit/passes/create_functional_graphs.h' 2025-07-24T03:55:18.9094970Z adding 'torch/include/torch/csrc/jit/passes/dead_code_elimination.h' 2025-07-24T03:55:18.9095740Z adding 'torch/include/torch/csrc/jit/passes/decompose_ops.h' 2025-07-24T03:55:18.9096570Z adding 'torch/include/torch/csrc/jit/passes/device_type_analysis.h' 2025-07-24T03:55:18.9097370Z adding 'torch/include/torch/csrc/jit/passes/dtype_analysis.h' 2025-07-24T03:55:18.9098240Z adding 'torch/include/torch/csrc/jit/passes/eliminate_no_ops.h' 2025-07-24T03:55:18.9099140Z adding 'torch/include/torch/csrc/jit/passes/erase_number_types.h' 2025-07-24T03:55:18.9100220Z adding 'torch/include/torch/csrc/jit/passes/fixup_trace_scope_blocks.h' 2025-07-24T03:55:18.9101130Z adding 'torch/include/torch/csrc/jit/passes/fold_conv_bn.h' 2025-07-24T03:55:18.9102000Z adding 'torch/include/torch/csrc/jit/passes/fold_linear_bn.h' 2025-07-24T03:55:18.9102970Z adding 'torch/include/torch/csrc/jit/passes/freeze_module.h' 2025-07-24T03:55:18.9103810Z adding 'torch/include/torch/csrc/jit/passes/frozen_concat_linear.h' 2025-07-24T03:55:18.9104690Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_add_relu_fusion.h' 2025-07-24T03:55:18.9105480Z adding 'torch/include/torch/csrc/jit/passes/frozen_conv_folding.h' 2025-07-24T03:55:18.9106330Z adding 'torch/include/torch/csrc/jit/passes/frozen_graph_optimizations.h' 2025-07-24T03:55:18.9107130Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_folding.h' 2025-07-24T03:55:18.9107950Z adding 'torch/include/torch/csrc/jit/passes/frozen_linear_transpose.h' 2025-07-24T03:55:18.9108750Z adding 'torch/include/torch/csrc/jit/passes/frozen_ops_to_mkldnn.h' 2025-07-24T03:55:18.9109610Z adding 'torch/include/torch/csrc/jit/passes/fuse_linear.h' 2025-07-24T03:55:18.9110410Z adding 'torch/include/torch/csrc/jit/passes/fuse_relu.h' 2025-07-24T03:55:18.9111380Z adding 'torch/include/torch/csrc/jit/passes/graph_fuser.h' 2025-07-24T03:55:18.9112420Z adding 'torch/include/torch/csrc/jit/passes/graph_rewrite_helper.h' 2025-07-24T03:55:18.9113230Z adding 'torch/include/torch/csrc/jit/passes/guard_elimination.h' 2025-07-24T03:55:18.9114030Z adding 'torch/include/torch/csrc/jit/passes/hoist_conv_packed_params.h' 2025-07-24T03:55:18.9114860Z adding 'torch/include/torch/csrc/jit/passes/inline_autodiff_subgraphs.h' 2025-07-24T03:55:18.9115690Z adding 'torch/include/torch/csrc/jit/passes/inline_fork_wait.h' 2025-07-24T03:55:18.9116520Z adding 'torch/include/torch/csrc/jit/passes/inline_forked_closures.h' 2025-07-24T03:55:18.9117280Z adding 'torch/include/torch/csrc/jit/passes/inliner.h' 2025-07-24T03:55:18.9118060Z adding 'torch/include/torch/csrc/jit/passes/inplace_check.h' 2025-07-24T03:55:18.9118900Z adding 'torch/include/torch/csrc/jit/passes/insert_guards.h' 2025-07-24T03:55:18.9119700Z adding 'torch/include/torch/csrc/jit/passes/integer_value_refinement.h' 2025-07-24T03:55:18.9120480Z adding 'torch/include/torch/csrc/jit/passes/lift_closures.h' 2025-07-24T03:55:18.9121340Z adding 'torch/include/torch/csrc/jit/passes/liveness.h' 2025-07-24T03:55:18.9122260Z adding 'torch/include/torch/csrc/jit/passes/loop_unrolling.h' 2025-07-24T03:55:18.9123070Z adding 'torch/include/torch/csrc/jit/passes/lower_grad_of.h' 2025-07-24T03:55:18.9123960Z adding 'torch/include/torch/csrc/jit/passes/lower_graph.h' 2025-07-24T03:55:18.9124840Z adding 'torch/include/torch/csrc/jit/passes/lower_tuples.h' 2025-07-24T03:55:18.9125670Z adding 'torch/include/torch/csrc/jit/passes/metal_rewrite.h' 2025-07-24T03:55:18.9126540Z adding 'torch/include/torch/csrc/jit/passes/mkldnn_rewrite.h' 2025-07-24T03:55:18.9127360Z adding 'torch/include/torch/csrc/jit/passes/mobile_optimizer_type.h' 2025-07-24T03:55:18.9128180Z adding 'torch/include/torch/csrc/jit/passes/normalize_ops.h' 2025-07-24T03:55:18.9129190Z adding 'torch/include/torch/csrc/jit/passes/onednn_graph_fuser.h' 2025-07-24T03:55:18.9130050Z adding 'torch/include/torch/csrc/jit/passes/onnx.h' 2025-07-24T03:55:18.9131970Z adding 'torch/include/torch/csrc/jit/passes/pass_manager.h' 2025-07-24T03:55:18.9132470Z adding 'torch/include/torch/csrc/jit/passes/peephole.h' 2025-07-24T03:55:18.9133350Z adding 'torch/include/torch/csrc/jit/passes/peephole_alias_sensitive.h' 2025-07-24T03:55:18.9134260Z adding 'torch/include/torch/csrc/jit/passes/peephole_dict_idioms.h' 2025-07-24T03:55:18.9135330Z adding 'torch/include/torch/csrc/jit/passes/peephole_list_idioms.h' 2025-07-24T03:55:18.9136120Z adding 'torch/include/torch/csrc/jit/passes/peephole_non_tensor.h' 2025-07-24T03:55:18.9136900Z adding 'torch/include/torch/csrc/jit/passes/prepack_folding.h' 2025-07-24T03:55:18.9137710Z adding 'torch/include/torch/csrc/jit/passes/refine_tuple_types.h' 2025-07-24T03:55:18.9138490Z adding 'torch/include/torch/csrc/jit/passes/remove_dropout.h' 2025-07-24T03:55:18.9139380Z adding 'torch/include/torch/csrc/jit/passes/remove_exceptions.h' 2025-07-24T03:55:18.9140170Z adding 'torch/include/torch/csrc/jit/passes/remove_expands.h' 2025-07-24T03:55:18.9140970Z adding 'torch/include/torch/csrc/jit/passes/remove_inplace_ops.h' 2025-07-24T03:55:18.9142080Z adding 'torch/include/torch/csrc/jit/passes/remove_mutation.h' 2025-07-24T03:55:18.9142960Z adding 'torch/include/torch/csrc/jit/passes/remove_redundant_profiles.h' 2025-07-24T03:55:18.9143760Z adding 'torch/include/torch/csrc/jit/passes/replacement_of_old_operators.h' 2025-07-24T03:55:18.9144520Z adding 'torch/include/torch/csrc/jit/passes/requires_grad_analysis.h' 2025-07-24T03:55:18.9145510Z adding 'torch/include/torch/csrc/jit/passes/restore_mutation.h' 2025-07-24T03:55:18.9146430Z adding 'torch/include/torch/csrc/jit/passes/shape_analysis.h' 2025-07-24T03:55:18.9147340Z adding 'torch/include/torch/csrc/jit/passes/specialize_autogradzero.h' 2025-07-24T03:55:18.9148780Z adding 'torch/include/torch/csrc/jit/passes/subgraph_rewrite.h' 2025-07-24T03:55:18.9149880Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_analysis.h' 2025-07-24T03:55:18.9150850Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_cache.h' 2025-07-24T03:55:18.9152050Z adding 'torch/include/torch/csrc/jit/passes/symbolic_shape_runtime_fusion.h' 2025-07-24T03:55:18.9153220Z adding 'torch/include/torch/csrc/jit/passes/tensorexpr_fuser.h' 2025-07-24T03:55:18.9154260Z adding 'torch/include/torch/csrc/jit/passes/update_differentiable_graph_requires_grad.h' 2025-07-24T03:55:18.9155280Z adding 'torch/include/torch/csrc/jit/passes/value_refinement_utils.h' 2025-07-24T03:55:18.9156120Z adding 'torch/include/torch/csrc/jit/passes/variadic_ops.h' 2025-07-24T03:55:18.9156990Z adding 'torch/include/torch/csrc/jit/passes/vulkan_rewrite.h' 2025-07-24T03:55:18.9157840Z adding 'torch/include/torch/csrc/jit/passes/xnnpack_rewrite.h' 2025-07-24T03:55:18.9159180Z adding 'torch/include/torch/csrc/jit/passes/dbr_quantization/remove_redundant_aliases.h' 2025-07-24T03:55:18.9160380Z adding 'torch/include/torch/csrc/jit/passes/onnx/cast_all_constant_to_floating.h' 2025-07-24T03:55:18.9161240Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_fold.h' 2025-07-24T03:55:18.9162630Z adding 'torch/include/torch/csrc/jit/passes/onnx/constant_map.h' 2025-07-24T03:55:18.9163580Z adding 'torch/include/torch/csrc/jit/passes/onnx/deduplicate_initializers.h' 2025-07-24T03:55:18.9164450Z adding 'torch/include/torch/csrc/jit/passes/onnx/eliminate_unused_items.h' 2025-07-24T03:55:18.9165210Z adding 'torch/include/torch/csrc/jit/passes/onnx/eval_peephole.h' 2025-07-24T03:55:18.9166040Z adding 'torch/include/torch/csrc/jit/passes/onnx/fixup_onnx_controlflow.h' 2025-07-24T03:55:18.9167220Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_extraction.h' 2025-07-24T03:55:18.9168030Z adding 'torch/include/torch/csrc/jit/passes/onnx/function_substitution.h' 2025-07-24T03:55:18.9169070Z adding 'torch/include/torch/csrc/jit/passes/onnx/helper.h' 2025-07-24T03:55:18.9169930Z adding 'torch/include/torch/csrc/jit/passes/onnx/list_model_parameters.h' 2025-07-24T03:55:18.9170840Z adding 'torch/include/torch/csrc/jit/passes/onnx/naming.h' 2025-07-24T03:55:18.9171670Z adding 'torch/include/torch/csrc/jit/passes/onnx/onnx_log.h' 2025-07-24T03:55:18.9172470Z adding 'torch/include/torch/csrc/jit/passes/onnx/peephole.h' 2025-07-24T03:55:18.9173410Z adding 'torch/include/torch/csrc/jit/passes/onnx/prepare_division_for_onnx.h' 2025-07-24T03:55:18.9174490Z adding 'torch/include/torch/csrc/jit/passes/onnx/preprocess_for_onnx.h' 2025-07-24T03:55:18.9175050Z adding 'torch/include/torch/csrc/jit/passes/onnx/remove_inplace_ops_for_onnx.h' 2025-07-24T03:55:18.9175860Z adding 'torch/include/torch/csrc/jit/passes/onnx/scalar_type_analysis.h' 2025-07-24T03:55:18.9177350Z adding 'torch/include/torch/csrc/jit/passes/onnx/shape_type_inference.h' 2025-07-24T03:55:18.9178280Z adding 'torch/include/torch/csrc/jit/passes/onnx/unpack_quantized_weights.h' 2025-07-24T03:55:18.9179680Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/autograd_function_process.h' 2025-07-24T03:55:18.9180240Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/common.h' 2025-07-24T03:55:18.9181480Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_conversion.h' 2025-07-24T03:55:18.9182510Z adding 'torch/include/torch/csrc/jit/passes/onnx/pattern_conversion/pattern_encapsulation.h' 2025-07-24T03:55:18.9183770Z adding 'torch/include/torch/csrc/jit/passes/quantization/dedup_module_uses.h' 2025-07-24T03:55:18.9184840Z adding 'torch/include/torch/csrc/jit/passes/quantization/finalize.h' 2025-07-24T03:55:18.9185680Z adding 'torch/include/torch/csrc/jit/passes/quantization/fusion_passes.h' 2025-07-24T03:55:18.9187800Z adding 'torch/include/torch/csrc/jit/passes/quantization/helper.h' 2025-07-24T03:55:18.9188640Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_observers.h' 2025-07-24T03:55:18.9189610Z adding 'torch/include/torch/csrc/jit/passes/quantization/insert_quant_dequant.h' 2025-07-24T03:55:18.9195860Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_patterns.h' 2025-07-24T03:55:18.9196580Z adding 'torch/include/torch/csrc/jit/passes/quantization/quantization_type.h' 2025-07-24T03:55:18.9197460Z adding 'torch/include/torch/csrc/jit/passes/quantization/register_packed_params.h' 2025-07-24T03:55:18.9198590Z adding 'torch/include/torch/csrc/jit/passes/utils/check_alias_annotation.h' 2025-07-24T03:55:18.9200720Z adding 'torch/include/torch/csrc/jit/passes/utils/memory_dag.h' 2025-07-24T03:55:18.9201350Z adding 'torch/include/torch/csrc/jit/passes/utils/op_registry.h' 2025-07-24T03:55:18.9202180Z adding 'torch/include/torch/csrc/jit/passes/utils/optimization_utils.h' 2025-07-24T03:55:18.9203310Z adding 'torch/include/torch/csrc/jit/passes/utils/subgraph_utils.h' 2025-07-24T03:55:18.9204460Z adding 'torch/include/torch/csrc/jit/python/init.h' 2025-07-24T03:55:18.9284910Z adding 'torch/include/torch/csrc/jit/python/module_python.h' 2025-07-24T03:55:18.9287470Z adding 'torch/include/torch/csrc/jit/python/pybind.h' 2025-07-24T03:55:18.9297350Z adding 'torch/include/torch/csrc/jit/python/pybind_utils.h' 2025-07-24T03:55:18.9299420Z adding 'torch/include/torch/csrc/jit/python/python_arg_flatten.h' 2025-07-24T03:55:18.9300060Z adding 'torch/include/torch/csrc/jit/python/python_custom_class.h' 2025-07-24T03:55:18.9301390Z adding 'torch/include/torch/csrc/jit/python/python_dict.h' 2025-07-24T03:55:18.9302540Z adding 'torch/include/torch/csrc/jit/python/python_ir.h' 2025-07-24T03:55:18.9304170Z adding 'torch/include/torch/csrc/jit/python/python_ivalue.h' 2025-07-24T03:55:18.9305910Z adding 'torch/include/torch/csrc/jit/python/python_list.h' 2025-07-24T03:55:18.9308270Z adding 'torch/include/torch/csrc/jit/python/python_sugared_value.h' 2025-07-24T03:55:18.9308950Z adding 'torch/include/torch/csrc/jit/python/python_tracer.h' 2025-07-24T03:55:18.9309920Z adding 'torch/include/torch/csrc/jit/python/python_tree_views.h' 2025-07-24T03:55:18.9310710Z adding 'torch/include/torch/csrc/jit/python/script_init.h' 2025-07-24T03:55:18.9311600Z adding 'torch/include/torch/csrc/jit/python/update_graph_executor_opt.h' 2025-07-24T03:55:18.9312310Z adding 'torch/include/torch/csrc/jit/python/utf8_decoding_ignore.h' 2025-07-24T03:55:18.9316870Z adding 'torch/include/torch/csrc/jit/runtime/argument_spec.h' 2025-07-24T03:55:18.9318230Z adding 'torch/include/torch/csrc/jit/runtime/autodiff.h' 2025-07-24T03:55:18.9319500Z adding 'torch/include/torch/csrc/jit/runtime/calculate_necessary_args.h' 2025-07-24T03:55:18.9320430Z adding 'torch/include/torch/csrc/jit/runtime/custom_operator.h' 2025-07-24T03:55:18.9321430Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry.h' 2025-07-24T03:55:18.9322250Z adding 'torch/include/torch/csrc/jit/runtime/decomposition_registry_util.h' 2025-07-24T03:55:18.9323090Z adding 'torch/include/torch/csrc/jit/runtime/exception_message.h' 2025-07-24T03:55:18.9325050Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor.h' 2025-07-24T03:55:18.9326050Z adding 'torch/include/torch/csrc/jit/runtime/graph_executor_impl.h' 2025-07-24T03:55:18.9328100Z adding 'torch/include/torch/csrc/jit/runtime/graph_iterator.h' 2025-07-24T03:55:18.9329370Z adding 'torch/include/torch/csrc/jit/runtime/instruction.h' 2025-07-24T03:55:18.9331330Z adding 'torch/include/torch/csrc/jit/runtime/interpreter.h' 2025-07-24T03:55:18.9331950Z adding 'torch/include/torch/csrc/jit/runtime/jit_exception.h' 2025-07-24T03:55:18.9332800Z adding 'torch/include/torch/csrc/jit/runtime/jit_trace.h' 2025-07-24T03:55:18.9333880Z adding 'torch/include/torch/csrc/jit/runtime/logging.h' 2025-07-24T03:55:18.9336870Z adding 'torch/include/torch/csrc/jit/runtime/operator.h' 2025-07-24T03:55:18.9337260Z adding 'torch/include/torch/csrc/jit/runtime/operator_options.h' 2025-07-24T03:55:18.9338330Z adding 'torch/include/torch/csrc/jit/runtime/print_handler.h' 2025-07-24T03:55:18.9339420Z adding 'torch/include/torch/csrc/jit/runtime/profiling_graph_executor_impl.h' 2025-07-24T03:55:18.9343110Z adding 'torch/include/torch/csrc/jit/runtime/profiling_record.h' 2025-07-24T03:55:18.9348870Z adding 'torch/include/torch/csrc/jit/runtime/register_ops_utils.h' 2025-07-24T03:55:18.9350050Z adding 'torch/include/torch/csrc/jit/runtime/script_profile.h' 2025-07-24T03:55:18.9351160Z adding 'torch/include/torch/csrc/jit/runtime/serialized_shape_function_registry.h' 2025-07-24T03:55:18.9352120Z adding 'torch/include/torch/csrc/jit/runtime/shape_function_registry.h' 2025-07-24T03:55:18.9353000Z adding 'torch/include/torch/csrc/jit/runtime/simple_graph_executor_impl.h' 2025-07-24T03:55:18.9353950Z adding 'torch/include/torch/csrc/jit/runtime/slice_indices_adjust.h' 2025-07-24T03:55:18.9354940Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_script.h' 2025-07-24T03:55:18.9356280Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry.h' 2025-07-24T03:55:18.9357160Z adding 'torch/include/torch/csrc/jit/runtime/symbolic_shape_registry_util.h' 2025-07-24T03:55:18.9358100Z adding 'torch/include/torch/csrc/jit/runtime/vararg_functions.h' 2025-07-24T03:55:18.9359050Z adding 'torch/include/torch/csrc/jit/runtime/variable_tensor_list.h' 2025-07-24T03:55:18.9361300Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/can_emit_inline.h' 2025-07-24T03:55:18.9367900Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/code_impl.h' 2025-07-24T03:55:18.9368800Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/frame.h' 2025-07-24T03:55:18.9369740Z adding 'torch/include/torch/csrc/jit/runtime/interpreter/preprocess_graph.h' 2025-07-24T03:55:18.9372190Z adding 'torch/include/torch/csrc/jit/runtime/static/ProcessedNodeInputs.h' 2025-07-24T03:55:18.9372790Z adding 'torch/include/torch/csrc/jit/runtime/static/fusion.h' 2025-07-24T03:55:18.9380890Z adding 'torch/include/torch/csrc/jit/runtime/static/impl.h' 2025-07-24T03:55:18.9381580Z adding 'torch/include/torch/csrc/jit/runtime/static/init.h' 2025-07-24T03:55:18.9384550Z adding 'torch/include/torch/csrc/jit/runtime/static/memory_planner.h' 2025-07-24T03:55:18.9386280Z adding 'torch/include/torch/csrc/jit/runtime/static/ops.h' 2025-07-24T03:55:18.9387560Z adding 'torch/include/torch/csrc/jit/runtime/static/passes.h' 2025-07-24T03:55:18.9389700Z adding 'torch/include/torch/csrc/jit/runtime/static/processed_node_wrapper.h' 2025-07-24T03:55:18.9390280Z adding 'torch/include/torch/csrc/jit/runtime/static/static_method.h' 2025-07-24T03:55:18.9391370Z adding 'torch/include/torch/csrc/jit/runtime/static/te_wrapper.h' 2025-07-24T03:55:18.9393430Z adding 'torch/include/torch/csrc/jit/serialization/callstack_debug_info_serialization.h' 2025-07-24T03:55:18.9395800Z adding 'torch/include/torch/csrc/jit/serialization/export.h' 2025-07-24T03:55:18.9396580Z adding 'torch/include/torch/csrc/jit/serialization/export_bytecode.h' 2025-07-24T03:55:18.9397980Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer.h' 2025-07-24T03:55:18.9398920Z adding 'torch/include/torch/csrc/jit/serialization/flatbuffer_serializer_jit.h' 2025-07-24T03:55:18.9400130Z adding 'torch/include/torch/csrc/jit/serialization/import.h' 2025-07-24T03:55:18.9401070Z adding 'torch/include/torch/csrc/jit/serialization/import_export_constants.h' 2025-07-24T03:55:18.9402020Z adding 'torch/include/torch/csrc/jit/serialization/import_export_functions.h' 2025-07-24T03:55:18.9402940Z adding 'torch/include/torch/csrc/jit/serialization/import_export_helpers.h' 2025-07-24T03:55:18.9403930Z adding 'torch/include/torch/csrc/jit/serialization/import_read.h' 2025-07-24T03:55:18.9405090Z adding 'torch/include/torch/csrc/jit/serialization/import_source.h' 2025-07-24T03:55:18.9417520Z adding 'torch/include/torch/csrc/jit/serialization/mobile_bytecode_generated.h' 2025-07-24T03:55:18.9418720Z adding 'torch/include/torch/csrc/jit/serialization/onnx.h' 2025-07-24T03:55:18.9420660Z adding 'torch/include/torch/csrc/jit/serialization/pickle.h' 2025-07-24T03:55:18.9422200Z adding 'torch/include/torch/csrc/jit/serialization/pickler.h' 2025-07-24T03:55:18.9424600Z adding 'torch/include/torch/csrc/jit/serialization/pickler_helper.h' 2025-07-24T03:55:18.9425420Z adding 'torch/include/torch/csrc/jit/serialization/python_print.h' 2025-07-24T03:55:18.9426510Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization.h' 2025-07-24T03:55:18.9427430Z adding 'torch/include/torch/csrc/jit/serialization/source_range_serialization_impl.h' 2025-07-24T03:55:18.9428610Z adding 'torch/include/torch/csrc/jit/serialization/storage_context.h' 2025-07-24T03:55:18.9429570Z adding 'torch/include/torch/csrc/jit/serialization/type_name_uniquer.h' 2025-07-24T03:55:18.9431940Z adding 'torch/include/torch/csrc/jit/serialization/unpickler.h' 2025-07-24T03:55:18.9434440Z adding 'torch/include/torch/csrc/jit/tensorexpr/analysis.h' 2025-07-24T03:55:18.9435700Z adding 'torch/include/torch/csrc/jit/tensorexpr/block_codegen.h' 2025-07-24T03:55:18.9436860Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_inference.h' 2025-07-24T03:55:18.9438830Z adding 'torch/include/torch/csrc/jit/tensorexpr/bounds_overlap.h' 2025-07-24T03:55:18.9440570Z adding 'torch/include/torch/csrc/jit/tensorexpr/codegen.h' 2025-07-24T03:55:18.9441750Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_codegen.h' 2025-07-24T03:55:18.9442690Z adding 'torch/include/torch/csrc/jit/tensorexpr/cpp_intrinsics.h' 2025-07-24T03:55:18.9444960Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_codegen.h' 2025-07-24T03:55:18.9445910Z adding 'torch/include/torch/csrc/jit/tensorexpr/cuda_random.h' 2025-07-24T03:55:18.9448510Z adding 'torch/include/torch/csrc/jit/tensorexpr/eval.h' 2025-07-24T03:55:18.9449430Z adding 'torch/include/torch/csrc/jit/tensorexpr/exceptions.h' 2025-07-24T03:55:18.9452520Z adding 'torch/include/torch/csrc/jit/tensorexpr/expr.h' 2025-07-24T03:55:18.9453580Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions.h' 2025-07-24T03:55:18.9454590Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_core.h' 2025-07-24T03:55:18.9455830Z adding 'torch/include/torch/csrc/jit/tensorexpr/external_functions_registry.h' 2025-07-24T03:55:18.9457110Z adding 'torch/include/torch/csrc/jit/tensorexpr/fwd_decls.h' 2025-07-24T03:55:18.9458850Z adding 'torch/include/torch/csrc/jit/tensorexpr/graph_opt.h' 2025-07-24T03:55:18.9460530Z adding 'torch/include/torch/csrc/jit/tensorexpr/half_support.h' 2025-07-24T03:55:18.9462600Z adding 'torch/include/torch/csrc/jit/tensorexpr/hash_provider.h' 2025-07-24T03:55:18.9463140Z adding 'torch/include/torch/csrc/jit/tensorexpr/intrinsic_symbols.h' 2025-07-24T03:55:18.9467500Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir.h' 2025-07-24T03:55:18.9468450Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_cloner.h' 2025-07-24T03:55:18.9469480Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_mutator.h' 2025-07-24T03:55:18.9470740Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_printer.h' 2025-07-24T03:55:18.9474040Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_simplifier.h' 2025-07-24T03:55:18.9474820Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_verifier.h' 2025-07-24T03:55:18.9475860Z adding 'torch/include/torch/csrc/jit/tensorexpr/ir_visitor.h' 2025-07-24T03:55:18.9479120Z adding 'torch/include/torch/csrc/jit/tensorexpr/kernel.h' 2025-07-24T03:55:18.9480230Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_codegen.h' 2025-07-24T03:55:18.9481400Z adding 'torch/include/torch/csrc/jit/tensorexpr/llvm_jit.h' 2025-07-24T03:55:18.9486750Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest.h' 2025-07-24T03:55:18.9487510Z adding 'torch/include/torch/csrc/jit/tensorexpr/loopnest_randomization.h' 2025-07-24T03:55:18.9488390Z adding 'torch/include/torch/csrc/jit/tensorexpr/lowerings.h' 2025-07-24T03:55:18.9491980Z adding 'torch/include/torch/csrc/jit/tensorexpr/mem_dependency_checker.h' 2025-07-24T03:55:18.9494400Z adding 'torch/include/torch/csrc/jit/tensorexpr/reduction.h' 2025-07-24T03:55:18.9497570Z adding 'torch/include/torch/csrc/jit/tensorexpr/registerizer.h' 2025-07-24T03:55:18.9502180Z adding 'torch/include/torch/csrc/jit/tensorexpr/stmt.h' 2025-07-24T03:55:18.9504870Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensor.h' 2025-07-24T03:55:18.9505590Z adding 'torch/include/torch/csrc/jit/tensorexpr/tensorexpr_init.h' 2025-07-24T03:55:18.9507480Z adding 'torch/include/torch/csrc/jit/tensorexpr/types.h' 2025-07-24T03:55:18.9508060Z adding 'torch/include/torch/csrc/jit/tensorexpr/unique_name_manager.h' 2025-07-24T03:55:18.9509250Z adding 'torch/include/torch/csrc/jit/tensorexpr/var_substitutor.h' 2025-07-24T03:55:18.9510840Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/conv2d.h' 2025-07-24T03:55:18.9511590Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/matmul.h' 2025-07-24T03:55:18.9512690Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/misc.h' 2025-07-24T03:55:18.9513650Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/norm.h' 2025-07-24T03:55:18.9514460Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/operators.h' 2025-07-24T03:55:18.9515520Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/pointwise.h' 2025-07-24T03:55:18.9516640Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/quantization.h' 2025-07-24T03:55:18.9517640Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/reduction.h' 2025-07-24T03:55:18.9518470Z adding 'torch/include/torch/csrc/jit/tensorexpr/operators/softmax.h' 2025-07-24T03:55:18.9519600Z adding 'torch/include/torch/csrc/jit/testing/catch_utils.hpp' 2025-07-24T03:55:18.9520720Z adding 'torch/include/torch/csrc/jit/testing/file_check.h' 2025-07-24T03:55:18.9521730Z adding 'torch/include/torch/csrc/jit/testing/hooks_for_testing.h' 2025-07-24T03:55:18.9523720Z adding 'torch/include/torch/csrc/lazy/backend/backend_data.h' 2025-07-24T03:55:18.9524750Z adding 'torch/include/torch/csrc/lazy/backend/backend_device.h' 2025-07-24T03:55:18.9526740Z adding 'torch/include/torch/csrc/lazy/backend/backend_interface.h' 2025-07-24T03:55:18.9527670Z adding 'torch/include/torch/csrc/lazy/backend/lowering_context.h' 2025-07-24T03:55:18.9529710Z adding 'torch/include/torch/csrc/lazy/core/cache.h' 2025-07-24T03:55:18.9530340Z adding 'torch/include/torch/csrc/lazy/core/config.h' 2025-07-24T03:55:18.9531390Z adding 'torch/include/torch/csrc/lazy/core/debug_util.h' 2025-07-24T03:55:18.9532450Z adding 'torch/include/torch/csrc/lazy/core/dynamic_ir.h' 2025-07-24T03:55:18.9534580Z adding 'torch/include/torch/csrc/lazy/core/hash.h' 2025-07-24T03:55:18.9535440Z adding 'torch/include/torch/csrc/lazy/core/helpers.h' 2025-07-24T03:55:18.9537790Z adding 'torch/include/torch/csrc/lazy/core/ir.h' 2025-07-24T03:55:18.9539200Z adding 'torch/include/torch/csrc/lazy/core/ir_builder.h' 2025-07-24T03:55:18.9540100Z adding 'torch/include/torch/csrc/lazy/core/ir_dump_util.h' 2025-07-24T03:55:18.9541070Z adding 'torch/include/torch/csrc/lazy/core/ir_metadata.h' 2025-07-24T03:55:18.9543370Z adding 'torch/include/torch/csrc/lazy/core/ir_util.h' 2025-07-24T03:55:18.9547800Z adding 'torch/include/torch/csrc/lazy/core/lazy_graph_executor.h' 2025-07-24T03:55:18.9549850Z adding 'torch/include/torch/csrc/lazy/core/metrics.h' 2025-07-24T03:55:18.9550680Z adding 'torch/include/torch/csrc/lazy/core/multi_wait.h' 2025-07-24T03:55:18.9551630Z adding 'torch/include/torch/csrc/lazy/core/permutation_util.h' 2025-07-24T03:55:18.9552680Z adding 'torch/include/torch/csrc/lazy/core/shape.h' 2025-07-24T03:55:18.9555090Z adding 'torch/include/torch/csrc/lazy/core/shape_inference.h' 2025-07-24T03:55:18.9557720Z adding 'torch/include/torch/csrc/lazy/core/tensor.h' 2025-07-24T03:55:18.9558600Z adding 'torch/include/torch/csrc/lazy/core/tensor_impl.h' 2025-07-24T03:55:18.9559680Z adding 'torch/include/torch/csrc/lazy/core/tensor_util.h' 2025-07-24T03:55:18.9560650Z adding 'torch/include/torch/csrc/lazy/core/thread_pool.h' 2025-07-24T03:55:18.9561760Z adding 'torch/include/torch/csrc/lazy/core/trie.h' 2025-07-24T03:55:18.9562740Z adding 'torch/include/torch/csrc/lazy/core/unique.h' 2025-07-24T03:55:18.9563950Z adding 'torch/include/torch/csrc/lazy/core/util.h' 2025-07-24T03:55:18.9565300Z adding 'torch/include/torch/csrc/lazy/core/internal_ops/ltc_ops.h' 2025-07-24T03:55:18.9566350Z adding 'torch/include/torch/csrc/lazy/core/ops/arithmetic_ir_ops.h' 2025-07-24T03:55:18.9567230Z adding 'torch/include/torch/csrc/lazy/core/ops/utils.h' 2025-07-24T03:55:18.9590040Z adding 'torch/include/torch/csrc/lazy/generated/LazyIr.h' 2025-07-24T03:55:18.9594500Z adding 'torch/include/torch/csrc/lazy/generated/LazyNativeFunctions.h' 2025-07-24T03:55:18.9595690Z adding 'torch/include/torch/csrc/lazy/generated/LazyNonNativeIr.h' 2025-07-24T03:55:18.9596800Z adding 'torch/include/torch/csrc/lazy/python/init.h' 2025-07-24T03:55:18.9597700Z adding 'torch/include/torch/csrc/lazy/python/python_util.h' 2025-07-24T03:55:18.9598820Z adding 'torch/include/torch/csrc/lazy/ts_backend/config.h' 2025-07-24T03:55:18.9599950Z adding 'torch/include/torch/csrc/lazy/ts_backend/dynamic_ir.h' 2025-07-24T03:55:18.9601070Z adding 'torch/include/torch/csrc/lazy/ts_backend/ir_builder.h' 2025-07-24T03:55:18.9601970Z adding 'torch/include/torch/csrc/lazy/ts_backend/tensor_aten_ops.h' 2025-07-24T03:55:18.9602860Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_autograd_functions.h' 2025-07-24T03:55:18.9603820Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_backend_impl.h' 2025-07-24T03:55:18.9604710Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_eager_fallback.h' 2025-07-24T03:55:18.9606330Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_lowering_context.h' 2025-07-24T03:55:18.9607600Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node.h' 2025-07-24T03:55:18.9608540Z adding 'torch/include/torch/csrc/lazy/ts_backend/ts_node_lowering.h' 2025-07-24T03:55:18.9609860Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/device_data.h' 2025-07-24T03:55:18.9611090Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/generic.h' 2025-07-24T03:55:18.9612460Z adding 'torch/include/torch/csrc/lazy/ts_backend/ops/to_copy.h' 2025-07-24T03:55:18.9614970Z adding 'torch/include/torch/csrc/monitor/counters.h' 2025-07-24T03:55:18.9615890Z adding 'torch/include/torch/csrc/monitor/events.h' 2025-07-24T03:55:18.9616780Z adding 'torch/include/torch/csrc/monitor/python_init.h' 2025-07-24T03:55:18.9617840Z adding 'torch/include/torch/csrc/mps/Module.h' 2025-07-24T03:55:18.9618800Z adding 'torch/include/torch/csrc/mtia/Module.h' 2025-07-24T03:55:18.9619980Z adding 'torch/include/torch/csrc/mtia/profiler/MTIAMemoryProfiler.h' 2025-07-24T03:55:18.9620970Z adding 'torch/include/torch/csrc/multiprocessing/init.h' 2025-07-24T03:55:18.9622100Z adding 'torch/include/torch/csrc/onnx/back_compat.h' 2025-07-24T03:55:18.9622890Z adding 'torch/include/torch/csrc/onnx/init.h' 2025-07-24T03:55:18.9623760Z adding 'torch/include/torch/csrc/onnx/onnx.h' 2025-07-24T03:55:18.9624960Z adding 'torch/include/torch/csrc/profiler/api.h' 2025-07-24T03:55:18.9629560Z adding 'torch/include/torch/csrc/profiler/collection.h' 2025-07-24T03:55:18.9630510Z adding 'torch/include/torch/csrc/profiler/combined_traceback.h' 2025-07-24T03:55:18.9632570Z adding 'torch/include/torch/csrc/profiler/containers.h' 2025-07-24T03:55:18.9633720Z adding 'torch/include/torch/csrc/profiler/data_flow.h' 2025-07-24T03:55:18.9634680Z adding 'torch/include/torch/csrc/profiler/events.h' 2025-07-24T03:55:18.9635560Z adding 'torch/include/torch/csrc/profiler/kineto_client_interface.h' 2025-07-24T03:55:18.9636890Z adding 'torch/include/torch/csrc/profiler/kineto_shim.h' 2025-07-24T03:55:18.9637830Z adding 'torch/include/torch/csrc/profiler/perf-inl.h' 2025-07-24T03:55:18.9639060Z adding 'torch/include/torch/csrc/profiler/perf.h' 2025-07-24T03:55:18.9641090Z adding 'torch/include/torch/csrc/profiler/util.h' 2025-07-24T03:55:18.9643190Z adding 'torch/include/torch/csrc/profiler/orchestration/observer.h' 2025-07-24T03:55:18.9644330Z adding 'torch/include/torch/csrc/profiler/orchestration/python_tracer.h' 2025-07-24T03:55:18.9645200Z adding 'torch/include/torch/csrc/profiler/orchestration/vulkan.h' 2025-07-24T03:55:18.9646370Z adding 'torch/include/torch/csrc/profiler/python/combined_traceback.h' 2025-07-24T03:55:18.9647250Z adding 'torch/include/torch/csrc/profiler/python/init.h' 2025-07-24T03:55:18.9648220Z adding 'torch/include/torch/csrc/profiler/python/pybind.h' 2025-07-24T03:55:18.9649360Z adding 'torch/include/torch/csrc/profiler/standalone/execution_trace_observer.h' 2025-07-24T03:55:18.9650120Z adding 'torch/include/torch/csrc/profiler/standalone/itt_observer.h' 2025-07-24T03:55:18.9650910Z adding 'torch/include/torch/csrc/profiler/standalone/nvtx_observer.h' 2025-07-24T03:55:18.9651900Z adding 'torch/include/torch/csrc/profiler/standalone/privateuse1_observer.h' 2025-07-24T03:55:18.9653000Z adding 'torch/include/torch/csrc/profiler/stubs/base.h' 2025-07-24T03:55:18.9654330Z adding 'torch/include/torch/csrc/profiler/unwind/action.h' 2025-07-24T03:55:18.9655430Z adding 'torch/include/torch/csrc/profiler/unwind/communicate.h' 2025-07-24T03:55:18.9657730Z adding 'torch/include/torch/csrc/profiler/unwind/debug_info.h' 2025-07-24T03:55:18.9658420Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_enums.h' 2025-07-24T03:55:18.9660130Z adding 'torch/include/torch/csrc/profiler/unwind/dwarf_symbolize_enums.h' 2025-07-24T03:55:18.9661120Z adding 'torch/include/torch/csrc/profiler/unwind/eh_frame_hdr.h' 2025-07-24T03:55:18.9662420Z adding 'torch/include/torch/csrc/profiler/unwind/fast_symbolizer.h' 2025-07-24T03:55:18.9665250Z adding 'torch/include/torch/csrc/profiler/unwind/fde.h' 2025-07-24T03:55:18.9666390Z adding 'torch/include/torch/csrc/profiler/unwind/lexer.h' 2025-07-24T03:55:18.9670270Z adding 'torch/include/torch/csrc/profiler/unwind/line_number_program.h' 2025-07-24T03:55:18.9671560Z adding 'torch/include/torch/csrc/profiler/unwind/mem_file.h' 2025-07-24T03:55:18.9672640Z adding 'torch/include/torch/csrc/profiler/unwind/range_table.h' 2025-07-24T03:55:18.9673960Z adding 'torch/include/torch/csrc/profiler/unwind/sections.h' 2025-07-24T03:55:18.9675040Z adding 'torch/include/torch/csrc/profiler/unwind/unwind.h' 2025-07-24T03:55:18.9675900Z adding 'torch/include/torch/csrc/profiler/unwind/unwind_error.h' 2025-07-24T03:55:18.9677030Z adding 'torch/include/torch/csrc/profiler/unwind/unwinder.h' 2025-07-24T03:55:18.9680390Z adding 'torch/include/torch/csrc/stable/library.h' 2025-07-24T03:55:18.9681200Z adding 'torch/include/torch/csrc/stable/ops.h' 2025-07-24T03:55:18.9682560Z adding 'torch/include/torch/csrc/stable/tensor.h' 2025-07-24T03:55:18.9683730Z adding 'torch/include/torch/csrc/tensor/python_tensor.h' 2025-07-24T03:55:18.9685800Z adding 'torch/include/torch/csrc/utils/byte_order.h' 2025-07-24T03:55:18.9686170Z adding 'torch/include/torch/csrc/utils/cpp_stacktraces.h' 2025-07-24T03:55:18.9686930Z adding 'torch/include/torch/csrc/utils/cuda_enabled.h' 2025-07-24T03:55:18.9688060Z adding 'torch/include/torch/csrc/utils/device_lazy_init.h' 2025-07-24T03:55:18.9689130Z adding 'torch/include/torch/csrc/utils/disable_torch_function.h' 2025-07-24T03:55:18.9702790Z adding 'torch/include/torch/csrc/utils/generated_serialization_types.h' 2025-07-24T03:55:18.9703890Z adding 'torch/include/torch/csrc/utils/init.h' 2025-07-24T03:55:18.9704990Z adding 'torch/include/torch/csrc/utils/invalid_arguments.h' 2025-07-24T03:55:18.9705760Z adding 'torch/include/torch/csrc/utils/nested.h' 2025-07-24T03:55:18.9706660Z adding 'torch/include/torch/csrc/utils/numpy_stub.h' 2025-07-24T03:55:18.9707740Z adding 'torch/include/torch/csrc/utils/object_ptr.h' 2025-07-24T03:55:18.9708580Z adding 'torch/include/torch/csrc/utils/out_types.h' 2025-07-24T03:55:18.9711280Z adding 'torch/include/torch/csrc/utils/pybind.h' 2025-07-24T03:55:18.9712550Z adding 'torch/include/torch/csrc/utils/pycfunction_helpers.h' 2025-07-24T03:55:18.9713380Z adding 'torch/include/torch/csrc/utils/pyobject_preservation.h' 2025-07-24T03:55:18.9721270Z adding 'torch/include/torch/csrc/utils/python_arg_parser.h' 2025-07-24T03:55:18.9723380Z adding 'torch/include/torch/csrc/utils/python_compat.h' 2025-07-24T03:55:18.9724010Z adding 'torch/include/torch/csrc/utils/python_dispatch.h' 2025-07-24T03:55:18.9726010Z adding 'torch/include/torch/csrc/utils/python_numbers.h' 2025-07-24T03:55:18.9726860Z adding 'torch/include/torch/csrc/utils/python_raii.h' 2025-07-24T03:55:18.9728800Z adding 'torch/include/torch/csrc/utils/python_scalars.h' 2025-07-24T03:55:18.9729820Z adding 'torch/include/torch/csrc/utils/python_strings.h' 2025-07-24T03:55:18.9730800Z adding 'torch/include/torch/csrc/utils/python_stub.h' 2025-07-24T03:55:18.9732870Z adding 'torch/include/torch/csrc/utils/python_symnode.h' 2025-07-24T03:55:18.9733460Z adding 'torch/include/torch/csrc/utils/python_torch_function_mode.h' 2025-07-24T03:55:18.9734340Z adding 'torch/include/torch/csrc/utils/python_tuples.h' 2025-07-24T03:55:18.9741770Z adding 'torch/include/torch/csrc/utils/pythoncapi_compat.h' 2025-07-24T03:55:18.9743290Z adding 'torch/include/torch/csrc/utils/schema_info.h' 2025-07-24T03:55:18.9744320Z adding 'torch/include/torch/csrc/utils/six.h' 2025-07-24T03:55:18.9745420Z adding 'torch/include/torch/csrc/utils/structseq.h' 2025-07-24T03:55:18.9746300Z adding 'torch/include/torch/csrc/utils/tensor_apply.h' 2025-07-24T03:55:18.9747050Z adding 'torch/include/torch/csrc/utils/tensor_dtypes.h' 2025-07-24T03:55:18.9748280Z adding 'torch/include/torch/csrc/utils/tensor_flatten.h' 2025-07-24T03:55:18.9749210Z adding 'torch/include/torch/csrc/utils/tensor_layouts.h' 2025-07-24T03:55:18.9750000Z adding 'torch/include/torch/csrc/utils/tensor_list.h' 2025-07-24T03:55:18.9750870Z adding 'torch/include/torch/csrc/utils/tensor_memoryformats.h' 2025-07-24T03:55:18.9751990Z adding 'torch/include/torch/csrc/utils/tensor_new.h' 2025-07-24T03:55:18.9753090Z adding 'torch/include/torch/csrc/utils/tensor_numpy.h' 2025-07-24T03:55:18.9753930Z adding 'torch/include/torch/csrc/utils/tensor_qschemes.h' 2025-07-24T03:55:18.9754790Z adding 'torch/include/torch/csrc/utils/tensor_types.h' 2025-07-24T03:55:18.9756950Z adding 'torch/include/torch/csrc/utils/throughput_benchmark-inl.h' 2025-07-24T03:55:18.9759090Z adding 'torch/include/torch/csrc/utils/throughput_benchmark.h' 2025-07-24T03:55:18.9760070Z adding 'torch/include/torch/csrc/utils/torch_dispatch_mode.h' 2025-07-24T03:55:18.9761130Z adding 'torch/include/torch/csrc/utils/variadic.h' 2025-07-24T03:55:18.9761910Z adding 'torch/include/torch/csrc/utils/verbose.h' 2025-07-24T03:55:18.9763290Z adding 'torch/include/torch/csrc/xpu/Event.h' 2025-07-24T03:55:18.9764060Z adding 'torch/include/torch/csrc/xpu/Module.h' 2025-07-24T03:55:18.9764900Z adding 'torch/include/torch/csrc/xpu/Stream.h' 2025-07-24T03:55:18.9767580Z adding 'torch/include/torch/headeronly/macros/Export.h' 2025-07-24T03:55:18.9771710Z adding 'torch/include/torch/headeronly/macros/Macros.h' 2025-07-24T03:55:18.9772430Z adding 'torch/include/torch/headeronly/macros/cmake_macros.h' 2025-07-24T03:55:18.9774330Z adding 'torch/include/torch/headeronly/util/Exception.h' 2025-07-24T03:55:18.9776970Z adding 'torch/jit/__init__.py' 2025-07-24T03:55:18.9778320Z adding 'torch/jit/_async.py' 2025-07-24T03:55:18.9779200Z adding 'torch/jit/_await.py' 2025-07-24T03:55:18.9781370Z adding 'torch/jit/_builtins.py' 2025-07-24T03:55:18.9783630Z adding 'torch/jit/_check.py' 2025-07-24T03:55:18.9785760Z adding 'torch/jit/_dataclass_impls.py' 2025-07-24T03:55:18.9786390Z adding 'torch/jit/_decomposition_utils.py' 2025-07-24T03:55:18.9788290Z adding 'torch/jit/_decompositions.py' 2025-07-24T03:55:18.9790470Z adding 'torch/jit/_freeze.py' 2025-07-24T03:55:18.9792510Z adding 'torch/jit/_fuser.py' 2025-07-24T03:55:18.9793140Z adding 'torch/jit/_ir_utils.py' 2025-07-24T03:55:18.9793970Z adding 'torch/jit/_logging.py' 2025-07-24T03:55:18.9796310Z adding 'torch/jit/_monkeytype_config.py' 2025-07-24T03:55:18.9797100Z adding 'torch/jit/_pickle.py' 2025-07-24T03:55:18.9806790Z adding 'torch/jit/_recursive.py' 2025-07-24T03:55:18.9821500Z adding 'torch/jit/_script.py' 2025-07-24T03:55:18.9824120Z adding 'torch/jit/_script.pyi' 2025-07-24T03:55:18.9826450Z adding 'torch/jit/_serialization.py' 2025-07-24T03:55:18.9835480Z adding 'torch/jit/_shape_functions.py' 2025-07-24T03:55:18.9837200Z adding 'torch/jit/_state.py' 2025-07-24T03:55:18.9848730Z adding 'torch/jit/_trace.py' 2025-07-24T03:55:18.9853190Z adding 'torch/jit/annotations.py' 2025-07-24T03:55:18.9862580Z adding 'torch/jit/frontend.py' 2025-07-24T03:55:18.9863740Z adding 'torch/jit/generate_bytecode.py' 2025-07-24T03:55:18.9864760Z adding 'torch/jit/quantized.py' 2025-07-24T03:55:18.9867460Z adding 'torch/jit/supported_ops.py' 2025-07-24T03:55:18.9868560Z adding 'torch/jit/unsupported_tensor_ops.py' 2025-07-24T03:55:18.9869600Z adding 'torch/jit/_passes/__init__.py' 2025-07-24T03:55:18.9870670Z adding 'torch/jit/_passes/_property_propagation.py' 2025-07-24T03:55:18.9872920Z adding 'torch/jit/mobile/__init__.py' 2025-07-24T03:55:19.0137490Z adding 'torch/lib/libc10.dylib' 2025-07-24T03:55:19.0351950Z adding 'torch/lib/libomp.dylib' 2025-07-24T03:55:19.0364600Z adding 'torch/lib/libshm.dylib' 2025-07-24T03:55:19.0367040Z adding 'torch/lib/libtorch.dylib' 2025-07-24T03:55:22.5891730Z adding 'torch/lib/libtorch_cpu.dylib' 2025-07-24T03:55:22.6680880Z adding 'torch/lib/libtorch_global_deps.dylib' 2025-07-24T03:55:23.1896900Z adding 'torch/lib/libtorch_python.dylib' 2025-07-24T03:55:23.2000760Z adding 'torch/lib/libshm/alloc_info.h' 2025-07-24T03:55:23.2003480Z adding 'torch/lib/libshm/err.h' 2025-07-24T03:55:23.2004340Z adding 'torch/lib/libshm/libshm.h' 2025-07-24T03:55:23.2006300Z adding 'torch/lib/libshm/socket.h' 2025-07-24T03:55:23.2007220Z adding 'torch/lib/libshm_windows/libshm.h' 2025-07-24T03:55:23.2028590Z adding 'torch/linalg/__init__.py' 2025-07-24T03:55:23.2030980Z adding 'torch/masked/__init__.py' 2025-07-24T03:55:23.2034960Z adding 'torch/masked/_docs.py' 2025-07-24T03:55:23.2047880Z adding 'torch/masked/_ops.py' 2025-07-24T03:55:23.2049270Z adding 'torch/masked/maskedtensor/__init__.py' 2025-07-24T03:55:23.2052960Z adding 'torch/masked/maskedtensor/_ops_refs.py' 2025-07-24T03:55:23.2054530Z adding 'torch/masked/maskedtensor/binary.py' 2025-07-24T03:55:23.2057820Z adding 'torch/masked/maskedtensor/core.py' 2025-07-24T03:55:23.2058570Z adding 'torch/masked/maskedtensor/creation.py' 2025-07-24T03:55:23.2060080Z adding 'torch/masked/maskedtensor/passthrough.py' 2025-07-24T03:55:23.2061840Z adding 'torch/masked/maskedtensor/reductions.py' 2025-07-24T03:55:23.2063270Z adding 'torch/masked/maskedtensor/unary.py' 2025-07-24T03:55:23.2064860Z adding 'torch/monitor/__init__.py' 2025-07-24T03:55:23.2067410Z adding 'torch/mps/__init__.py' 2025-07-24T03:55:23.2068220Z adding 'torch/mps/event.py' 2025-07-24T03:55:23.2069500Z adding 'torch/mps/profiler.py' 2025-07-24T03:55:23.2072920Z adding 'torch/mtia/__init__.py' 2025-07-24T03:55:23.2074180Z adding 'torch/mtia/_utils.py' 2025-07-24T03:55:23.2075300Z adding 'torch/mtia/memory.py' 2025-07-24T03:55:23.2077250Z adding 'torch/multiprocessing/__init__.py' 2025-07-24T03:55:23.2077900Z adding 'torch/multiprocessing/_atfork.py' 2025-07-24T03:55:23.2079420Z adding 'torch/multiprocessing/pool.py' 2025-07-24T03:55:23.2080480Z adding 'torch/multiprocessing/queue.py' 2025-07-24T03:55:23.2085650Z adding 'torch/multiprocessing/reductions.py' 2025-07-24T03:55:23.2089060Z adding 'torch/multiprocessing/spawn.py' 2025-07-24T03:55:23.2094110Z adding 'torch/nested/__init__.py' 2025-07-24T03:55:23.2095090Z adding 'torch/nested/_internal/__init__.py' 2025-07-24T03:55:23.2096450Z adding 'torch/nested/_internal/nested_int.py' 2025-07-24T03:55:23.2101870Z adding 'torch/nested/_internal/nested_tensor.py' 2025-07-24T03:55:23.2119490Z adding 'torch/nested/_internal/ops.py' 2025-07-24T03:55:23.2127130Z adding 'torch/nested/_internal/sdpa.py' 2025-07-24T03:55:23.2128940Z adding 'torch/nn/__init__.py' 2025-07-24T03:55:23.2130380Z adding 'torch/nn/_reduction.py' 2025-07-24T03:55:23.2131500Z adding 'torch/nn/common_types.py' 2025-07-24T03:55:23.2132760Z adding 'torch/nn/cpp.py' 2025-07-24T03:55:23.2176280Z adding 'torch/nn/functional.py' 2025-07-24T03:55:23.2181330Z adding 'torch/nn/functional.pyi' 2025-07-24T03:55:23.2182750Z adding 'torch/nn/grad.py' 2025-07-24T03:55:23.2187650Z adding 'torch/nn/init.py' 2025-07-24T03:55:23.2190660Z adding 'torch/nn/parameter.py' 2025-07-24T03:55:23.2191460Z adding 'torch/nn/parameter.pyi' 2025-07-24T03:55:23.2194030Z adding 'torch/nn/attention/__init__.py' 2025-07-24T03:55:23.2194900Z adding 'torch/nn/attention/_utils.py' 2025-07-24T03:55:23.2198280Z adding 'torch/nn/attention/bias.py' 2025-07-24T03:55:23.2212520Z adding 'torch/nn/attention/flex_attention.py' 2025-07-24T03:55:23.2213780Z adding 'torch/nn/attention/experimental/__init__.py' 2025-07-24T03:55:23.2216920Z adding 'torch/nn/attention/experimental/_paged_attention.py' 2025-07-24T03:55:23.2217600Z adding 'torch/nn/backends/__init__.py' 2025-07-24T03:55:23.2218400Z adding 'torch/nn/backends/thnn.py' 2025-07-24T03:55:23.2219580Z adding 'torch/nn/intrinsic/__init__.py' 2025-07-24T03:55:23.2221600Z adding 'torch/nn/intrinsic/modules/__init__.py' 2025-07-24T03:55:23.2222030Z adding 'torch/nn/intrinsic/modules/fused.py' 2025-07-24T03:55:23.2222960Z adding 'torch/nn/intrinsic/qat/__init__.py' 2025-07-24T03:55:23.2224110Z adding 'torch/nn/intrinsic/qat/modules/__init__.py' 2025-07-24T03:55:23.2225460Z adding 'torch/nn/intrinsic/qat/modules/conv_fused.py' 2025-07-24T03:55:23.2226360Z adding 'torch/nn/intrinsic/qat/modules/linear_fused.py' 2025-07-24T03:55:23.2227150Z adding 'torch/nn/intrinsic/qat/modules/linear_relu.py' 2025-07-24T03:55:23.2228210Z adding 'torch/nn/intrinsic/quantized/__init__.py' 2025-07-24T03:55:23.2229660Z adding 'torch/nn/intrinsic/quantized/dynamic/__init__.py' 2025-07-24T03:55:23.2230720Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/__init__.py' 2025-07-24T03:55:23.2231520Z adding 'torch/nn/intrinsic/quantized/dynamic/modules/linear_relu.py' 2025-07-24T03:55:23.2232520Z adding 'torch/nn/intrinsic/quantized/modules/__init__.py' 2025-07-24T03:55:23.2233660Z adding 'torch/nn/intrinsic/quantized/modules/bn_relu.py' 2025-07-24T03:55:23.2234450Z adding 'torch/nn/intrinsic/quantized/modules/conv_relu.py' 2025-07-24T03:55:23.2235200Z adding 'torch/nn/intrinsic/quantized/modules/linear_relu.py' 2025-07-24T03:55:23.2237680Z adding 'torch/nn/modules/__init__.py' 2025-07-24T03:55:23.2240720Z adding 'torch/nn/modules/_functions.py' 2025-07-24T03:55:23.2250550Z adding 'torch/nn/modules/activation.py' 2025-07-24T03:55:23.2253680Z adding 'torch/nn/modules/adaptive.py' 2025-07-24T03:55:23.2259310Z adding 'torch/nn/modules/batchnorm.py' 2025-07-24T03:55:23.2260610Z adding 'torch/nn/modules/channelshuffle.py' 2025-07-24T03:55:23.2267580Z adding 'torch/nn/modules/container.py' 2025-07-24T03:55:23.2277850Z adding 'torch/nn/modules/conv.py' 2025-07-24T03:55:23.2279230Z adding 'torch/nn/modules/distance.py' 2025-07-24T03:55:23.2281920Z adding 'torch/nn/modules/dropout.py' 2025-07-24T03:55:23.2283290Z adding 'torch/nn/modules/flatten.py' 2025-07-24T03:55:23.2286120Z adding 'torch/nn/modules/fold.py' 2025-07-24T03:55:23.2288940Z adding 'torch/nn/modules/instancenorm.py' 2025-07-24T03:55:23.2292080Z adding 'torch/nn/modules/lazy.py' 2025-07-24T03:55:23.2294490Z adding 'torch/nn/modules/linear.py' 2025-07-24T03:55:23.2309970Z adding 'torch/nn/modules/loss.py' 2025-07-24T03:55:23.2334970Z adding 'torch/nn/modules/module.py' 2025-07-24T03:55:23.2338870Z adding 'torch/nn/modules/normalization.py' 2025-07-24T03:55:23.2342020Z adding 'torch/nn/modules/padding.py' 2025-07-24T03:55:23.2343170Z adding 'torch/nn/modules/pixelshuffle.py' 2025-07-24T03:55:23.2350670Z adding 'torch/nn/modules/pooling.py' 2025-07-24T03:55:23.2362370Z adding 'torch/nn/modules/rnn.py' 2025-07-24T03:55:23.2366720Z adding 'torch/nn/modules/sparse.py' 2025-07-24T03:55:23.2374820Z adding 'torch/nn/modules/transformer.py' 2025-07-24T03:55:23.2377850Z adding 'torch/nn/modules/upsampling.py' 2025-07-24T03:55:23.2378880Z adding 'torch/nn/modules/utils.py' 2025-07-24T03:55:23.2380110Z adding 'torch/nn/parallel/__init__.py' 2025-07-24T03:55:23.2382090Z adding 'torch/nn/parallel/_functions.py' 2025-07-24T03:55:23.2384800Z adding 'torch/nn/parallel/comm.py' 2025-07-24T03:55:23.2387700Z adding 'torch/nn/parallel/data_parallel.py' 2025-07-24T03:55:23.2413110Z adding 'torch/nn/parallel/distributed.py' 2025-07-24T03:55:23.2415210Z adding 'torch/nn/parallel/parallel_apply.py' 2025-07-24T03:55:23.2417500Z adding 'torch/nn/parallel/replicate.py' 2025-07-24T03:55:23.2418860Z adding 'torch/nn/parallel/scatter_gather.py' 2025-07-24T03:55:23.2420030Z adding 'torch/nn/qat/__init__.py' 2025-07-24T03:55:23.2421180Z adding 'torch/nn/qat/dynamic/__init__.py' 2025-07-24T03:55:23.2422730Z adding 'torch/nn/qat/dynamic/modules/__init__.py' 2025-07-24T03:55:23.2423600Z adding 'torch/nn/qat/dynamic/modules/linear.py' 2025-07-24T03:55:23.2424680Z adding 'torch/nn/qat/modules/__init__.py' 2025-07-24T03:55:23.2425510Z adding 'torch/nn/qat/modules/conv.py' 2025-07-24T03:55:23.2426790Z adding 'torch/nn/qat/modules/embedding_ops.py' 2025-07-24T03:55:23.2427610Z adding 'torch/nn/qat/modules/linear.py' 2025-07-24T03:55:23.2428560Z adding 'torch/nn/quantizable/__init__.py' 2025-07-24T03:55:23.2429650Z adding 'torch/nn/quantizable/modules/__init__.py' 2025-07-24T03:55:23.2430900Z adding 'torch/nn/quantizable/modules/activation.py' 2025-07-24T03:55:23.2431730Z adding 'torch/nn/quantizable/modules/rnn.py' 2025-07-24T03:55:23.2432920Z adding 'torch/nn/quantized/__init__.py' 2025-07-24T03:55:23.2433760Z adding 'torch/nn/quantized/functional.py' 2025-07-24T03:55:23.2435250Z adding 'torch/nn/quantized/_reference/__init__.py' 2025-07-24T03:55:23.2436530Z adding 'torch/nn/quantized/_reference/modules/__init__.py' 2025-07-24T03:55:23.2437410Z adding 'torch/nn/quantized/_reference/modules/conv.py' 2025-07-24T03:55:23.2438260Z adding 'torch/nn/quantized/_reference/modules/linear.py' 2025-07-24T03:55:23.2439540Z adding 'torch/nn/quantized/_reference/modules/rnn.py' 2025-07-24T03:55:23.2440390Z adding 'torch/nn/quantized/_reference/modules/sparse.py' 2025-07-24T03:55:23.2441230Z adding 'torch/nn/quantized/_reference/modules/utils.py' 2025-07-24T03:55:23.2442180Z adding 'torch/nn/quantized/dynamic/__init__.py' 2025-07-24T03:55:23.2444210Z adding 'torch/nn/quantized/dynamic/modules/__init__.py' 2025-07-24T03:55:23.2444680Z adding 'torch/nn/quantized/dynamic/modules/conv.py' 2025-07-24T03:55:23.2445550Z adding 'torch/nn/quantized/dynamic/modules/linear.py' 2025-07-24T03:55:23.2446380Z adding 'torch/nn/quantized/dynamic/modules/rnn.py' 2025-07-24T03:55:23.2448790Z adding 'torch/nn/quantized/modules/__init__.py' 2025-07-24T03:55:23.2449620Z adding 'torch/nn/quantized/modules/activation.py' 2025-07-24T03:55:23.2450350Z adding 'torch/nn/quantized/modules/batchnorm.py' 2025-07-24T03:55:23.2451200Z adding 'torch/nn/quantized/modules/conv.py' 2025-07-24T03:55:23.2452400Z adding 'torch/nn/quantized/modules/dropout.py' 2025-07-24T03:55:23.2453280Z adding 'torch/nn/quantized/modules/embedding_ops.py' 2025-07-24T03:55:23.2454140Z adding 'torch/nn/quantized/modules/functional_modules.py' 2025-07-24T03:55:23.2454930Z adding 'torch/nn/quantized/modules/linear.py' 2025-07-24T03:55:23.2456150Z adding 'torch/nn/quantized/modules/normalization.py' 2025-07-24T03:55:23.2456990Z adding 'torch/nn/quantized/modules/rnn.py' 2025-07-24T03:55:23.2457800Z adding 'torch/nn/quantized/modules/utils.py' 2025-07-24T03:55:23.2459050Z adding 'torch/nn/utils/__init__.py' 2025-07-24T03:55:23.2460610Z adding 'torch/nn/utils/_deprecation_utils.py' 2025-07-24T03:55:23.2463560Z adding 'torch/nn/utils/_named_member_accessor.py' 2025-07-24T03:55:23.2465060Z adding 'torch/nn/utils/_per_sample_grad.py' 2025-07-24T03:55:23.2467750Z adding 'torch/nn/utils/clip_grad.py' 2025-07-24T03:55:23.2469210Z adding 'torch/nn/utils/convert_parameters.py' 2025-07-24T03:55:23.2471190Z adding 'torch/nn/utils/fusion.py' 2025-07-24T03:55:23.2472080Z adding 'torch/nn/utils/init.py' 2025-07-24T03:55:23.2474190Z adding 'torch/nn/utils/memory_format.py' 2025-07-24T03:55:23.2480230Z adding 'torch/nn/utils/parametrizations.py' 2025-07-24T03:55:23.2488010Z adding 'torch/nn/utils/parametrize.py' 2025-07-24T03:55:23.2498530Z adding 'torch/nn/utils/prune.py' 2025-07-24T03:55:23.2503910Z adding 'torch/nn/utils/rnn.py' 2025-07-24T03:55:23.2507410Z adding 'torch/nn/utils/spectral_norm.py' 2025-07-24T03:55:23.2510180Z adding 'torch/nn/utils/stateless.py' 2025-07-24T03:55:23.2512420Z adding 'torch/nn/utils/weight_norm.py' 2025-07-24T03:55:23.2513470Z adding 'torch/nn/utils/_expanded_weights/__init__.py' 2025-07-24T03:55:23.2514780Z adding 'torch/nn/utils/_expanded_weights/conv_expanded_weights.py' 2025-07-24T03:55:23.2517710Z adding 'torch/nn/utils/_expanded_weights/conv_utils.py' 2025-07-24T03:55:23.2519090Z adding 'torch/nn/utils/_expanded_weights/embedding_expanded_weights.py' 2025-07-24T03:55:23.2521190Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_impl.py' 2025-07-24T03:55:23.2523300Z adding 'torch/nn/utils/_expanded_weights/expanded_weights_utils.py' 2025-07-24T03:55:23.2524240Z adding 'torch/nn/utils/_expanded_weights/group_norm_expanded_weights.py' 2025-07-24T03:55:23.2526380Z adding 'torch/nn/utils/_expanded_weights/instance_norm_expanded_weights.py' 2025-07-24T03:55:23.2527230Z adding 'torch/nn/utils/_expanded_weights/layer_norm_expanded_weights.py' 2025-07-24T03:55:23.2528400Z adding 'torch/nn/utils/_expanded_weights/linear_expanded_weights.py' 2025-07-24T03:55:23.2532800Z adding 'torch/onnx/__init__.py' 2025-07-24T03:55:23.2533890Z adding 'torch/onnx/_constants.py' 2025-07-24T03:55:23.2534880Z adding 'torch/onnx/_experimental.py' 2025-07-24T03:55:23.2535860Z adding 'torch/onnx/_flags.py' 2025-07-24T03:55:23.2537020Z adding 'torch/onnx/_globals.py' 2025-07-24T03:55:23.2538970Z adding 'torch/onnx/_onnx_supported_ops.py' 2025-07-24T03:55:23.2541730Z adding 'torch/onnx/_type_utils.py' 2025-07-24T03:55:23.2542710Z adding 'torch/onnx/errors.py' 2025-07-24T03:55:23.2543710Z adding 'torch/onnx/operators.py' 2025-07-24T03:55:23.2561070Z adding 'torch/onnx/symbolic_helper.py' 2025-07-24T03:55:23.2567740Z adding 'torch/onnx/symbolic_opset10.py' 2025-07-24T03:55:23.2577620Z adding 'torch/onnx/symbolic_opset11.py' 2025-07-24T03:55:23.2581200Z adding 'torch/onnx/symbolic_opset12.py' 2025-07-24T03:55:23.2588280Z adding 'torch/onnx/symbolic_opset13.py' 2025-07-24T03:55:23.2590780Z adding 'torch/onnx/symbolic_opset14.py' 2025-07-24T03:55:23.2591760Z adding 'torch/onnx/symbolic_opset15.py' 2025-07-24T03:55:23.2594310Z adding 'torch/onnx/symbolic_opset16.py' 2025-07-24T03:55:23.2596580Z adding 'torch/onnx/symbolic_opset17.py' 2025-07-24T03:55:23.2598360Z adding 'torch/onnx/symbolic_opset18.py' 2025-07-24T03:55:23.2599220Z adding 'torch/onnx/symbolic_opset19.py' 2025-07-24T03:55:23.2600720Z adding 'torch/onnx/symbolic_opset20.py' 2025-07-24T03:55:23.2601800Z adding 'torch/onnx/symbolic_opset7.py' 2025-07-24T03:55:23.2605010Z adding 'torch/onnx/symbolic_opset8.py' 2025-07-24T03:55:23.2648080Z adding 'torch/onnx/symbolic_opset9.py' 2025-07-24T03:55:23.2666970Z adding 'torch/onnx/utils.py' 2025-07-24T03:55:23.2682390Z adding 'torch/onnx/verification.py' 2025-07-24T03:55:23.2684490Z adding 'torch/onnx/_internal/__init__.py' 2025-07-24T03:55:23.2685920Z adding 'torch/onnx/_internal/_exporter_legacy.py' 2025-07-24T03:55:23.2686980Z adding 'torch/onnx/_internal/_lazy_import.py' 2025-07-24T03:55:23.2690750Z adding 'torch/onnx/_internal/jit_utils.py' 2025-07-24T03:55:23.2693210Z adding 'torch/onnx/_internal/onnx_proto_utils.py' 2025-07-24T03:55:23.2695880Z adding 'torch/onnx/_internal/registration.py' 2025-07-24T03:55:23.2696840Z adding 'torch/onnx/_internal/exporter/__init__.py' 2025-07-24T03:55:23.2699880Z adding 'torch/onnx/_internal/exporter/_analysis.py' 2025-07-24T03:55:23.2706190Z adding 'torch/onnx/_internal/exporter/_building.py' 2025-07-24T03:55:23.2708410Z adding 'torch/onnx/_internal/exporter/_capture_strategies.py' 2025-07-24T03:55:23.2710490Z adding 'torch/onnx/_internal/exporter/_compat.py' 2025-07-24T03:55:23.2711410Z adding 'torch/onnx/_internal/exporter/_constants.py' 2025-07-24T03:55:23.2726430Z adding 'torch/onnx/_internal/exporter/_core.py' 2025-07-24T03:55:23.2727770Z adding 'torch/onnx/_internal/exporter/_decomp.py' 2025-07-24T03:55:23.2731630Z adding 'torch/onnx/_internal/exporter/_dispatching.py' 2025-07-24T03:55:23.2734770Z adding 'torch/onnx/_internal/exporter/_dynamic_shapes.py' 2025-07-24T03:55:23.2735470Z adding 'torch/onnx/_internal/exporter/_errors.py' 2025-07-24T03:55:23.2736380Z adding 'torch/onnx/_internal/exporter/_flags.py' 2025-07-24T03:55:23.2737920Z adding 'torch/onnx/_internal/exporter/_fx_passes.py' 2025-07-24T03:55:23.2740150Z adding 'torch/onnx/_internal/exporter/_ir_passes.py' 2025-07-24T03:55:23.2740820Z adding 'torch/onnx/_internal/exporter/_isolated.py' 2025-07-24T03:55:23.2744890Z adding 'torch/onnx/_internal/exporter/_onnx_program.py' 2025-07-24T03:55:23.2748070Z adding 'torch/onnx/_internal/exporter/_registration.py' 2025-07-24T03:55:23.2749670Z adding 'torch/onnx/_internal/exporter/_reporting.py' 2025-07-24T03:55:23.2754430Z adding 'torch/onnx/_internal/exporter/_schemas.py' 2025-07-24T03:55:23.2755290Z adding 'torch/onnx/_internal/exporter/_tensors.py' 2025-07-24T03:55:23.2757330Z adding 'torch/onnx/_internal/exporter/_testing.py' 2025-07-24T03:55:23.2758080Z adding 'torch/onnx/_internal/exporter/_type_casting.py' 2025-07-24T03:55:23.2761250Z adding 'torch/onnx/_internal/exporter/_verification.py' 2025-07-24T03:55:23.2762080Z adding 'torch/onnx/_internal/exporter/_torchlib/__init__.py' 2025-07-24T03:55:23.2763610Z adding 'torch/onnx/_internal/exporter/_torchlib/_tensor_typing.py' 2025-07-24T03:55:23.2764900Z adding 'torch/onnx/_internal/exporter/_torchlib/_torchlib_registry.py' 2025-07-24T03:55:23.2765980Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/__init__.py' 2025-07-24T03:55:23.2766990Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/core.py' 2025-07-24T03:55:23.2769300Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/hop.py' 2025-07-24T03:55:23.2771760Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/nn.py' 2025-07-24T03:55:23.2773140Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symbolic.py' 2025-07-24T03:55:23.2774070Z adding 'torch/onnx/_internal/exporter/_torchlib/ops/symops.py' 2025-07-24T03:55:23.2775640Z adding 'torch/onnx/_internal/fx/__init__.py' 2025-07-24T03:55:23.2778230Z adding 'torch/onnx/_internal/fx/_pass.py' 2025-07-24T03:55:23.2779640Z adding 'torch/onnx/_internal/fx/patcher.py' 2025-07-24T03:55:23.2782860Z adding 'torch/onnx/_internal/fx/serialization.py' 2025-07-24T03:55:23.2784970Z adding 'torch/onnx/_internal/fx/type_utils.py' 2025-07-24T03:55:23.2785770Z adding 'torch/onnx/_internal/fx/passes/__init__.py' 2025-07-24T03:55:23.2787400Z adding 'torch/onnx/_internal/fx/passes/_utils.py' 2025-07-24T03:55:23.2796700Z adding 'torch/onnx/_internal/fx/passes/type_promotion.py' 2025-07-24T03:55:23.2801640Z adding 'torch/onnx/ops/__init__.py' 2025-07-24T03:55:23.2802460Z adding 'torch/onnx/ops/_dtype_mappings.py' 2025-07-24T03:55:23.2805770Z adding 'torch/onnx/ops/_impl.py' 2025-07-24T03:55:23.2808380Z adding 'torch/onnx/ops/_symbolic_impl.py' 2025-07-24T03:55:23.2809650Z adding 'torch/optim/__init__.py' 2025-07-24T03:55:23.2815180Z adding 'torch/optim/_adafactor.py' 2025-07-24T03:55:23.2816290Z adding 'torch/optim/_functional.py' 2025-07-24T03:55:23.2820290Z adding 'torch/optim/adadelta.py' 2025-07-24T03:55:23.2824510Z adding 'torch/optim/adagrad.py' 2025-07-24T03:55:23.2831710Z adding 'torch/optim/adam.py' 2025-07-24T03:55:23.2835290Z adding 'torch/optim/adamax.py' 2025-07-24T03:55:23.2837190Z adding 'torch/optim/adamw.py' 2025-07-24T03:55:23.2840800Z adding 'torch/optim/asgd.py' 2025-07-24T03:55:23.2844760Z adding 'torch/optim/lbfgs.py' 2025-07-24T03:55:23.2859130Z adding 'torch/optim/lr_scheduler.py' 2025-07-24T03:55:23.2868750Z adding 'torch/optim/nadam.py' 2025-07-24T03:55:23.2874730Z adding 'torch/optim/optimizer.py' 2025-07-24T03:55:23.2879860Z adding 'torch/optim/radam.py' 2025-07-24T03:55:23.2883850Z adding 'torch/optim/rmsprop.py' 2025-07-24T03:55:23.2887490Z adding 'torch/optim/rprop.py' 2025-07-24T03:55:23.2891390Z adding 'torch/optim/sgd.py' 2025-07-24T03:55:23.2894080Z adding 'torch/optim/sparse_adam.py' 2025-07-24T03:55:23.2898140Z adding 'torch/optim/swa_utils.py' 2025-07-24T03:55:23.2899190Z adding 'torch/optim/_multi_tensor/__init__.py' 2025-07-24T03:55:23.2900010Z adding 'torch/optim/_multi_tensor/__init__.pyi' 2025-07-24T03:55:23.2902010Z adding 'torch/package/__init__.py' 2025-07-24T03:55:23.2903300Z adding 'torch/package/_digraph.py' 2025-07-24T03:55:23.2904420Z adding 'torch/package/_directory_reader.py' 2025-07-24T03:55:23.2905780Z adding 'torch/package/_importlib.py' 2025-07-24T03:55:23.2907230Z adding 'torch/package/_mangling.py' 2025-07-24T03:55:23.2908490Z adding 'torch/package/_mock.py' 2025-07-24T03:55:23.2910450Z adding 'torch/package/_package_pickler.py' 2025-07-24T03:55:23.2911120Z adding 'torch/package/_package_unpickler.py' 2025-07-24T03:55:23.2913220Z adding 'torch/package/_stdlib.py' 2025-07-24T03:55:23.2914590Z adding 'torch/package/file_structure_representation.py' 2025-07-24T03:55:23.2915930Z adding 'torch/package/find_file_dependencies.py' 2025-07-24T03:55:23.2917240Z adding 'torch/package/glob_group.py' 2025-07-24T03:55:23.2920220Z adding 'torch/package/importer.py' 2025-07-24T03:55:23.2930670Z adding 'torch/package/package_exporter.py' 2025-07-24T03:55:23.2938080Z adding 'torch/package/package_importer.py' 2025-07-24T03:55:23.2939480Z adding 'torch/package/analyze/__init__.py' 2025-07-24T03:55:23.2940590Z adding 'torch/package/analyze/find_first_use_of_broken_modules.py' 2025-07-24T03:55:23.2941410Z adding 'torch/package/analyze/is_from_package.py' 2025-07-24T03:55:23.2942590Z adding 'torch/package/analyze/trace_dependencies.py' 2025-07-24T03:55:23.2944650Z adding 'torch/profiler/__init__.py' 2025-07-24T03:55:23.2954840Z adding 'torch/profiler/_memory_profiler.py' 2025-07-24T03:55:23.2959640Z adding 'torch/profiler/_pattern_matcher.py' 2025-07-24T03:55:23.2963320Z adding 'torch/profiler/_utils.py' 2025-07-24T03:55:23.2964270Z adding 'torch/profiler/itt.py' 2025-07-24T03:55:23.2973420Z adding 'torch/profiler/profiler.py' 2025-07-24T03:55:23.2974320Z adding 'torch/profiler/python_tracer.py' 2025-07-24T03:55:23.2976300Z adding 'torch/quantization/__init__.py' 2025-07-24T03:55:23.2977380Z adding 'torch/quantization/_numeric_suite.py' 2025-07-24T03:55:23.2978300Z adding 'torch/quantization/_numeric_suite_fx.py' 2025-07-24T03:55:23.2979800Z adding 'torch/quantization/_quantized_conversions.py' 2025-07-24T03:55:23.2980690Z adding 'torch/quantization/fake_quantize.py' 2025-07-24T03:55:23.2981940Z adding 'torch/quantization/fuse_modules.py' 2025-07-24T03:55:23.2982840Z adding 'torch/quantization/fuser_method_mappings.py' 2025-07-24T03:55:23.2983770Z adding 'torch/quantization/observer.py' 2025-07-24T03:55:23.2984580Z adding 'torch/quantization/qconfig.py' 2025-07-24T03:55:23.2985760Z adding 'torch/quantization/quant_type.py' 2025-07-24T03:55:23.2986710Z adding 'torch/quantization/quantization_mappings.py' 2025-07-24T03:55:23.2987550Z adding 'torch/quantization/quantize.py' 2025-07-24T03:55:23.2988390Z adding 'torch/quantization/quantize_fx.py' 2025-07-24T03:55:23.2989580Z adding 'torch/quantization/quantize_jit.py' 2025-07-24T03:55:23.2990400Z adding 'torch/quantization/stubs.py' 2025-07-24T03:55:23.2991260Z adding 'torch/quantization/utils.py' 2025-07-24T03:55:23.2992450Z adding 'torch/quantization/fx/__init__.py' 2025-07-24T03:55:23.2993810Z adding 'torch/quantization/fx/_equalize.py' 2025-07-24T03:55:23.2994650Z adding 'torch/quantization/fx/convert.py' 2025-07-24T03:55:23.2995490Z adding 'torch/quantization/fx/fuse.py' 2025-07-24T03:55:23.2996320Z adding 'torch/quantization/fx/fusion_patterns.py' 2025-07-24T03:55:23.2997540Z adding 'torch/quantization/fx/graph_module.py' 2025-07-24T03:55:23.2998380Z adding 'torch/quantization/fx/match_utils.py' 2025-07-24T03:55:23.2999270Z adding 'torch/quantization/fx/pattern_utils.py' 2025-07-24T03:55:23.3000050Z adding 'torch/quantization/fx/prepare.py' 2025-07-24T03:55:23.3001480Z adding 'torch/quantization/fx/quantization_patterns.py' 2025-07-24T03:55:23.3002260Z adding 'torch/quantization/fx/quantization_types.py' 2025-07-24T03:55:23.3003040Z adding 'torch/quantization/fx/utils.py' 2025-07-24T03:55:23.3005020Z adding 'torch/share/cmake/ATen/ATenConfig.cmake' 2025-07-24T03:55:23.3007130Z adding 'torch/share/cmake/Caffe2/Caffe2Config.cmake' 2025-07-24T03:55:23.3007890Z adding 'torch/share/cmake/Caffe2/Caffe2Targets-release.cmake' 2025-07-24T03:55:23.3009440Z adding 'torch/share/cmake/Caffe2/Caffe2Targets.cmake' 2025-07-24T03:55:23.3017040Z adding 'torch/share/cmake/Caffe2/FindCUDAToolkit.cmake' 2025-07-24T03:55:23.3019140Z adding 'torch/share/cmake/Caffe2/FindCUDSS.cmake' 2025-07-24T03:55:23.3019950Z adding 'torch/share/cmake/Caffe2/FindCUSPARSELT.cmake' 2025-07-24T03:55:23.3021560Z adding 'torch/share/cmake/Caffe2/FindSYCLToolkit.cmake' 2025-07-24T03:55:23.3023370Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDA.cmake' 2025-07-24T03:55:23.3024460Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/FindCUDNN.cmake' 2025-07-24T03:55:23.3025930Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/CMakeInitializeConfigs.cmake' 2025-07-24T03:55:23.3044880Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA.cmake' 2025-07-24T03:55:23.3049150Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageHandleStandardArgs.cmake' 2025-07-24T03:55:23.3050100Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindPackageMessage.cmake' 2025-07-24T03:55:23.3052290Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/make2cmake.cmake' 2025-07-24T03:55:23.3053810Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/parse_cubin.cmake' 2025-07-24T03:55:23.3056750Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/run_nvcc.cmake' 2025-07-24T03:55:23.3059260Z adding 'torch/share/cmake/Caffe2/Modules_CUDA_fix/upstream/FindCUDA/select_compute_arch.cmake' 2025-07-24T03:55:23.3061760Z adding 'torch/share/cmake/Caffe2/public/LoadHIP.cmake' 2025-07-24T03:55:23.3065030Z adding 'torch/share/cmake/Caffe2/public/cuda.cmake' 2025-07-24T03:55:23.3066030Z adding 'torch/share/cmake/Caffe2/public/gflags.cmake' 2025-07-24T03:55:23.3067230Z adding 'torch/share/cmake/Caffe2/public/glog.cmake' 2025-07-24T03:55:23.3068280Z adding 'torch/share/cmake/Caffe2/public/mkl.cmake' 2025-07-24T03:55:23.3069590Z adding 'torch/share/cmake/Caffe2/public/mkldnn.cmake' 2025-07-24T03:55:23.3070940Z adding 'torch/share/cmake/Caffe2/public/protobuf.cmake' 2025-07-24T03:55:23.3075560Z adding 'torch/share/cmake/Caffe2/public/utils.cmake' 2025-07-24T03:55:23.3076380Z adding 'torch/share/cmake/Caffe2/public/xpu.cmake' 2025-07-24T03:55:23.3078990Z adding 'torch/share/cmake/Torch/TorchConfig.cmake' 2025-07-24T03:55:23.3080060Z adding 'torch/share/cmake/Torch/TorchConfigVersion.cmake' 2025-07-24T03:55:23.3081510Z adding 'torch/signal/__init__.py' 2025-07-24T03:55:23.3084020Z adding 'torch/signal/windows/__init__.py' 2025-07-24T03:55:23.3087660Z adding 'torch/signal/windows/windows.py' 2025-07-24T03:55:23.3093260Z adding 'torch/sparse/__init__.py' 2025-07-24T03:55:23.3096700Z adding 'torch/sparse/_semi_structured_conversions.py' 2025-07-24T03:55:23.3098780Z adding 'torch/sparse/_semi_structured_ops.py' 2025-07-24T03:55:23.3114320Z adding 'torch/sparse/_triton_ops.py' 2025-07-24T03:55:23.3193470Z adding 'torch/sparse/_triton_ops_meta.py' 2025-07-24T03:55:23.3201140Z adding 'torch/sparse/semi_structured.py' 2025-07-24T03:55:23.3206130Z adding 'torch/special/__init__.py' 2025-07-24T03:55:23.3207160Z adding 'torch/testing/__init__.py' 2025-07-24T03:55:23.3220230Z adding 'torch/testing/_comparison.py' 2025-07-24T03:55:23.3223770Z adding 'torch/testing/_creation.py' 2025-07-24T03:55:23.3225330Z adding 'torch/testing/_utils.py' 2025-07-24T03:55:23.3226770Z adding 'torch/testing/_internal/__init__.py' 2025-07-24T03:55:23.3231260Z adding 'torch/testing/_internal/autocast_test_lists.py' 2025-07-24T03:55:23.3234250Z adding 'torch/testing/_internal/autograd_function_db.py' 2025-07-24T03:55:23.3236450Z adding 'torch/testing/_internal/check_kernel_launches.py' 2025-07-24T03:55:23.3239160Z adding 'torch/testing/_internal/common_cuda.py' 2025-07-24T03:55:23.3255310Z adding 'torch/testing/_internal/common_device_type.py' 2025-07-24T03:55:23.3257420Z adding 'torch/testing/_internal/common_dist_composable.py' 2025-07-24T03:55:23.3271930Z adding 'torch/testing/_internal/common_distributed.py' 2025-07-24T03:55:23.3273490Z adding 'torch/testing/_internal/common_dtype.py' 2025-07-24T03:55:23.3284820Z adding 'torch/testing/_internal/common_fsdp.py' 2025-07-24T03:55:23.3288460Z adding 'torch/testing/_internal/common_jit.py' 2025-07-24T03:55:23.3441990Z adding 'torch/testing/_internal/common_methods_invocations.py' 2025-07-24T03:55:23.3448690Z adding 'torch/testing/_internal/common_mkldnn.py' 2025-07-24T03:55:23.3469770Z adding 'torch/testing/_internal/common_modules.py' 2025-07-24T03:55:23.3475940Z adding 'torch/testing/_internal/common_mps.py' 2025-07-24T03:55:23.3497880Z adding 'torch/testing/_internal/common_nn.py' 2025-07-24T03:55:23.3508680Z adding 'torch/testing/_internal/common_optimizers.py' 2025-07-24T03:55:23.3511560Z adding 'torch/testing/_internal/common_pruning.py' 2025-07-24T03:55:23.3531030Z adding 'torch/testing/_internal/common_quantization.py' 2025-07-24T03:55:23.3535830Z adding 'torch/testing/_internal/common_quantized.py' 2025-07-24T03:55:23.3538770Z adding 'torch/testing/_internal/common_subclass.py' 2025-07-24T03:55:23.3594830Z adding 'torch/testing/_internal/common_utils.py' 2025-07-24T03:55:23.3601450Z adding 'torch/testing/_internal/composite_compliance.py' 2025-07-24T03:55:23.3605140Z adding 'torch/testing/_internal/custom_op_db.py' 2025-07-24T03:55:23.3606690Z adding 'torch/testing/_internal/custom_tensor.py' 2025-07-24T03:55:23.3609090Z adding 'torch/testing/_internal/dist_utils.py' 2025-07-24T03:55:23.3610700Z adding 'torch/testing/_internal/dynamo_test_failures.py' 2025-07-24T03:55:23.3611770Z adding 'torch/testing/_internal/fake_config_module.py' 2025-07-24T03:55:23.3612680Z adding 'torch/testing/_internal/fake_config_module2.py' 2025-07-24T03:55:23.3613590Z adding 'torch/testing/_internal/fake_config_module3.py' 2025-07-24T03:55:23.3615990Z adding 'torch/testing/_internal/hop_db.py' 2025-07-24T03:55:23.3619210Z adding 'torch/testing/_internal/hypothesis_utils.py' 2025-07-24T03:55:23.3621940Z adding 'torch/testing/_internal/inductor_utils.py' 2025-07-24T03:55:23.3628100Z adding 'torch/testing/_internal/jit_metaprogramming_utils.py' 2025-07-24T03:55:23.3634850Z adding 'torch/testing/_internal/jit_utils.py' 2025-07-24T03:55:23.3637270Z adding 'torch/testing/_internal/logging_tensor.py' 2025-07-24T03:55:23.3639390Z adding 'torch/testing/_internal/logging_utils.py' 2025-07-24T03:55:23.3640180Z adding 'torch/testing/_internal/quantization_torch_package_models.py' 2025-07-24T03:55:23.3640990Z adding 'torch/testing/_internal/static_module.py' 2025-07-24T03:55:23.3642100Z adding 'torch/testing/_internal/subclasses.py' 2025-07-24T03:55:23.3644110Z adding 'torch/testing/_internal/torchbind_impls.py' 2025-07-24T03:55:23.3648060Z adding 'torch/testing/_internal/triton_utils.py' 2025-07-24T03:55:23.3649170Z adding 'torch/testing/_internal/two_tensor.py' 2025-07-24T03:55:23.3650490Z adding 'torch/testing/_internal/codegen/__init__.py' 2025-07-24T03:55:23.3651430Z adding 'torch/testing/_internal/data/__init__.py' 2025-07-24T03:55:23.3652240Z adding 'torch/testing/_internal/data/network1.py' 2025-07-24T03:55:23.3653010Z adding 'torch/testing/_internal/data/network2.py' 2025-07-24T03:55:23.3654060Z adding 'torch/testing/_internal/distributed/__init__.py' 2025-07-24T03:55:23.3656120Z adding 'torch/testing/_internal/distributed/checkpoint_utils.py' 2025-07-24T03:55:23.3657670Z adding 'torch/testing/_internal/distributed/common_state_dict.py' 2025-07-24T03:55:23.3662700Z adding 'torch/testing/_internal/distributed/ddp_under_dist_autograd_test.py' 2025-07-24T03:55:23.3726900Z adding 'torch/testing/_internal/distributed/distributed_test.py' 2025-07-24T03:55:23.3730290Z adding 'torch/testing/_internal/distributed/distributed_utils.py' 2025-07-24T03:55:23.3731040Z adding 'torch/testing/_internal/distributed/fake_pg.py' 2025-07-24T03:55:23.3735120Z adding 'torch/testing/_internal/distributed/multi_threaded_pg.py' 2025-07-24T03:55:23.3737230Z adding 'torch/testing/_internal/distributed/rpc_utils.py' 2025-07-24T03:55:23.3738180Z adding 'torch/testing/_internal/distributed/_shard/__init__.py' 2025-07-24T03:55:23.3739160Z adding 'torch/testing/_internal/distributed/_shard/test_common.py' 2025-07-24T03:55:23.3741310Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/__init__.py' 2025-07-24T03:55:23.3742340Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_ops_common.py' 2025-07-24T03:55:23.3743390Z adding 'torch/testing/_internal/distributed/_shard/sharded_tensor/_test_st_common.py' 2025-07-24T03:55:23.3744290Z adding 'torch/testing/_internal/distributed/_tensor/__init__.py' 2025-07-24T03:55:23.3749490Z adding 'torch/testing/_internal/distributed/_tensor/common_dtensor.py' 2025-07-24T03:55:23.3750210Z adding 'torch/testing/_internal/distributed/nn/__init__.py' 2025-07-24T03:55:23.3751200Z adding 'torch/testing/_internal/distributed/nn/api/__init__.py' 2025-07-24T03:55:23.3755330Z adding 'torch/testing/_internal/distributed/nn/api/remote_module_test.py' 2025-07-24T03:55:23.3756190Z adding 'torch/testing/_internal/distributed/rpc/__init__.py' 2025-07-24T03:55:23.3773380Z adding 'torch/testing/_internal/distributed/rpc/dist_autograd_test.py' 2025-07-24T03:55:23.3775970Z adding 'torch/testing/_internal/distributed/rpc/dist_optimizer_test.py' 2025-07-24T03:55:23.3778440Z adding 'torch/testing/_internal/distributed/rpc/faulty_agent_rpc_test.py' 2025-07-24T03:55:23.3779380Z adding 'torch/testing/_internal/distributed/rpc/faulty_rpc_agent_test_fixture.py' 2025-07-24T03:55:23.3780490Z adding 'torch/testing/_internal/distributed/rpc/rpc_agent_test_fixture.py' 2025-07-24T03:55:23.3817490Z adding 'torch/testing/_internal/distributed/rpc/rpc_test.py' 2025-07-24T03:55:23.3819780Z adding 'torch/testing/_internal/distributed/rpc/tensorpipe_rpc_agent_test_fixture.py' 2025-07-24T03:55:23.3820620Z adding 'torch/testing/_internal/distributed/rpc/examples/__init__.py' 2025-07-24T03:55:23.3822210Z adding 'torch/testing/_internal/distributed/rpc/examples/parameter_server_test.py' 2025-07-24T03:55:23.3824920Z adding 'torch/testing/_internal/distributed/rpc/examples/reinforcement_learning_rpc_test.py' 2025-07-24T03:55:23.3825580Z adding 'torch/testing/_internal/distributed/rpc/jit/__init__.py' 2025-07-24T03:55:23.3826960Z adding 'torch/testing/_internal/distributed/rpc/jit/dist_autograd_test.py' 2025-07-24T03:55:23.3835340Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test.py' 2025-07-24T03:55:23.3837550Z adding 'torch/testing/_internal/distributed/rpc/jit/rpc_test_faulty.py' 2025-07-24T03:55:23.3838170Z adding 'torch/testing/_internal/generated/__init__.py' 2025-07-24T03:55:23.3871310Z adding 'torch/testing/_internal/generated/annotated_fn_args.py' 2025-07-24T03:55:23.3874810Z adding 'torch/testing/_internal/opinfo/__init__.py' 2025-07-24T03:55:23.3901230Z adding 'torch/testing/_internal/opinfo/core.py' 2025-07-24T03:55:23.3903610Z adding 'torch/testing/_internal/opinfo/refs.py' 2025-07-24T03:55:23.3906230Z adding 'torch/testing/_internal/opinfo/utils.py' 2025-07-24T03:55:23.3907230Z adding 'torch/testing/_internal/opinfo/definitions/__init__.py' 2025-07-24T03:55:23.3912740Z adding 'torch/testing/_internal/opinfo/definitions/_masked.py' 2025-07-24T03:55:23.3916000Z adding 'torch/testing/_internal/opinfo/definitions/fft.py' 2025-07-24T03:55:23.3928270Z adding 'torch/testing/_internal/opinfo/definitions/linalg.py' 2025-07-24T03:55:23.3938960Z adding 'torch/testing/_internal/opinfo/definitions/nested.py' 2025-07-24T03:55:23.3941730Z adding 'torch/testing/_internal/opinfo/definitions/signal.py' 2025-07-24T03:55:23.3946780Z adding 'torch/testing/_internal/opinfo/definitions/sparse.py' 2025-07-24T03:55:23.3950080Z adding 'torch/testing/_internal/opinfo/definitions/special.py' 2025-07-24T03:55:23.3951140Z adding 'torch/testing/_internal/optests/__init__.py' 2025-07-24T03:55:23.3953190Z adding 'torch/testing/_internal/optests/aot_autograd.py' 2025-07-24T03:55:23.3954780Z adding 'torch/testing/_internal/optests/autograd_registration.py' 2025-07-24T03:55:23.3955610Z adding 'torch/testing/_internal/optests/fake_tensor.py' 2025-07-24T03:55:23.3962670Z adding 'torch/testing/_internal/optests/generate_tests.py' 2025-07-24T03:55:23.3963910Z adding 'torch/testing/_internal/optests/make_fx.py' 2025-07-24T03:55:23.3964870Z adding 'torch/testing/_internal/test_module/__init__.py' 2025-07-24T03:55:23.3965690Z adding 'torch/testing/_internal/test_module/future_div.py' 2025-07-24T03:55:23.3966490Z adding 'torch/testing/_internal/test_module/no_future_div.py' 2025-07-24T03:55:23.3968870Z adding 'torch/utils/__init__.py' 2025-07-24T03:55:23.3970000Z adding 'torch/utils/_appending_byte_serializer.py' 2025-07-24T03:55:23.3971990Z adding 'torch/utils/_backport_slots.py' 2025-07-24T03:55:23.3978180Z adding 'torch/utils/_config_module.py' 2025-07-24T03:55:23.3979020Z adding 'torch/utils/_config_typing.pyi' 2025-07-24T03:55:23.3981800Z adding 'torch/utils/_content_store.py' 2025-07-24T03:55:23.3983570Z adding 'torch/utils/_contextlib.py' 2025-07-24T03:55:23.3984460Z adding 'torch/utils/_cpp_embed_headers.py' 2025-07-24T03:55:23.3985500Z adding 'torch/utils/_cpp_extension_versioner.py' 2025-07-24T03:55:23.3992090Z adding 'torch/utils/_cxx_pytree.py' 2025-07-24T03:55:23.3993320Z adding 'torch/utils/_device.py' 2025-07-24T03:55:23.3994190Z adding 'torch/utils/_dtype_abbrs.py' 2025-07-24T03:55:23.3995110Z adding 'torch/utils/_exposed_in.py' 2025-07-24T03:55:23.3996110Z adding 'torch/utils/_filelock.py' 2025-07-24T03:55:23.3997300Z adding 'torch/utils/_foreach_utils.py' 2025-07-24T03:55:23.4000100Z adding 'torch/utils/_freeze.py' 2025-07-24T03:55:23.4000830Z adding 'torch/utils/_functools.py' 2025-07-24T03:55:23.4003070Z adding 'torch/utils/_get_clean_triton.py' 2025-07-24T03:55:23.4003580Z adding 'torch/utils/_helion.py' 2025-07-24T03:55:23.4004570Z adding 'torch/utils/_import_utils.py' 2025-07-24T03:55:23.4005390Z adding 'torch/utils/_mode_utils.py' 2025-07-24T03:55:23.4007340Z adding 'torch/utils/_ordered_set.py' 2025-07-24T03:55:23.4013750Z adding 'torch/utils/_python_dispatch.py' 2025-07-24T03:55:23.4027860Z adding 'torch/utils/_pytree.py' 2025-07-24T03:55:23.4029000Z adding 'torch/utils/_stats.py' 2025-07-24T03:55:23.4029910Z adding 'torch/utils/_thunk.py' 2025-07-24T03:55:23.4032830Z adding 'torch/utils/_traceback.py' 2025-07-24T03:55:23.4033910Z adding 'torch/utils/_triton.py' 2025-07-24T03:55:23.4034790Z adding 'torch/utils/_typing_utils.py' 2025-07-24T03:55:23.4035960Z adding 'torch/utils/_zip.py' 2025-07-24T03:55:23.4040330Z adding 'torch/utils/backend_registration.py' 2025-07-24T03:55:23.4044800Z adding 'torch/utils/bundled_inputs.py' 2025-07-24T03:55:23.4061340Z adding 'torch/utils/checkpoint.py' 2025-07-24T03:55:23.4067950Z adding 'torch/utils/collect_env.py' 2025-07-24T03:55:23.4068770Z adding 'torch/utils/cpp_backtrace.py' 2025-07-24T03:55:23.4097860Z adding 'torch/utils/cpp_extension.py' 2025-07-24T03:55:23.4099280Z adding 'torch/utils/deterministic.py' 2025-07-24T03:55:23.4101640Z adding 'torch/utils/dlpack.py' 2025-07-24T03:55:23.4102500Z adding 'torch/utils/file_baton.py' 2025-07-24T03:55:23.4109220Z adding 'torch/utils/flop_counter.py' 2025-07-24T03:55:23.4111830Z adding 'torch/utils/hooks.py' 2025-07-24T03:55:23.4113210Z adding 'torch/utils/mkldnn.py' 2025-07-24T03:55:23.4115220Z adding 'torch/utils/mobile_optimizer.py' 2025-07-24T03:55:23.4115770Z adding 'torch/utils/model_zoo.py' 2025-07-24T03:55:23.4117730Z adding 'torch/utils/module_tracker.py' 2025-07-24T03:55:23.4119020Z adding 'torch/utils/show_pickle.py' 2025-07-24T03:55:23.4121180Z adding 'torch/utils/throughput_benchmark.py' 2025-07-24T03:55:23.4123950Z adding 'torch/utils/weak.py' 2025-07-24T03:55:23.4125100Z adding 'torch/utils/_strobelight/__init__.py' 2025-07-24T03:55:23.4127840Z adding 'torch/utils/_strobelight/cli_function_profiler.py' 2025-07-24T03:55:23.4128590Z adding 'torch/utils/_sympy/__init__.py' 2025-07-24T03:55:23.4139600Z adding 'torch/utils/_sympy/functions.py' 2025-07-24T03:55:23.4142020Z adding 'torch/utils/_sympy/interp.py' 2025-07-24T03:55:23.4144350Z adding 'torch/utils/_sympy/numbers.py' 2025-07-24T03:55:23.4148640Z adding 'torch/utils/_sympy/printers.py' 2025-07-24T03:55:23.4151320Z adding 'torch/utils/_sympy/reference.py' 2025-07-24T03:55:23.4152520Z adding 'torch/utils/_sympy/singleton_int.py' 2025-07-24T03:55:23.4154770Z adding 'torch/utils/_sympy/solve.py' 2025-07-24T03:55:23.4156330Z adding 'torch/utils/_sympy/symbol.py' 2025-07-24T03:55:23.4163900Z adding 'torch/utils/_sympy/value_ranges.py' 2025-07-24T03:55:23.4165060Z adding 'torch/utils/backcompat/__init__.py' 2025-07-24T03:55:23.4166490Z adding 'torch/utils/benchmark/__init__.py' 2025-07-24T03:55:23.4167640Z adding 'torch/utils/benchmark/examples/__init__.py' 2025-07-24T03:55:23.4169030Z adding 'torch/utils/benchmark/examples/compare.py' 2025-07-24T03:55:23.4170290Z adding 'torch/utils/benchmark/examples/fuzzer.py' 2025-07-24T03:55:23.4172370Z adding 'torch/utils/benchmark/examples/op_benchmark.py' 2025-07-24T03:55:23.4173080Z adding 'torch/utils/benchmark/examples/simple_timeit.py' 2025-07-24T03:55:23.4174670Z adding 'torch/utils/benchmark/examples/spectral_ops_fuzz_test.py' 2025-07-24T03:55:23.4175770Z adding 'torch/utils/benchmark/op_fuzzers/__init__.py' 2025-07-24T03:55:23.4177290Z adding 'torch/utils/benchmark/op_fuzzers/binary.py' 2025-07-24T03:55:23.4178710Z adding 'torch/utils/benchmark/op_fuzzers/sparse_binary.py' 2025-07-24T03:55:23.4179970Z adding 'torch/utils/benchmark/op_fuzzers/sparse_unary.py' 2025-07-24T03:55:23.4181300Z adding 'torch/utils/benchmark/op_fuzzers/spectral.py' 2025-07-24T03:55:23.4182660Z adding 'torch/utils/benchmark/op_fuzzers/unary.py' 2025-07-24T03:55:23.4183710Z adding 'torch/utils/benchmark/utils/__init__.py' 2025-07-24T03:55:23.4184690Z adding 'torch/utils/benchmark/utils/_stubs.py' 2025-07-24T03:55:23.4188220Z adding 'torch/utils/benchmark/utils/common.py' 2025-07-24T03:55:23.4191500Z adding 'torch/utils/benchmark/utils/compare.py' 2025-07-24T03:55:23.4193630Z adding 'torch/utils/benchmark/utils/compile.py' 2025-07-24T03:55:23.4195420Z adding 'torch/utils/benchmark/utils/cpp_jit.py' 2025-07-24T03:55:23.4199660Z adding 'torch/utils/benchmark/utils/fuzzer.py' 2025-07-24T03:55:23.4205870Z adding 'torch/utils/benchmark/utils/sparse_fuzzer.py' 2025-07-24T03:55:23.4206200Z adding 'torch/utils/benchmark/utils/timeit_template.cpp' 2025-07-24T03:55:23.4207040Z adding 'torch/utils/benchmark/utils/timer.py' 2025-07-24T03:55:23.4208280Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/__init__.py' 2025-07-24T03:55:23.4210580Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/callgrind.h' 2025-07-24T03:55:23.4211200Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/compat_bindings.cpp' 2025-07-24T03:55:23.4212270Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_callgrind_template.cpp' 2025-07-24T03:55:23.4220240Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/timer_interface.py' 2025-07-24T03:55:23.4255080Z adding 'torch/utils/benchmark/utils/valgrind_wrapper/valgrind.h' 2025-07-24T03:55:23.4257930Z adding 'torch/utils/bottleneck/__init__.py' 2025-07-24T03:55:23.4260240Z adding 'torch/utils/bottleneck/__main__.py' 2025-07-24T03:55:23.4261430Z adding 'torch/utils/data/__init__.py' 2025-07-24T03:55:23.4262330Z adding 'torch/utils/data/backward_compatibility.py' 2025-07-24T03:55:23.4281410Z adding 'torch/utils/data/dataloader.py' 2025-07-24T03:55:23.4286080Z adding 'torch/utils/data/dataset.py' 2025-07-24T03:55:23.4287870Z adding 'torch/utils/data/distributed.py' 2025-07-24T03:55:23.4289660Z adding 'torch/utils/data/graph.py' 2025-07-24T03:55:23.4291770Z adding 'torch/utils/data/graph_settings.py' 2025-07-24T03:55:23.4294620Z adding 'torch/utils/data/sampler.py' 2025-07-24T03:55:23.4295820Z adding 'torch/utils/data/_utils/__init__.py' 2025-07-24T03:55:23.4299240Z adding 'torch/utils/data/_utils/collate.py' 2025-07-24T03:55:23.4300450Z adding 'torch/utils/data/_utils/fetch.py' 2025-07-24T03:55:23.4301850Z adding 'torch/utils/data/_utils/pin_memory.py' 2025-07-24T03:55:23.4303160Z adding 'torch/utils/data/_utils/signal_handling.py' 2025-07-24T03:55:23.4306750Z adding 'torch/utils/data/_utils/worker.py' 2025-07-24T03:55:23.4307950Z adding 'torch/utils/data/datapipes/__init__.py' 2025-07-24T03:55:23.4310140Z adding 'torch/utils/data/datapipes/_decorator.py' 2025-07-24T03:55:23.4312980Z adding 'torch/utils/data/datapipes/_hook_iterator.py' 2025-07-24T03:55:23.4316780Z adding 'torch/utils/data/datapipes/_typing.py' 2025-07-24T03:55:23.4320180Z adding 'torch/utils/data/datapipes/datapipe.py' 2025-07-24T03:55:23.4326000Z adding 'torch/utils/data/datapipes/datapipe.pyi' 2025-07-24T03:55:23.4328920Z adding 'torch/utils/data/datapipes/gen_pyi.py' 2025-07-24T03:55:23.4329950Z adding 'torch/utils/data/datapipes/dataframe/__init__.py' 2025-07-24T03:55:23.4331420Z adding 'torch/utils/data/datapipes/dataframe/dataframe_wrapper.py' 2025-07-24T03:55:23.4334450Z adding 'torch/utils/data/datapipes/dataframe/dataframes.py' 2025-07-24T03:55:23.4335500Z adding 'torch/utils/data/datapipes/dataframe/datapipes.py' 2025-07-24T03:55:23.4336410Z adding 'torch/utils/data/datapipes/dataframe/structures.py' 2025-07-24T03:55:23.4337940Z adding 'torch/utils/data/datapipes/iter/__init__.py' 2025-07-24T03:55:23.4340580Z adding 'torch/utils/data/datapipes/iter/callable.py' 2025-07-24T03:55:23.4342370Z adding 'torch/utils/data/datapipes/iter/combinatorics.py' 2025-07-24T03:55:23.4347250Z adding 'torch/utils/data/datapipes/iter/combining.py' 2025-07-24T03:55:23.4348590Z adding 'torch/utils/data/datapipes/iter/filelister.py' 2025-07-24T03:55:23.4349950Z adding 'torch/utils/data/datapipes/iter/fileopener.py' 2025-07-24T03:55:23.4352820Z adding 'torch/utils/data/datapipes/iter/grouping.py' 2025-07-24T03:55:23.4354220Z adding 'torch/utils/data/datapipes/iter/routeddecoder.py' 2025-07-24T03:55:23.4356260Z adding 'torch/utils/data/datapipes/iter/selecting.py' 2025-07-24T03:55:23.4357130Z adding 'torch/utils/data/datapipes/iter/sharding.py' 2025-07-24T03:55:23.4358230Z adding 'torch/utils/data/datapipes/iter/streamreader.py' 2025-07-24T03:55:23.4359360Z adding 'torch/utils/data/datapipes/iter/utils.py' 2025-07-24T03:55:23.4360740Z adding 'torch/utils/data/datapipes/map/__init__.py' 2025-07-24T03:55:23.4361840Z adding 'torch/utils/data/datapipes/map/callable.py' 2025-07-24T03:55:23.4363340Z adding 'torch/utils/data/datapipes/map/combinatorics.py' 2025-07-24T03:55:23.4364590Z adding 'torch/utils/data/datapipes/map/combining.py' 2025-07-24T03:55:23.4366060Z adding 'torch/utils/data/datapipes/map/grouping.py' 2025-07-24T03:55:23.4367260Z adding 'torch/utils/data/datapipes/map/utils.py' 2025-07-24T03:55:23.4368330Z adding 'torch/utils/data/datapipes/utils/__init__.py' 2025-07-24T03:55:23.4371700Z adding 'torch/utils/data/datapipes/utils/common.py' 2025-07-24T03:55:23.4374640Z adding 'torch/utils/data/datapipes/utils/decoder.py' 2025-07-24T03:55:23.4375830Z adding 'torch/utils/data/datapipes/utils/snapshot.py' 2025-07-24T03:55:23.4376810Z adding 'torch/utils/hipify/__init__.py' 2025-07-24T03:55:23.4377850Z adding 'torch/utils/hipify/constants.py' 2025-07-24T03:55:23.4418100Z adding 'torch/utils/hipify/cuda_to_hip_mappings.py' 2025-07-24T03:55:23.4430010Z adding 'torch/utils/hipify/hipify_python.py' 2025-07-24T03:55:23.4431060Z adding 'torch/utils/hipify/version.py' 2025-07-24T03:55:23.4432080Z adding 'torch/utils/jit/__init__.py' 2025-07-24T03:55:23.4433570Z adding 'torch/utils/jit/log_extract.py' 2025-07-24T03:55:23.4438070Z adding 'torch/utils/model_dump/__init__.py' 2025-07-24T03:55:23.4438640Z adding 'torch/utils/model_dump/__main__.py' 2025-07-24T03:55:23.4442740Z adding 'torch/utils/model_dump/code.js' 2025-07-24T03:55:23.4443590Z adding 'torch/utils/model_dump/htm.mjs' 2025-07-24T03:55:23.4446750Z adding 'torch/utils/model_dump/preact.mjs' 2025-07-24T03:55:23.4447350Z adding 'torch/utils/model_dump/skeleton.html' 2025-07-24T03:55:23.4448340Z adding 'torch/utils/serialization/__init__.py' 2025-07-24T03:55:23.4449270Z adding 'torch/utils/serialization/config.py' 2025-07-24T03:55:23.4450540Z adding 'torch/utils/tensorboard/__init__.py' 2025-07-24T03:55:23.4451470Z adding 'torch/utils/tensorboard/_convert_np.py' 2025-07-24T03:55:23.4452760Z adding 'torch/utils/tensorboard/_embedding.py' 2025-07-24T03:55:23.4453890Z adding 'torch/utils/tensorboard/_onnx_graph.py' 2025-07-24T03:55:23.4455250Z adding 'torch/utils/tensorboard/_proto_graph.py' 2025-07-24T03:55:23.4458990Z adding 'torch/utils/tensorboard/_pytorch_graph.py' 2025-07-24T03:55:23.4460300Z adding 'torch/utils/tensorboard/_utils.py' 2025-07-24T03:55:23.4467920Z adding 'torch/utils/tensorboard/summary.py' 2025-07-24T03:55:23.4477140Z adding 'torch/utils/tensorboard/writer.py' 2025-07-24T03:55:23.4478470Z adding 'torch/utils/viz/__init__.py' 2025-07-24T03:55:23.4482780Z adding 'torch/utils/viz/_cycles.py' 2025-07-24T03:55:23.4487160Z adding 'torch/xpu/__init__.py' 2025-07-24T03:55:23.4488100Z adding 'torch/xpu/_gpu_trace.py' 2025-07-24T03:55:23.4489220Z adding 'torch/xpu/_utils.py' 2025-07-24T03:55:23.4491400Z adding 'torch/xpu/memory.py' 2025-07-24T03:55:23.4492600Z adding 'torch/xpu/random.py' 2025-07-24T03:55:23.4494600Z adding 'torch/xpu/streams.py' 2025-07-24T03:55:23.4497490Z adding 'torchgen/__init__.py' 2025-07-24T03:55:23.4498590Z adding 'torchgen/code_template.py' 2025-07-24T03:55:23.4499960Z adding 'torchgen/context.py' 2025-07-24T03:55:23.4522760Z adding 'torchgen/gen.py' 2025-07-24T03:55:23.4528510Z adding 'torchgen/gen_aoti_c_shim.py' 2025-07-24T03:55:23.4533290Z adding 'torchgen/gen_backend_stubs.py' 2025-07-24T03:55:23.4541050Z adding 'torchgen/gen_functionalization_type.py' 2025-07-24T03:55:23.4546060Z adding 'torchgen/gen_lazy_tensor.py' 2025-07-24T03:55:23.4547250Z adding 'torchgen/gen_schema_utils.py' 2025-07-24T03:55:23.4549690Z adding 'torchgen/gen_vmap_plumbing.py' 2025-07-24T03:55:23.4550550Z adding 'torchgen/local.py' 2025-07-24T03:55:23.4576760Z adding 'torchgen/model.py' 2025-07-24T03:55:23.4583980Z adding 'torchgen/native_function_generation.py' 2025-07-24T03:55:23.4588390Z adding 'torchgen/utils.py' 2025-07-24T03:55:23.4589240Z adding 'torchgen/yaml_utils.py' 2025-07-24T03:55:23.4590460Z adding 'torchgen/aoti/__init__.py' 2025-07-24T03:55:23.4592220Z adding 'torchgen/aoti/fallback_ops.py' 2025-07-24T03:55:23.4593210Z adding 'torchgen/api/__init__.py' 2025-07-24T03:55:23.4601910Z adding 'torchgen/api/autograd.py' 2025-07-24T03:55:23.4605670Z adding 'torchgen/api/cpp.py' 2025-07-24T03:55:23.4606850Z adding 'torchgen/api/dispatcher.py' 2025-07-24T03:55:23.4609180Z adding 'torchgen/api/functionalization.py' 2025-07-24T03:55:23.4613100Z adding 'torchgen/api/lazy.py' 2025-07-24T03:55:23.4613760Z adding 'torchgen/api/meta.py' 2025-07-24T03:55:23.4615790Z adding 'torchgen/api/native.py' 2025-07-24T03:55:23.4628350Z adding 'torchgen/api/python.py' 2025-07-24T03:55:23.4630470Z adding 'torchgen/api/structured.py' 2025-07-24T03:55:23.4634250Z adding 'torchgen/api/translate.py' 2025-07-24T03:55:23.4636360Z adding 'torchgen/api/ufunc.py' 2025-07-24T03:55:23.4638530Z adding 'torchgen/api/unboxing.py' 2025-07-24T03:55:23.4639390Z adding 'torchgen/api/types/__init__.py' 2025-07-24T03:55:23.4642950Z adding 'torchgen/api/types/signatures.py' 2025-07-24T03:55:23.4644460Z adding 'torchgen/api/types/types.py' 2025-07-24T03:55:23.4646670Z adding 'torchgen/api/types/types_base.py' 2025-07-24T03:55:23.4647570Z adding 'torchgen/dest/__init__.py' 2025-07-24T03:55:23.4653590Z adding 'torchgen/dest/lazy_ir.py' 2025-07-24T03:55:23.4654540Z adding 'torchgen/dest/lazy_ts_lowering.py' 2025-07-24T03:55:23.4655800Z adding 'torchgen/dest/native_functions.py' 2025-07-24T03:55:23.4664120Z adding 'torchgen/dest/register_dispatch_key.py' 2025-07-24T03:55:23.4668060Z adding 'torchgen/dest/ufunc.py' 2025-07-24T03:55:23.4668970Z adding 'torchgen/operator_versions/__init__.py' 2025-07-24T03:55:23.4671930Z adding 'torchgen/operator_versions/gen_mobile_upgraders.py' 2025-07-24T03:55:23.4672590Z adding 'torchgen/operator_versions/gen_mobile_upgraders_constant.py' 2025-07-24T03:55:23.4746980Z adding 'torchgen/packaged/ATen/native/native_functions.yaml' 2025-07-24T03:55:23.4751260Z adding 'torchgen/packaged/ATen/native/tags.yaml' 2025-07-24T03:55:23.4753070Z adding 'torchgen/packaged/ATen/templates/ATenOpList.cpp' 2025-07-24T03:55:23.4754190Z adding 'torchgen/packaged/ATen/templates/CompositeViewCopyKernels.cpp' 2025-07-24T03:55:23.4755100Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunction.h' 2025-07-24T03:55:23.4756260Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions.h' 2025-07-24T03:55:23.4757230Z adding 'torchgen/packaged/ATen/templates/DispatchKeyFunctions_inl.h' 2025-07-24T03:55:23.4758080Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.cpp' 2025-07-24T03:55:23.4758930Z adding 'torchgen/packaged/ATen/templates/DispatchKeyNativeFunctions.h' 2025-07-24T03:55:23.4759700Z adding 'torchgen/packaged/ATen/templates/Function.h' 2025-07-24T03:55:23.4760720Z adding 'torchgen/packaged/ATen/templates/FunctionalInverses.h' 2025-07-24T03:55:23.4762020Z adding 'torchgen/packaged/ATen/templates/Functions.cpp' 2025-07-24T03:55:23.4763580Z adding 'torchgen/packaged/ATen/templates/Functions.h' 2025-07-24T03:55:23.4764460Z adding 'torchgen/packaged/ATen/templates/LazyIr.h' 2025-07-24T03:55:23.4765270Z adding 'torchgen/packaged/ATen/templates/LazyNonNativeIr.h' 2025-07-24T03:55:23.4766200Z adding 'torchgen/packaged/ATen/templates/MethodOperators.h' 2025-07-24T03:55:23.4767010Z adding 'torchgen/packaged/ATen/templates/NativeFunction.h' 2025-07-24T03:55:23.4767930Z adding 'torchgen/packaged/ATen/templates/NativeFunctions.h' 2025-07-24T03:55:23.4768750Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunction.h' 2025-07-24T03:55:23.4769570Z adding 'torchgen/packaged/ATen/templates/NativeMetaFunctions.h' 2025-07-24T03:55:23.4770360Z adding 'torchgen/packaged/ATen/templates/Operator.h' 2025-07-24T03:55:23.4771170Z adding 'torchgen/packaged/ATen/templates/Operators.cpp' 2025-07-24T03:55:23.4772450Z adding 'torchgen/packaged/ATen/templates/Operators.h' 2025-07-24T03:55:23.4773280Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.cpp' 2025-07-24T03:55:23.4774190Z adding 'torchgen/packaged/ATen/templates/RedispatchFunctions.h' 2025-07-24T03:55:23.4775100Z adding 'torchgen/packaged/ATen/templates/RegisterBackendSelect.cpp' 2025-07-24T03:55:23.4776070Z adding 'torchgen/packaged/ATen/templates/RegisterCodegenUnboxedKernels.cpp' 2025-07-24T03:55:23.4776900Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchDefinitions.ini' 2025-07-24T03:55:23.4777870Z adding 'torchgen/packaged/ATen/templates/RegisterDispatchKey.cpp' 2025-07-24T03:55:23.4779180Z adding 'torchgen/packaged/ATen/templates/RegisterFunctionalization.cpp' 2025-07-24T03:55:23.4780080Z adding 'torchgen/packaged/ATen/templates/RegisterSchema.cpp' 2025-07-24T03:55:23.4780850Z adding 'torchgen/packaged/ATen/templates/RegistrationDeclarations.h' 2025-07-24T03:55:23.4787740Z adding 'torchgen/packaged/ATen/templates/TensorBody.h' 2025-07-24T03:55:23.4788740Z adding 'torchgen/packaged/ATen/templates/TensorMethods.cpp' 2025-07-24T03:55:23.4789610Z adding 'torchgen/packaged/ATen/templates/UfuncCPU.cpp' 2025-07-24T03:55:23.4790450Z adding 'torchgen/packaged/ATen/templates/UfuncCPUKernel.cpp' 2025-07-24T03:55:23.4791270Z adding 'torchgen/packaged/ATen/templates/UfuncCUDA.cu' 2025-07-24T03:55:23.4792140Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.cpp' 2025-07-24T03:55:23.4793080Z adding 'torchgen/packaged/ATen/templates/UnboxingFunctions.h' 2025-07-24T03:55:23.4794050Z adding 'torchgen/packaged/ATen/templates/aten_interned_strings.h' 2025-07-24T03:55:23.4794780Z adding 'torchgen/packaged/ATen/templates/enum_tag.h' 2025-07-24T03:55:23.4795970Z adding 'torchgen/packaged/autograd/BUILD.bazel' 2025-07-24T03:55:23.4796790Z adding 'torchgen/packaged/autograd/README.md' 2025-07-24T03:55:23.4797470Z adding 'torchgen/packaged/autograd/__init__.py' 2025-07-24T03:55:23.4798300Z adding 'torchgen/packaged/autograd/build.bzl' 2025-07-24T03:55:23.4799190Z adding 'torchgen/packaged/autograd/context.py' 2025-07-24T03:55:23.4800490Z adding 'torchgen/packaged/autograd/deprecated.yaml' 2025-07-24T03:55:23.4830250Z adding 'torchgen/packaged/autograd/derivatives.yaml' 2025-07-24T03:55:23.4832970Z adding 'torchgen/packaged/autograd/gen_annotated_fn_args.py' 2025-07-24T03:55:23.4834110Z adding 'torchgen/packaged/autograd/gen_autograd.py' 2025-07-24T03:55:23.4840670Z adding 'torchgen/packaged/autograd/gen_autograd_functions.py' 2025-07-24T03:55:23.4845720Z adding 'torchgen/packaged/autograd/gen_inplace_or_view_type.py' 2025-07-24T03:55:23.4855280Z adding 'torchgen/packaged/autograd/gen_python_functions.py' 2025-07-24T03:55:23.4859630Z adding 'torchgen/packaged/autograd/gen_trace_type.py' 2025-07-24T03:55:23.4860980Z adding 'torchgen/packaged/autograd/gen_variable_factories.py' 2025-07-24T03:55:23.4877430Z adding 'torchgen/packaged/autograd/gen_variable_type.py' 2025-07-24T03:55:23.4880800Z adding 'torchgen/packaged/autograd/gen_view_funcs.py' 2025-07-24T03:55:23.4889190Z adding 'torchgen/packaged/autograd/load_derivatives.py' 2025-07-24T03:55:23.4890560Z adding 'torchgen/packaged/autograd/templates/ADInplaceOrViewType.cpp' 2025-07-24T03:55:23.4891590Z adding 'torchgen/packaged/autograd/templates/Functions.cpp' 2025-07-24T03:55:23.4892650Z adding 'torchgen/packaged/autograd/templates/Functions.h' 2025-07-24T03:55:23.4893600Z adding 'torchgen/packaged/autograd/templates/TraceType.cpp' 2025-07-24T03:55:23.4894720Z adding 'torchgen/packaged/autograd/templates/VariableType.cpp' 2025-07-24T03:55:23.4895690Z adding 'torchgen/packaged/autograd/templates/VariableType.h' 2025-07-24T03:55:23.4896520Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.cpp' 2025-07-24T03:55:23.4897350Z adding 'torchgen/packaged/autograd/templates/ViewFuncs.h' 2025-07-24T03:55:23.4898190Z adding 'torchgen/packaged/autograd/templates/annotated_fn_args.py.in' 2025-07-24T03:55:23.4899030Z adding 'torchgen/packaged/autograd/templates/python_enum_tag.cpp' 2025-07-24T03:55:23.4900120Z adding 'torchgen/packaged/autograd/templates/python_fft_functions.cpp' 2025-07-24T03:55:23.4901070Z adding 'torchgen/packaged/autograd/templates/python_functions.cpp' 2025-07-24T03:55:23.4901890Z adding 'torchgen/packaged/autograd/templates/python_functions.h' 2025-07-24T03:55:23.4902900Z adding 'torchgen/packaged/autograd/templates/python_linalg_functions.cpp' 2025-07-24T03:55:23.4903960Z adding 'torchgen/packaged/autograd/templates/python_nested_functions.cpp' 2025-07-24T03:55:23.4905210Z adding 'torchgen/packaged/autograd/templates/python_nn_functions.cpp' 2025-07-24T03:55:23.4906190Z adding 'torchgen/packaged/autograd/templates/python_return_types.cpp' 2025-07-24T03:55:23.4906960Z adding 'torchgen/packaged/autograd/templates/python_return_types.h' 2025-07-24T03:55:23.4908020Z adding 'torchgen/packaged/autograd/templates/python_sparse_functions.cpp' 2025-07-24T03:55:23.4909070Z adding 'torchgen/packaged/autograd/templates/python_special_functions.cpp' 2025-07-24T03:55:23.4910320Z adding 'torchgen/packaged/autograd/templates/python_torch_functions.cpp' 2025-07-24T03:55:23.4917540Z adding 'torchgen/packaged/autograd/templates/python_variable_methods.cpp' 2025-07-24T03:55:23.4919130Z adding 'torchgen/packaged/autograd/templates/variable_factories.h' 2025-07-24T03:55:23.4920050Z adding 'torchgen/selective_build/__init__.py' 2025-07-24T03:55:23.4922280Z adding 'torchgen/selective_build/operator.py' 2025-07-24T03:55:23.4925080Z adding 'torchgen/selective_build/selector.py' 2025-07-24T03:55:23.4925890Z adding 'torchgen/static_runtime/__init__.py' 2025-07-24T03:55:23.4928300Z adding 'torchgen/static_runtime/config.py' 2025-07-24T03:55:23.4930160Z adding 'torchgen/static_runtime/gen_static_runtime_ops.py' 2025-07-24T03:55:23.4934990Z adding 'torchgen/static_runtime/generator.py' 2025-07-24T03:55:23.5009520Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/LICENSE' 2025-07-24T03:55:23.5018370Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/METADATA' 2025-07-24T03:55:23.5023640Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/NOTICE' 2025-07-24T03:55:23.5024110Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/WHEEL' 2025-07-24T03:55:23.5026920Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/entry_points.txt' 2025-07-24T03:55:23.5027220Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/top_level.txt' 2025-07-24T03:55:23.5406260Z adding 'torch-2.9.0a0+git27c8ef1.dist-info/RECORD' 2025-07-24T03:55:23.5796490Z removing build/bdist.macosx-14.0-arm64/wheel 2025-07-24T03:55:24.1569240Z + which sccache 2025-07-24T03:55:24.1611220Z + print_sccache_stats 2025-07-24T03:55:24.1611410Z + echo 'PyTorch Build Statistics' 2025-07-24T03:55:24.1611590Z + sccache --show-stats 2025-07-24T03:55:24.1611750Z PyTorch Build Statistics 2025-07-24T03:55:24.1642490Z Compile requests 5271 2025-07-24T03:55:24.1642720Z Compile requests executed 4896 2025-07-24T03:55:24.1642910Z Cache hits 4872 2025-07-24T03:55:24.1643090Z Cache hits (C/C++) 4872 2025-07-24T03:55:24.1643270Z Cache misses 1 2025-07-24T03:55:24.1643460Z Cache misses (C/C++) 1 2025-07-24T03:55:24.1643640Z Cache timeouts 0 2025-07-24T03:55:24.1643820Z Cache read errors 0 2025-07-24T03:55:24.1644000Z Forced recaches 0 2025-07-24T03:55:24.1644180Z Cache write errors 0 2025-07-24T03:55:24.1644360Z Compilation failures 2 2025-07-24T03:55:24.1644550Z Cache errors 21 2025-07-24T03:55:24.1644720Z Cache errors (C/C++) 21 2025-07-24T03:55:24.1644900Z Non-cacheable compilations 0 2025-07-24T03:55:24.1645090Z Non-cacheable calls 283 2025-07-24T03:55:24.1645270Z Non-compilation calls 92 2025-07-24T03:55:24.1645470Z Unsupported compiler calls 0 2025-07-24T03:55:24.1645660Z Average cache write 0.031 s 2025-07-24T03:55:24.1645860Z Average compiler 0.695 s 2025-07-24T03:55:24.1646060Z Average cache read hit 0.000 s 2025-07-24T03:55:24.1646260Z Failed distributed compilations 0 2025-07-24T03:55:24.1646400Z 2025-07-24T03:55:24.1646460Z Non-cacheable reasons: 2025-07-24T03:55:24.1646620Z unknown source language 271 2025-07-24T03:55:24.1646800Z @ 6 2025-07-24T03:55:24.1646970Z multiple input files 6 2025-07-24T03:55:24.1647100Z 2025-07-24T03:55:24.1647260Z Cache location s3, name: ossci-compiler-cache-circleci-v2, prefix: /trunk/ 2025-07-24T03:55:24.1647550Z Version (client) 0.4.1 2025-07-24T03:55:24.1647730Z + [[ -n 46614177172 ]] 2025-07-24T03:55:24.1647900Z + sccache --show-stats --stats-format json 2025-07-24T03:55:24.1648090Z + jq .stats 2025-07-24T03:55:24.2330610Z + python tools/stats/export_test_times.py 2025-07-24T03:55:24.5898960Z Exporting test times from test-infra 2025-07-24T03:55:24.5899630Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-times.json to /Users/ec2-user/runner/_work/pytorch/pytorch/.additional_ci_files/test-times.json 2025-07-24T03:55:24.5900730Z Downloading https://raw.githubusercontent.com/pytorch/test-infra/generated-stats/stats/test-class-times.json to /Users/ec2-user/runner/_work/pytorch/pytorch/.additional_ci_files/test-class-times.json 2025-07-24T03:55:24.5962940Z + assert_git_not_dirty 2025-07-24T03:55:24.5963130Z + [[ macos-py3-arm64 != *rocm* ]] 2025-07-24T03:55:24.5963310Z + [[ macos-py3-arm64 != *xla* ]] 2025-07-24T03:55:24.5968690Z ++ git status --porcelain 2025-07-24T03:55:24.5969730Z ++ grep -v '?? third_party' 2025-07-24T03:55:26.1163650Z ++ true 2025-07-24T03:55:26.1164690Z + git_status= 2025-07-24T03:55:26.1168590Z + [[ -n '' ]] 2025-07-24T03:55:26.1168960Z + rm -rfv /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ 2025-07-24T03:55:26.1230840Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang 2025-07-24T03:55:26.1231250Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ/clang++ 2025-07-24T03:55:26.1231730Z /var/folders/bm/fnn3xd1d39lcpbxrgwys1c140000gn/T/tmp.Qo1bvXVbqQ 2025-07-24T03:55:26.1256620Z ##[group]Run zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-07-24T03:55:26.1257140Z zip -1 -r artifacts.zip dist/ build/.ninja_log build/compile_commands.json .additional_ci_files 2025-07-24T03:55:26.2528060Z shell: /bin/bash -e {0} 2025-07-24T03:55:26.2528210Z env: 2025-07-24T03:55:26.2528340Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:55:26.2528510Z SCCACHE_USE_GHA: false 2025-07-24T03:55:26.2528720Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:55:26.2528990Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:55:26.2529190Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:55:26.2529340Z ##[endgroup] 2025-07-24T03:55:26.2884630Z adding: dist/ (stored 0%) 2025-07-24T03:55:27.6936850Z adding: dist/torch-2.9.0a0+git27c8ef1-cp312-cp312-macosx_11_0_arm64.whl (deflated 3%) 2025-07-24T03:55:27.7060280Z adding: build/.ninja_log (deflated 89%) 2025-07-24T03:55:27.7530810Z adding: build/compile_commands.json (deflated 97%) 2025-07-24T03:55:27.7531090Z adding: .additional_ci_files/ (stored 0%) 2025-07-24T03:55:27.7734610Z adding: .additional_ci_files/test-times.json (deflated 68%) 2025-07-24T03:55:27.8549490Z adding: .additional_ci_files/test-class-times.json (deflated 65%) 2025-07-24T03:55:27.8726950Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-07-24T03:55:27.8727220Z with: 2025-07-24T03:55:27.8727360Z name: macos-py3-arm64 2025-07-24T03:55:27.8727500Z retention-days: 14 2025-07-24T03:55:27.8727640Z if-no-files-found: error 2025-07-24T03:55:27.8727830Z path: artifacts.zip 2025-07-24T03:55:27.8727960Z compression-level: 6 2025-07-24T03:55:27.8728100Z overwrite: false 2025-07-24T03:55:27.8728240Z include-hidden-files: false 2025-07-24T03:55:27.8728410Z env: 2025-07-24T03:55:27.8728530Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:55:27.8728710Z SCCACHE_USE_GHA: false 2025-07-24T03:55:27.8728920Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:55:27.8729210Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:55:27.8729420Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:55:27.8729570Z ##[endgroup] 2025-07-24T03:55:28.0153580Z With the provided path, there will be 1 file uploaded 2025-07-24T03:55:28.0154010Z Artifact name is valid! 2025-07-24T03:55:28.0154170Z Root directory input is valid! 2025-07-24T03:55:28.0681780Z Beginning upload of artifact content to blob storage 2025-07-24T03:55:28.5651220Z Uploaded bytes 8388608 2025-07-24T03:55:28.7009250Z Uploaded bytes 16777216 2025-07-24T03:55:28.7731480Z Uploaded bytes 25165824 2025-07-24T03:55:28.8930300Z Uploaded bytes 33554432 2025-07-24T03:55:29.0864950Z Uploaded bytes 41943040 2025-07-24T03:55:29.2435680Z Uploaded bytes 50331648 2025-07-24T03:55:29.3649350Z Uploaded bytes 58720256 2025-07-24T03:55:29.6238690Z Uploaded bytes 67108864 2025-07-24T03:55:29.7671270Z Uploaded bytes 70713618 2025-07-24T03:55:29.7907490Z Finished uploading artifact content to blob storage! 2025-07-24T03:55:29.7912180Z SHA256 digest of uploaded artifact zip is fe19933082b2da7c62ece868aa055125be94e29a31ce5ff083f75a9122782b39 2025-07-24T03:55:29.7915420Z Finalizing artifact upload 2025-07-24T03:55:29.9048710Z Artifact macos-py3-arm64.zip successfully finalized. Artifact ID 3602923791 2025-07-24T03:55:29.9050870Z Artifact macos-py3-arm64 has been successfully uploaded! Final size is 70713618 bytes. Artifact ID is 3602923791 2025-07-24T03:55:29.9054560Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/16487210679/artifacts/3602923791 2025-07-24T03:55:29.9311570Z ##[group]Run actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 2025-07-24T03:55:29.9312380Z with: 2025-07-24T03:55:29.9312990Z name: sccache-stats-macos-py3-arm64-runattempt1-46614177172 2025-07-24T03:55:29.9313720Z retention-days: 14 2025-07-24T03:55:29.9314340Z if-no-files-found: warn 2025-07-24T03:55:29.9314880Z path: sccache-stats-*.json 2025-07-24T03:55:29.9315380Z compression-level: 6 2025-07-24T03:55:29.9315850Z overwrite: false 2025-07-24T03:55:29.9316290Z include-hidden-files: false 2025-07-24T03:55:29.9316760Z env: 2025-07-24T03:55:29.9317160Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:55:29.9317720Z SCCACHE_USE_GHA: false 2025-07-24T03:55:29.9318380Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:55:29.9319250Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:55:29.9319900Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:55:29.9320370Z ##[endgroup] 2025-07-24T03:55:30.0927050Z With the provided path, there will be 1 file uploaded 2025-07-24T03:55:30.0928950Z Artifact name is valid! 2025-07-24T03:55:30.0929500Z Root directory input is valid! 2025-07-24T03:55:30.1573930Z Beginning upload of artifact content to blob storage 2025-07-24T03:55:30.1949480Z Uploaded bytes 529 2025-07-24T03:55:30.2098340Z Finished uploading artifact content to blob storage! 2025-07-24T03:55:30.2099860Z SHA256 digest of uploaded artifact zip is 3e41baff45b0e04e67912fd33598cd374c0745e51f5a3b73033402c79a4c2f34 2025-07-24T03:55:30.2100740Z Finalizing artifact upload 2025-07-24T03:55:30.2842850Z Artifact sccache-stats-macos-py3-arm64-runattempt1-46614177172.zip successfully finalized. Artifact ID 3602923824 2025-07-24T03:55:30.2844290Z Artifact sccache-stats-macos-py3-arm64-runattempt1-46614177172 has been successfully uploaded! Final size is 529 bytes. Artifact ID is 3602923824 2025-07-24T03:55:30.2860600Z Artifact download URL: https://github.com/pytorch/pytorch/actions/runs/16487210679/artifacts/3602923824 2025-07-24T03:55:30.2987690Z ##[group]Run pytorch/test-infra/.github/actions/check-disk-space@main 2025-07-24T03:55:30.2988130Z with: 2025-07-24T03:55:30.2988410Z minimum-available-space-in-gb: 6 2025-07-24T03:55:30.2988700Z env: 2025-07-24T03:55:30.2988930Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:55:30.2989270Z SCCACHE_USE_GHA: false 2025-07-24T03:55:30.2989650Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:55:30.2990160Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:55:30.2990550Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:55:30.2990820Z ##[endgroup] 2025-07-24T03:55:30.3007270Z ##[group]Run echo "Print the available disk space for manual inspection" 2025-07-24T03:55:30.3007930Z echo "Print the available disk space for manual inspection" 2025-07-24T03:55:30.3008350Z df -h 2025-07-24T03:55:30.3008590Z  2025-07-24T03:55:30.3008820Z function check_disk_space() { 2025-07-24T03:55:30.3009170Z  set +e 2025-07-24T03:55:30.3009420Z  2025-07-24T03:55:30.3009680Z  # Set the minimum requirement space to 6GB 2025-07-24T03:55:30.3010220Z  MINIMUM_AVAILABLE_SPACE_IN_KB=$(($MINIMUM_AVAILABLE_SPACE_IN_GB * 1024 * 1024)) 2025-07-24T03:55:30.3010670Z  2025-07-24T03:55:30.3010980Z  # Use KB to avoid floating point warning like 3.1GB 2025-07-24T03:55:30.3011520Z  df -k | tr -s ' ' | cut -d' ' -f 4,9 | while read -r LINE; 2025-07-24T03:55:30.3011880Z  do 2025-07-24T03:55:30.3012150Z  AVAIL=$(echo $LINE | cut -f1 -d' ') 2025-07-24T03:55:30.3012500Z  MOUNT=$(echo $LINE | cut -f2 -d' ') 2025-07-24T03:55:30.3012830Z  2025-07-24T03:55:30.3013050Z  if [ "${MOUNT}" = "/" ]; then 2025-07-24T03:55:30.3013500Z  if [ "${AVAIL}" -lt "${MINIMUM_AVAILABLE_SPACE_IN_KB}" ]; then 2025-07-24T03:55:30.3014340Z  echo "Failure: There is only ${AVAIL}KB free space left in ${MOUNT}, which is less than the minimum requirement of ${MINIMUM_AVAILABLE_SPACE_IN_KB}KB for ${RUNNER_OS}" 2025-07-24T03:55:30.3015080Z  else 2025-07-24T03:55:30.3015520Z  echo "Success: There is ${AVAIL}KB free space left in ${MOUNT} for ${RUNNER_OS}, continue" 2025-07-24T03:55:30.3016120Z  fi 2025-07-24T03:55:30.3016340Z  fi 2025-07-24T03:55:30.3016550Z  done 2025-07-24T03:55:30.3016770Z  2025-07-24T03:55:30.3016960Z  set -e 2025-07-24T03:55:30.3017180Z } 2025-07-24T03:55:30.3017380Z  2025-07-24T03:55:30.3017590Z RESULT=$(check_disk_space) 2025-07-24T03:55:30.3017940Z echo "${RESULT}" 2025-07-24T03:55:30.3018190Z  2025-07-24T03:55:30.3018520Z if [[ "${RESULT}" == *Failure* && "${RUNNER_OS}" == "macOS" ]]; then 2025-07-24T03:55:30.3019310Z  # We can clean up /System/Library/Caches/com.apple.coresymbolicationd on MacOS to free up the space and this should free up enough space 2025-07-24T03:55:30.3020110Z  # https://github.com/pytorch/pytorch/issues/85440 2025-07-24T03:55:30.3020650Z  sudo rm "/System/Library/Caches/com.apple.coresymbolicationd/data" || true 2025-07-24T03:55:30.3021450Z  # Stop the daemon and launchctl will automatically start it again, thus accomplish a restart and free up the above file 2025-07-24T03:55:30.3022190Z  sudo launchctl stop com.apple.coresymbolicationd || true 2025-07-24T03:55:30.3022590Z  2025-07-24T03:55:30.3022870Z  # Clean up crash reports on the runner 2025-07-24T03:55:30.3023420Z  sudo rm -rf "/System/Volumes/Data/Library/Logs/CrashReporter" || true 2025-07-24T03:55:30.3023840Z  2025-07-24T03:55:30.3024090Z  # Also try to clean up torch.hub caching directory 2025-07-24T03:55:30.3024460Z  rm -rf "${HOME}/.cache/torch/hub" || true 2025-07-24T03:55:30.3024750Z  2025-07-24T03:55:30.3025230Z  # Purge conda 2025-07-24T03:55:30.3025500Z  conda clean -p -t -y || true 2025-07-24T03:55:30.3025790Z  # and pip cache 2025-07-24T03:55:30.3026050Z  pip cache purge || true 2025-07-24T03:55:30.3026300Z  2025-07-24T03:55:30.3026610Z  echo "Re-run disk space check for ${RUNNER_OS} after cleaning up" 2025-07-24T03:55:30.3026990Z  # Re-run the check 2025-07-24T03:55:30.3027260Z  RESULT=$(check_disk_space) 2025-07-24T03:55:30.3027550Z  echo "${RESULT}" 2025-07-24T03:55:30.3027770Z fi 2025-07-24T03:55:30.3027970Z  2025-07-24T03:55:30.3028180Z if [[ "${RESULT}" == *Failure* ]]; then 2025-07-24T03:55:30.3038860Z  df -h 2025-07-24T03:55:30.3039070Z  2025-07-24T03:55:30.3039700Z  echo "Please help create an issue to PyTorch Release Engineering via https://github.com/pytorch/test-infra/issues and provide the link to the workflow run." 2025-07-24T03:55:30.3040370Z  exit 1 2025-07-24T03:55:30.3040560Z fi 2025-07-24T03:55:30.3062200Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-24T03:55:30.3062520Z env: 2025-07-24T03:55:30.3062750Z BUILD_ENVIRONMENT: macos-py3-arm64 2025-07-24T03:55:30.3063020Z SCCACHE_USE_GHA: false 2025-07-24T03:55:30.3063360Z VENV_PATH: /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:55:30.3063850Z SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2 2025-07-24T03:55:30.3064170Z SCCACHE_S3_KEY_PREFIX: trunk 2025-07-24T03:55:30.3064430Z MINIMUM_AVAILABLE_SPACE_IN_GB: 6 2025-07-24T03:55:30.3064670Z ##[endgroup] 2025-07-24T03:55:30.3349960Z Print the available disk space for manual inspection 2025-07-24T03:55:30.3376430Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-07-24T03:55:30.3376840Z /dev/disk5s2s1 256Gi 9.5Gi 172Gi 6% 404k 1.8G 0% / 2025-07-24T03:55:30.3377510Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-07-24T03:55:30.3377880Z /dev/disk5s5 256Gi 1.0Gi 172Gi 1% 1 1.8G 0% /System/Volumes/VM 2025-07-24T03:55:30.3378270Z /dev/disk5s3 256Gi 5.7Gi 172Gi 4% 1.0k 1.8G 0% /System/Volumes/Preboot 2025-07-24T03:55:30.3378820Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-07-24T03:55:30.3379220Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-07-24T03:55:30.3379620Z /dev/disk1s3 500Mi 872Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-07-24T03:55:30.3380000Z /dev/disk5s1 256Gi 66Gi 172Gi 28% 2.7M 1.8G 0% /System/Volumes/Data 2025-07-24T03:55:30.3380360Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-07-24T03:55:30.3380750Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-dYoGYX 2025-07-24T03:55:30.3755680Z Success: There is 180798204KB free space left in / for macOS, continue 2025-07-24T03:55:30.3804850Z Post job cleanup. 2025-07-24T03:55:30.4228740Z Removing virtual environment at /Users/ec2-user/runner/_work/_temp/venv-3.12-1753329084 2025-07-24T03:55:33.3682160Z Post job cleanup. 2025-07-24T03:55:33.3718470Z Post job cleanup. 2025-07-24T03:55:33.4489620Z [command]/usr/bin/git version 2025-07-24T03:55:33.4595010Z git version 2.39.3 (Apple Git-146) 2025-07-24T03:55:33.4612980Z Copying '/Users/ec2-user/.gitconfig' to '/Users/ec2-user/runner/_work/_temp/e7232df7-d6f6-4afc-ac55-9a86d3d6f6cf/.gitconfig' 2025-07-24T03:55:33.4618400Z Temporarily overriding HOME='/Users/ec2-user/runner/_work/_temp/e7232df7-d6f6-4afc-ac55-9a86d3d6f6cf' before making global git config changes 2025-07-24T03:55:33.4619020Z Adding repository directory to the temporary git global config as a safe directory 2025-07-24T03:55:33.4621660Z [command]/usr/bin/git config --global --add safe.directory /Users/ec2-user/runner/_work/pytorch/pytorch 2025-07-24T03:55:33.4693360Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2025-07-24T03:55:33.4753890Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :" 2025-07-24T03:55:33.5594170Z Entering 'android/libs/fbjni' 2025-07-24T03:55:33.5708200Z Entering 'third_party/FP16' 2025-07-24T03:55:33.5817300Z Entering 'third_party/FXdiv' 2025-07-24T03:55:33.5926270Z Entering 'third_party/NNPACK' 2025-07-24T03:55:33.6041960Z Entering 'third_party/NVTX' 2025-07-24T03:55:33.6143380Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:55:33.6243380Z Entering 'third_party/XNNPACK' 2025-07-24T03:55:33.6348640Z Entering 'third_party/aiter' 2025-07-24T03:55:33.6449440Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:55:33.6554280Z Entering 'third_party/benchmark' 2025-07-24T03:55:33.6676190Z Entering 'third_party/composable_kernel' 2025-07-24T03:55:33.6778700Z Entering 'third_party/cpp-httplib' 2025-07-24T03:55:33.6880000Z Entering 'third_party/cpuinfo' 2025-07-24T03:55:33.7008270Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:55:33.7109010Z Entering 'third_party/cutlass' 2025-07-24T03:55:33.7212230Z Entering 'third_party/fbgemm' 2025-07-24T03:55:33.7387870Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:55:33.7517870Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:55:33.7752490Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:55:33.7927230Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:55:33.8167300Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:55:33.8319080Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:55:33.8445610Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:55:33.8602040Z Entering 'third_party/flash-attention' 2025-07-24T03:55:33.8703270Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:55:33.8805610Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:55:33.8916410Z Entering 'third_party/flatbuffers' 2025-07-24T03:55:33.9022840Z Entering 'third_party/fmt' 2025-07-24T03:55:33.9143020Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:55:33.9252600Z Entering 'third_party/gloo' 2025-07-24T03:55:33.9368060Z Entering 'third_party/googletest' 2025-07-24T03:55:33.9484900Z Entering 'third_party/ideep' 2025-07-24T03:55:33.9609180Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:55:33.9813100Z Entering 'third_party/ittapi' 2025-07-24T03:55:33.9915630Z Entering 'third_party/kineto' 2025-07-24T03:55:34.0015410Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:55:34.0114470Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:55:34.0215850Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:55:34.0317530Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:55:34.0417790Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:55:34.0516950Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:55:34.0620200Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:55:34.0720540Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:55:34.0821570Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:55:34.0923080Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:55:34.1022660Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:55:34.1123660Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:55:34.1225070Z Entering 'third_party/kleidiai' 2025-07-24T03:55:34.1326120Z Entering 'third_party/mimalloc' 2025-07-24T03:55:34.1424700Z Entering 'third_party/nlohmann' 2025-07-24T03:55:34.1524140Z Entering 'third_party/onnx' 2025-07-24T03:55:34.1648220Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:55:34.1773680Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:55:34.1875040Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:55:34.1975020Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:55:34.2074010Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:55:34.2173200Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:55:34.2273410Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:55:34.2371940Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:55:34.2471000Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:55:34.2568310Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:55:34.2668550Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:55:34.2770630Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:55:34.2879540Z Entering 'third_party/pocketfft' 2025-07-24T03:55:34.2981240Z Entering 'third_party/protobuf' 2025-07-24T03:55:34.3171140Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:55:34.3300980Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:55:34.3429870Z Entering 'third_party/psimd' 2025-07-24T03:55:34.3544630Z Entering 'third_party/pthreadpool' 2025-07-24T03:55:34.3651860Z Entering 'third_party/pybind11' 2025-07-24T03:55:34.3765100Z Entering 'third_party/python-peachpy' 2025-07-24T03:55:34.3873630Z Entering 'third_party/sleef' 2025-07-24T03:55:34.3987000Z Entering 'third_party/tensorpipe' 2025-07-24T03:55:34.4123960Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:55:34.4266040Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:55:34.4398620Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:55:34.4550200Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:55:34.4697560Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:55:34.4822990Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2025-07-24T03:55:34.4879810Z http.https://github.com/.extraheader 2025-07-24T03:55:34.4886640Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2025-07-24T03:55:34.4948010Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :" 2025-07-24T03:55:34.5444100Z Entering 'android/libs/fbjni' 2025-07-24T03:55:34.5514610Z http.https://github.com/.extraheader 2025-07-24T03:55:34.5587820Z Entering 'third_party/FP16' 2025-07-24T03:55:34.5654640Z http.https://github.com/.extraheader 2025-07-24T03:55:34.5720630Z Entering 'third_party/FXdiv' 2025-07-24T03:55:34.5787400Z http.https://github.com/.extraheader 2025-07-24T03:55:34.5853320Z Entering 'third_party/NNPACK' 2025-07-24T03:55:34.5920170Z http.https://github.com/.extraheader 2025-07-24T03:55:34.5986550Z Entering 'third_party/NVTX' 2025-07-24T03:55:34.6053270Z http.https://github.com/.extraheader 2025-07-24T03:55:34.6119370Z Entering 'third_party/VulkanMemoryAllocator' 2025-07-24T03:55:34.6187060Z http.https://github.com/.extraheader 2025-07-24T03:55:34.6253450Z Entering 'third_party/XNNPACK' 2025-07-24T03:55:34.6320420Z http.https://github.com/.extraheader 2025-07-24T03:55:34.6391110Z Entering 'third_party/aiter' 2025-07-24T03:55:34.6458730Z http.https://github.com/.extraheader 2025-07-24T03:55:34.6521880Z Entering 'third_party/aiter/3rdparty/composable_kernel' 2025-07-24T03:55:34.6586840Z http.https://github.com/.extraheader 2025-07-24T03:55:34.6657250Z Entering 'third_party/benchmark' 2025-07-24T03:55:34.6724730Z http.https://github.com/.extraheader 2025-07-24T03:55:34.6790820Z Entering 'third_party/composable_kernel' 2025-07-24T03:55:34.6857790Z http.https://github.com/.extraheader 2025-07-24T03:55:34.6926150Z Entering 'third_party/cpp-httplib' 2025-07-24T03:55:34.6993580Z http.https://github.com/.extraheader 2025-07-24T03:55:34.7059820Z Entering 'third_party/cpuinfo' 2025-07-24T03:55:34.7125990Z http.https://github.com/.extraheader 2025-07-24T03:55:34.7191540Z Entering 'third_party/cudnn_frontend' 2025-07-24T03:55:34.7258430Z http.https://github.com/.extraheader 2025-07-24T03:55:34.7325260Z Entering 'third_party/cutlass' 2025-07-24T03:55:34.7391640Z http.https://github.com/.extraheader 2025-07-24T03:55:34.7461260Z Entering 'third_party/fbgemm' 2025-07-24T03:55:34.7529060Z http.https://github.com/.extraheader 2025-07-24T03:55:34.7593890Z Entering 'third_party/fbgemm/external/asmjit' 2025-07-24T03:55:34.7660880Z http.https://github.com/.extraheader 2025-07-24T03:55:34.7726720Z Entering 'third_party/fbgemm/external/composable_kernel' 2025-07-24T03:55:34.7793190Z http.https://github.com/.extraheader 2025-07-24T03:55:34.7861080Z Entering 'third_party/fbgemm/external/cpuinfo' 2025-07-24T03:55:34.7927840Z http.https://github.com/.extraheader 2025-07-24T03:55:34.7994010Z Entering 'third_party/fbgemm/external/cutlass' 2025-07-24T03:55:34.8059840Z http.https://github.com/.extraheader 2025-07-24T03:55:34.8128940Z Entering 'third_party/fbgemm/external/googletest' 2025-07-24T03:55:34.8196520Z http.https://github.com/.extraheader 2025-07-24T03:55:34.8262680Z Entering 'third_party/fbgemm/external/hipify_torch' 2025-07-24T03:55:34.8328200Z http.https://github.com/.extraheader 2025-07-24T03:55:34.8393530Z Entering 'third_party/fbgemm/external/json' 2025-07-24T03:55:34.8459440Z http.https://github.com/.extraheader 2025-07-24T03:55:34.8527420Z Entering 'third_party/flash-attention' 2025-07-24T03:55:34.8594150Z http.https://github.com/.extraheader 2025-07-24T03:55:34.8658820Z Entering 'third_party/flash-attention/csrc/composable_kernel' 2025-07-24T03:55:34.8724810Z http.https://github.com/.extraheader 2025-07-24T03:55:34.8793120Z Entering 'third_party/flash-attention/csrc/cutlass' 2025-07-24T03:55:34.8860180Z http.https://github.com/.extraheader 2025-07-24T03:55:34.8930860Z Entering 'third_party/flatbuffers' 2025-07-24T03:55:34.8999230Z http.https://github.com/.extraheader 2025-07-24T03:55:34.9065990Z Entering 'third_party/fmt' 2025-07-24T03:55:34.9132660Z http.https://github.com/.extraheader 2025-07-24T03:55:34.9198540Z Entering 'third_party/gemmlowp/gemmlowp' 2025-07-24T03:55:34.9264680Z http.https://github.com/.extraheader 2025-07-24T03:55:34.9330500Z Entering 'third_party/gloo' 2025-07-24T03:55:34.9396250Z http.https://github.com/.extraheader 2025-07-24T03:55:34.9462980Z Entering 'third_party/googletest' 2025-07-24T03:55:34.9529350Z http.https://github.com/.extraheader 2025-07-24T03:55:34.9594600Z Entering 'third_party/ideep' 2025-07-24T03:55:34.9660790Z http.https://github.com/.extraheader 2025-07-24T03:55:34.9725050Z Entering 'third_party/ideep/mkl-dnn' 2025-07-24T03:55:34.9790510Z http.https://github.com/.extraheader 2025-07-24T03:55:34.9860660Z Entering 'third_party/ittapi' 2025-07-24T03:55:34.9928340Z http.https://github.com/.extraheader 2025-07-24T03:55:34.9994520Z Entering 'third_party/kineto' 2025-07-24T03:55:35.0061060Z http.https://github.com/.extraheader 2025-07-24T03:55:35.0125530Z Entering 'third_party/kineto/libkineto/third_party/dynolog' 2025-07-24T03:55:35.0191150Z http.https://github.com/.extraheader 2025-07-24T03:55:35.0255930Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/DCGM' 2025-07-24T03:55:35.0321660Z http.https://github.com/.extraheader 2025-07-24T03:55:35.0387030Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/cpr' 2025-07-24T03:55:35.0453130Z http.https://github.com/.extraheader 2025-07-24T03:55:35.0518270Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/fmt' 2025-07-24T03:55:35.0589690Z http.https://github.com/.extraheader 2025-07-24T03:55:35.0649070Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags' 2025-07-24T03:55:35.0714070Z http.https://github.com/.extraheader 2025-07-24T03:55:35.0777770Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/gflags/doc' 2025-07-24T03:55:35.0841990Z http.https://github.com/.extraheader 2025-07-24T03:55:35.0908530Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/glog' 2025-07-24T03:55:35.0973150Z http.https://github.com/.extraheader 2025-07-24T03:55:35.1038110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/googletest' 2025-07-24T03:55:35.1102260Z http.https://github.com/.extraheader 2025-07-24T03:55:35.1167110Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/json' 2025-07-24T03:55:35.1230910Z http.https://github.com/.extraheader 2025-07-24T03:55:35.1296800Z Entering 'third_party/kineto/libkineto/third_party/dynolog/third_party/pfs' 2025-07-24T03:55:35.1361340Z http.https://github.com/.extraheader 2025-07-24T03:55:35.1429250Z Entering 'third_party/kineto/libkineto/third_party/fmt' 2025-07-24T03:55:35.1493770Z http.https://github.com/.extraheader 2025-07-24T03:55:35.1558260Z Entering 'third_party/kineto/libkineto/third_party/googletest' 2025-07-24T03:55:35.1622880Z http.https://github.com/.extraheader 2025-07-24T03:55:35.1689050Z Entering 'third_party/kleidiai' 2025-07-24T03:55:35.1754260Z http.https://github.com/.extraheader 2025-07-24T03:55:35.1818900Z Entering 'third_party/mimalloc' 2025-07-24T03:55:35.1883320Z http.https://github.com/.extraheader 2025-07-24T03:55:35.1949730Z Entering 'third_party/nlohmann' 2025-07-24T03:55:35.2014210Z http.https://github.com/.extraheader 2025-07-24T03:55:35.2080330Z Entering 'third_party/onnx' 2025-07-24T03:55:35.2147090Z http.https://github.com/.extraheader 2025-07-24T03:55:35.2217550Z Entering 'third_party/onnx/third_party/pybind11' 2025-07-24T03:55:35.2282910Z http.https://github.com/.extraheader 2025-07-24T03:55:35.2349450Z Entering 'third_party/opentelemetry-cpp' 2025-07-24T03:55:35.2414880Z http.https://github.com/.extraheader 2025-07-24T03:55:35.2479080Z Entering 'third_party/opentelemetry-cpp/third_party/benchmark' 2025-07-24T03:55:35.2543290Z http.https://github.com/.extraheader 2025-07-24T03:55:35.2607990Z Entering 'third_party/opentelemetry-cpp/third_party/googletest' 2025-07-24T03:55:35.2674080Z http.https://github.com/.extraheader 2025-07-24T03:55:35.2738880Z Entering 'third_party/opentelemetry-cpp/third_party/ms-gsl' 2025-07-24T03:55:35.2805600Z http.https://github.com/.extraheader 2025-07-24T03:55:35.2871450Z Entering 'third_party/opentelemetry-cpp/third_party/nlohmann-json' 2025-07-24T03:55:35.2937500Z http.https://github.com/.extraheader 2025-07-24T03:55:35.3004450Z Entering 'third_party/opentelemetry-cpp/third_party/opentelemetry-proto' 2025-07-24T03:55:35.3070730Z http.https://github.com/.extraheader 2025-07-24T03:55:35.3136800Z Entering 'third_party/opentelemetry-cpp/third_party/opentracing-cpp' 2025-07-24T03:55:35.3203010Z http.https://github.com/.extraheader 2025-07-24T03:55:35.3268960Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp' 2025-07-24T03:55:35.3335080Z http.https://github.com/.extraheader 2025-07-24T03:55:35.3400120Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/civetweb' 2025-07-24T03:55:35.3465900Z http.https://github.com/.extraheader 2025-07-24T03:55:35.3533050Z Entering 'third_party/opentelemetry-cpp/third_party/prometheus-cpp/3rdparty/googletest' 2025-07-24T03:55:35.3599170Z http.https://github.com/.extraheader 2025-07-24T03:55:35.3667760Z Entering 'third_party/opentelemetry-cpp/tools/vcpkg' 2025-07-24T03:55:35.3734870Z http.https://github.com/.extraheader 2025-07-24T03:55:35.3809940Z Entering 'third_party/pocketfft' 2025-07-24T03:55:35.3880060Z http.https://github.com/.extraheader 2025-07-24T03:55:35.3946620Z Entering 'third_party/protobuf' 2025-07-24T03:55:35.4013120Z http.https://github.com/.extraheader 2025-07-24T03:55:35.4079460Z Entering 'third_party/protobuf/third_party/benchmark' 2025-07-24T03:55:35.4145910Z http.https://github.com/.extraheader 2025-07-24T03:55:35.4211320Z Entering 'third_party/protobuf/third_party/googletest' 2025-07-24T03:55:35.4280180Z http.https://github.com/.extraheader 2025-07-24T03:55:35.4347710Z Entering 'third_party/psimd' 2025-07-24T03:55:35.4415360Z http.https://github.com/.extraheader 2025-07-24T03:55:35.4479380Z Entering 'third_party/pthreadpool' 2025-07-24T03:55:35.4543870Z http.https://github.com/.extraheader 2025-07-24T03:55:35.4608180Z Entering 'third_party/pybind11' 2025-07-24T03:55:35.4673230Z http.https://github.com/.extraheader 2025-07-24T03:55:35.4740420Z Entering 'third_party/python-peachpy' 2025-07-24T03:55:35.4807230Z http.https://github.com/.extraheader 2025-07-24T03:55:35.4873500Z Entering 'third_party/sleef' 2025-07-24T03:55:35.4940620Z http.https://github.com/.extraheader 2025-07-24T03:55:35.5006670Z Entering 'third_party/tensorpipe' 2025-07-24T03:55:35.5073360Z http.https://github.com/.extraheader 2025-07-24T03:55:35.5137930Z Entering 'third_party/tensorpipe/third_party/googletest' 2025-07-24T03:55:35.5202490Z http.https://github.com/.extraheader 2025-07-24T03:55:35.5267700Z Entering 'third_party/tensorpipe/third_party/libnop' 2025-07-24T03:55:35.5334340Z http.https://github.com/.extraheader 2025-07-24T03:55:35.5398630Z Entering 'third_party/tensorpipe/third_party/libuv' 2025-07-24T03:55:35.5462950Z http.https://github.com/.extraheader 2025-07-24T03:55:35.5527640Z Entering 'third_party/tensorpipe/third_party/pybind11' 2025-07-24T03:55:35.5591600Z http.https://github.com/.extraheader 2025-07-24T03:55:35.5653900Z Entering 'third_party/tensorpipe/third_party/pybind11/tools/clang' 2025-07-24T03:55:35.5717390Z http.https://github.com/.extraheader 2025-07-24T03:55:35.5841240Z A job completed hook has been configured by the self-hosted runner administrator 2025-07-24T03:55:35.5870240Z ##[group]Run '/opt/runner_scripts/post-job.sh' 2025-07-24T03:55:35.5881960Z shell: /bin/bash --noprofile --norc -e -o pipefail {0} 2025-07-24T03:55:35.5882180Z ##[endgroup] 2025-07-24T03:55:35.6194070Z + df -h 2025-07-24T03:55:35.6212730Z + ls -t /var/log/post_job 2025-07-24T03:55:35.6213380Z + awk 'NR>100' 2025-07-24T03:55:35.6213790Z + xargs rm -fv 2025-07-24T03:55:35.8294990Z + Checking if runner needs to be terminated...ok 2025-07-24T03:55:35.8295340Z + Outputting disk space 2025-07-24T03:55:35.8295620Z Filesystem Size Used Avail Capacity iused ifree %iused Mounted on 2025-07-24T03:55:35.8296050Z /dev/disk5s2s1 256Gi 9.5Gi 173Gi 6% 404k 1.8G 0% / 2025-07-24T03:55:35.8296380Z devfs 217Ki 217Ki 0Bi 100% 752 0 100% /dev 2025-07-24T03:55:35.8296880Z /dev/disk5s5 256Gi 1.0Gi 173Gi 1% 1 1.8G 0% /System/Volumes/VM 2025-07-24T03:55:35.8297290Z /dev/disk5s3 256Gi 5.7Gi 173Gi 4% 1.0k 1.8G 0% /System/Volumes/Preboot 2025-07-24T03:55:35.8297710Z /dev/disk1s2 500Mi 6.0Mi 387Mi 2% 1 4.0M 0% /System/Volumes/xarts 2025-07-24T03:55:35.8298100Z /dev/disk1s1 500Mi 53Mi 387Mi 13% 61 4.0M 0% /System/Volumes/iSCPreboot 2025-07-24T03:55:35.8298520Z /dev/disk1s3 500Mi 872Ki 387Mi 1% 51 4.0M 0% /System/Volumes/Hardware 2025-07-24T03:55:35.8298900Z /dev/disk5s1 256Gi 65Gi 173Gi 28% 2.7M 1.8G 0% /System/Volumes/Data 2025-07-24T03:55:35.8299280Z map auto_home 0Bi 0Bi 0Bi 100% 0 0 - /System/Volumes/Data/home 2025-07-24T03:55:35.8299680Z /dev/disk3s4 228Gi 120Ki 210Gi 1% 18 2.2G 0% /private/tmp/tmp-mount-dYoGYX 2025-07-24T03:55:35.8300060Z + Cleaning up old logs (Keep the latest 100) 2025-07-24T03:55:35.8301790Z + Restoring SSH key to be the skeleton key 2025-07-24T03:55:35.8381220Z Evaluate and set job outputs 2025-07-24T03:55:35.8384400Z Set output 'build-outcome' 2025-07-24T03:55:35.8386150Z Set output 'test-matrix' 2025-07-24T03:55:35.8386610Z Cleaning up orphan processes 2025-07-24T03:55:36.2497880Z Terminate orphan process: pid (89960) (sccache)